IGCSE Computer Science Paper-1: Specimen Questions with Answers 66 - 68 of 164
Question 66
Explanation
A Nested Loop is defined as a loop running within another loop. The first loop is known as the Outer loop and the insider loop is called Inner loop. A break in within the inner or outer loop would interrupt this process. In nested loops, the inner loop must terminate before the outer loop.
For example
for i = 1; i <= 5; i ++
{
Cout ≪⧵n;
for j = 1; j <= i; j ++
Cout ≪ "⚹";
}
Output
⚹
⚹⚹
⚹⚹⚹
⚹⚹⚹⚹
⚹⚹⚹⚹⚹
Question 67
Explanation
To protect data against the system failure, we can create backup in an advance on daily basis.
We should take precautions like checking the regular power supply to our computers, checking the functioning of the various other components of the computer both software and the hardware ones regularly to prevent any component failure to ensure uninterrupted working.
Question 68
Explanation
Spreadsheet is an electronic document in which data is arranged in the rows and columns of a grid. This can be manipulated and used for calculations purpose.
Other Uses
- Students can use spreadsheets for tracking the list of books they have read. Spreadsheets can also be used by the students for checking their current application status.
- Visual displays of class schedule and weekly commitments can be created using spreadsheets.
- Spreadsheets can also be used to set goals and monitoring the progress of the students i.e. for the purpose of progress monitoring.
- Teachers as well as students spreadsheet to organize their thoughts while making important decisions.