I've never seen that third syntax. If it's legit, it probably does the same as I and II, which are the same.
The answer is C.wind machines only generate electricity when wind is blowing
Answer:
The correct pseudocode to find the records of all citizens over the age of 50 is IF(age > 50).
OR EACH item IN citzlist
{
WHILE(not end of citzlist)
{
IF(age > 50)
{
DISPLAY(name)
}
}
}
If this is run, it will bring out all the names of the citizen who are over the age of 50 in the list.
Explanation: