C Structures

Quiz
•
Professional Development
•
Professional Development
•
Hard
Santosh Katti
Used 391+ times
FREE Resource
10 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which of the following are themselves a collection of different data types?
String
Struct
char
all
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which operator connects the structure name to its member name?
-
=
.
>>
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which of the following cannot be a structure member?
another structure
array
Function
None
4.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
Which of the following structure declaration will throw an error?
struct temp{ } s;
main(){}
struct temp{ };
struct temp s;
main(){ }
struct temp s;
struct temp{ };
main(){ }
None
5.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
What is the output of this C code?
void main()
{
struct student
{
int no;
char name[20];
};
struct student s;
s.no = 8;
printf("%d", s.no);
}
Nothing
Compile error
8
Junk
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Size of a union is determined by size of the.
First member in the union
Last member in the union
C. Biggest member in the union
Sum of the sizes of all members
7.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
Assuming size of long int is 4 bytes, what will be the output for:
typedef long long int L = 24;
printf("Size of long long int is :");
printf("%d",sizeof(L));
24
4
8
Error
Create a free account and access millions of resources
Similar Resources on Wayground
10 questions
DAY9_QUIZ_NBKR

Quiz
•
Professional Development
10 questions
MTS WA380z-6

Quiz
•
Professional Development
10 questions
CHRP - Organization Development

Quiz
•
Professional Development
11 questions
The Power of Yet - Dweck

Quiz
•
Professional Development
15 questions
Burgers

Quiz
•
Professional Development
12 questions
Weld polymer pipes using fusion method

Quiz
•
Professional Development
10 questions
Excel Intermedio

Quiz
•
Professional Development
11 questions
Arquitectura

Quiz
•
Professional Development
Popular Resources on Wayground
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
10 questions
Nouns, nouns, nouns

Quiz
•
3rd Grade
10 questions
9/11 Experience and Reflections

Interactive video
•
10th - 12th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
11 questions
All about me

Quiz
•
Professional Development
22 questions
Adding Integers

Quiz
•
6th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
9 questions
Tips & Tricks

Lesson
•
6th - 8th Grade