Application Software and Types of Application Software
Word processors.
Graphics software.
Database software.
Spreadsheet software.
Presentation software.
Answer:
D). Algorithm
Explanation:
The set of specific, sequential steps that describe exactly what a computer program must do to complete the work is called an algorithm.
From the question, it is clear the correct option is algorithm.
In simple terms, to solve a problem the set of rules to follow is called algorithm. Algorithm in computer programming describes the steps that explains not only the task that needs to be performed, but also how to do it.
In algorithm, the steps are needed to be in the right sequence.
Answer: Python
•If you want an example of high level programming at the same time its object oriented one is example is “Python”
• If your question is what is high level programming and what is Object Oriented programming I’ll explain. ⬇️
High level programming is a computer language which is closer to human languages.
Object oriented programming- view the picture.
They are called Table Arguments
Answer:
check the explanation
Explanation:
Variables when it comes to programming are used to store data to be documented and manipulated in a computer program. They can also be used for labeling stored data with a descriptive name and any other needed details, so that the programs can be comprehended more understandably by the reader and ourselves.
to solve the question, we will write this set of codes;
numberOfIncompletes = 0;
for(k = 0; k < incompletes.length; k++)
{
if(incompletes[k] == studentID)
numberOfIncompletes++;
}