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
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);
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
