Answer:
In an ordered list, each item is displayed along with the numbers or letters instead of bullets
In an unordered list, each item is displayed with a bullet.
Cacky fart face diareaah and farts= mc2 because youfhvh h h h hh h h hh h h h h hh h h hh h hh h h snd that is the answer rk rjhd wkesryn
<u>Answer:</u>
<em>void main ( ) </em>
<em> { </em>
<em> int counter; </em>
<em> cout<<""Even numbers between 1 to 20 are:""<<endl ; </em>
<em> //Method 1
</em>
<em> for (counter = 1; counter <= 20; counter++) </em>
<em> { </em>
<em> if ( counter%2 == 0) </em>
<em> {
</em>
<em> cout<<counter<<""\t""<<endl ; </em>
<em> } </em>
<em> } </em>
<em>//Method 2 – simplest one
</em>
<em>for (counter = 2; counter <= 20;) </em>
<em> { </em>
<em> cout<<counter<<""\t""<<endl ; </em>
<em>counter = counter + 2;
</em>
<em> </em>
<em> }
</em>
<em>
</em>
<em> return 0; </em>
<em>}
</em>
<u>Explanation:</u>
In this, Method 1 runs a for loop and check whether each number is divided by 2. If yes, then printed otherwise it is skipped.
In the second method, it runs for loop only for even numbers. <em>This is obtained by incrementing the counter by 2.
</em>
Answer:
True.
Explanation:
The whole point of keeping records is to be able to check back on them at a later time. This is why records are kept in such a way/in such an order that it would be absolutely easy to locate them when required.
Inaccurate classification defeats the whole purpose of record keeping as it makes it hard (impossible at times) to locate such record that has been mistakenly classified.