<span>Intangible system is that system whose services are not visible</span>
Commenting. When someone comments of a blog the blog's writer can comment back, to answer questions, etc.
When the email was sent as a group email
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: