Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Readable!!! The program that translates a high-level source program into machine

ID: 3544835 • Letter: R

Question

Readable!!!

The program that translates a high-level source program into machine code or object code is called a(n)


A procedure consisting of a number of precisely defined steps for solving a problem is called a(n):


Which of the following used to describe the steps to be carried out by the computer in a semi-formal verbal/mathematical form?


Which of the following is NOT one of the three basic control structures in C?


What is the equivalent C expression for the area of a circle (PI times radius squared)?


Every C program must have a function called main?


Some statements in C do not terminate with a semi-colon?


What will be the value of x below?

int a=2, b=3, c=4;

x=a + b * b + c * a;


Explanation / Answer

1. Compiler

2. Algorithm

3. Pseudo-code

4. Multiple choice question it seems, cannot answer without list

5. Area = 3.141592654 * r * r; area must be a double and it is dependent of r.

6. yes

7. false, statements must be terminated with a semi-colon

8. 19

9. D) scanf("%f",&x)

10. A) printf(