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

blems _ NV280m,, 02-Code & Output .SOLUTK × Take Test: Worke. More Que × (198) A

ID: 3743458 • Letter: B

Question

blems _ NV280m,, 02-Code & Output .SOLUTK × Take Test: Worke. More Que × (198) Anokha Rishta (Saka O a https/learn assessment/take/launch,jsp?course assessment, id 3667756 y Question Completion Status QUESTION 10 After the execution of the following pseudo code assignment statement, what is the value of num num = 1012 Ods QUESTION 11 After the execurion of she followint pseudo code assignment statement num = 10 * 0.5 what is the value of num? O-7 Or QUESTION 12 After the esecution of the following pseudo code assignment statement what is the value of num? num 2 + 2 Cick Save and Submit to save and nabmut. Click Save All Acers to suve all

Explanation / Answer

QUESTION 10

c.5

Example:

#include <stdio.h>

int main() {

int num=10/2;

printf("%d",num);

return 0;

}

QUESTION 11

c.5

Example:

#include <stdio.h>

int main() {

int num=10*0.5;

printf("%d",num);

return 0;

}

QUESTION 12

d.6

Example:

#include <stdio.h>

int main() {

int num=2+2*2;

printf("%d",num);

return 0;

}