PRF 192
Latest uploads at PRF 192. Looking for notes at PRF 192? We have lots of notes, study guides and study notes available for your school.
-
3
- 0
-
1
Majors at PRF 192
Notes available for the following studies at PRF 192
Latest notes & summaries PRF 192
PRF 192 – FE (3) Top Exam Questions & Answers, 100% Accurate. VERIFIED. 
 
 
What is the output? 
 
int i = 1; 
while(i<=10) 
if(i%2==1) 
printf("%d",i++); 
else 
printf("%d",i--); 
A. compile error 
B. 1 2 1 2 ... (infinite loop) 
C. 1 2 4 6 8 10 
D. 1 
E. 1 3 5 7 9 - B. 1 2 1 2 ... (infinite loop) 
 
Which is the correct order when listing the following languages from the lowest to the highest level? 
A. C, Assembly, C++, MATLAB 
B. Assembly, C, C++, MATLAB 
C. Assembly, MATLAB, C, C...
PRF 192 – FE (3) Exam Questions and answer. 100% Accurate. Verified. 
 
 
What is the output? 
 
int i = 1; 
while(i<=10) 
if(i%2==1) 
printf("%d",i++); 
else 
printf("%d",i--); 
A. compile error 
B. 1 2 1 2 ... (infinite loop) 
C. 1 2 4 6 8 10 
D. 1 
E. 1 3 5 7 9 - B. 1 2 1 2 ... (infinite loop) 
 
Which is the correct order when listing the following languages from the lowest to the highest level? 
A. C, Assembly, C++, MATLAB 
B. Assembly, C, C++, MATLAB 
C. Assembly, MATLAB, C, C++ ...
PRF (review) Top Questions and answers. 100% Accurate. 
 
 
1. Put these stages of execution a program in correct order - -programme -> Compilation -> excute 
 
2. What is correct order a project should follow? (1-requirement, 2-Coding, 3- Analyzing, 4- Design, 5- Testing) - -1,3,4,2,5 
 
3. When the ____ is compiled, the ___ wil determinethe position where the variable is allocated. - -program, compiler 
 
4. what is the output of the following code? 
int j=4, x=6; 
double z; 
z=x/j; 
pr...