The answer is:
D. Only Jose is correct
When the two files are saved in different locations they are new and different files, not the same. If you change one it wont change the other.
The answer is FALSE.Because an oval represents a start or end point.
A Parallelogram is the symbol that represents input/output
You should have bullets in a text box in case you have a list of stuff. For example:
Computer Parts
.Tower
.Monitor
. Mouse
.Printer
Answer:
if (age < 18) // check condition of variable age is less than 18
minors=minors+`1;
else if (age >=18 && age <=64) //check condition of variable age between 18 to 64
adults=adults+1;
else // check condition of variable age more than 65
seniors=seniors+1;
Explanation:
Here we checks the condition if the variable age is less than 18 then it increment the value of variable 'minors' by 1 i.e, minors=minors+`1;
.
if variable age is 18 through 64 then it increment the value of variable adults by 1 i.e,'adults'=adults+1; otherwise increment the value of variable 'seniors ' by 1 i.e seniors=seniors+1;