1). True/False: A program written in a higher order programming language such as
ID: 3755662 • Letter: 1
Question
1). True/False: A program written in a higher order programming language such as “C” is likely to be more portable than a program that is written in assembly language
2). The process of editing, compiling, running, and debugging programs is often managed by a
A. Integrated Development Environment
B. Integrated Care Plan
C. Higher level programming language
D. The bash shell environment
3). True/False A process in Unix represents an instance of an application running on a system.
4). Q8 Given the following code fragment:
int input;
printf(“Enter an integer: “);
scanf(“%d”,& input);
// display value
____________________
Line 5 should issue a printf to display the value of input. Which of the following is NOT correct ?
A. printf(“The input is %c ”, input);
B. printf(“The input is %d ”, input);
C. printf(“The input is %i ”, input);
D. printf(“The input is %f ”, (float)input);
Explanation / Answer
Ans1: True
Ans2: Integrated Development Environment
Ans3: True
Ans4: option A. printf(“The input is %c ”, input);
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.