
C CODE MASTER
Quiz
•
Computers
•
Professional Development
•
Practice Problem
•
Hard
Amartya Vishwakarma
Used 4+ times
FREE Resource
Enhance your content in a minute
15 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is output of below program?
int main()
{
const int a = 10;
printf("%d",++a);
return 0;
}
Runtime error
10
11
Compilation error
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
In the following program where is the variable a getting defined and where it is getting declared?
#include<stdio.h>
int main()
{
extern int a;
printf("%d\n", a);
return 0;
}
int a=20;
int a = 20 is declaration, extern int a is the definition
extern int a is declaration, int a = 20 is the definition
int a = 20 is definition, a is not defined
a is declared, a is not defined
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
0 , 0.000
1 , 1.000
Compile time error
Garbage value
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is output of the below program?
int main()
{
int i,j;
for(i = 0,j=5;i<5;i++,--j)
{
printf("%d%d--",i,j);
}
return 0;
}
55--64--73--82--91--
50--61--72--83--94--
Compilation Error
50--41--32--23--14--
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What will be the output
int main()
{
int a = 320;
char *ptr;
ptr =( char *)&a;
printf("%d",*ptr);
return 0;
}
32
64
128
320
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
what will be the output of the code.
#include<stdio.h>
#include<string.h>
int main()
{
char arr[] = "Breakpoints";
printf("%d-%d",sizeof(arr), strlen(arr));
return 0;
}
12-11
11-11
11-12
12-12
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
If the size of the array is less than the number of initializers
then :-
Generates an error message
Extra values are being ignored
Size is neglected when values are given
Size of Array is increased
Access all questions and much more by creating a free account
Create resources
Host any resource
Get auto-graded reports

Continue with Google

Continue with Email

Continue with Classlink

Continue with Clever
or continue with

Microsoft
%20(1).png)
Apple
Others
Already have an account?
Similar Resources on Wayground
10 questions
Python Collections
Quiz
•
Professional Development
10 questions
Tin học lớp 5 phần mềm Logo
Quiz
•
Professional Development
13 questions
Repaso
Quiz
•
Professional Development
10 questions
DECI - Week 2 - round
Quiz
•
Professional Development
20 questions
Installing and Configuring Computer Systems 2
Quiz
•
Professional Development
11 questions
DECI - M3 - W4 - Round2
Quiz
•
Professional Development
10 questions
python quiz
Quiz
•
6th Grade - Professio...
11 questions
HTML & CSS
Quiz
•
Professional Development
Popular Resources on Wayground
15 questions
Fractions on a Number Line
Quiz
•
3rd Grade
20 questions
Equivalent Fractions
Quiz
•
3rd Grade
25 questions
Multiplication Facts
Quiz
•
5th Grade
22 questions
fractions
Quiz
•
3rd Grade
20 questions
Main Idea and Details
Quiz
•
5th Grade
20 questions
Context Clues
Quiz
•
6th Grade
15 questions
Equivalent Fractions
Quiz
•
4th Grade
20 questions
Figurative Language Review
Quiz
•
6th Grade
Discover more resources for Computers
10 questions
How to Email your Teacher
Quiz
•
Professional Development
6 questions
3RD GRADE DECLARATION OF INDEPENDENCE EXIT TICKET
Quiz
•
Professional Development
19 questions
Black History Month Trivia
Quiz
•
6th Grade - Professio...
22 questions
Multiplying Exponents with the Same Base
Quiz
•
9th Grade - Professio...
40 questions
Flags of the World
Quiz
•
KG - Professional Dev...
