Answer:
a) INFO2 file
Explanation:
When a file is deleted and moved to the Recycle Bin generates its own records inside a INFO2 file. These files save data from the deleted file, so it can be analyzed later. The size of a INFO2 file is 800 bytes usually.
The data saved into this files is:
- Original location of the removed file
- Date and time when deleted
- Physical size of the deleted file
Answer:
agile --> business modeling
RAD --> pair programing
waterfall --> deployment
spiral --> risk analysis
v-shaped model --> integration testing
not too sure about this but i tried
Answer:
The answer to this question is given in the explanation section.
Explanation:
Let look at an if the else statement
if (condition1) {
//some code if condition 1 is true
} else if (condition2) {
// some code if condition 2 is true
} else {
// some code if condition 3 is true
}
No let look at switch statement
switch(expression) {
case x:
// code block
break;
case y:
// code block
break;
default:
// code block
Now let look at your answer.
if then else should be replaced with switch if conditions are fixed.
in the process of replacing
write your condition of if statement in the case area of swatch
Maddie from Liv and Maddie