C Structures

C Structures

Professional Development

10 Qs

quiz-placeholder

Similar activities

CPR_Quiz_Chapter4_function

CPR_Quiz_Chapter4_function

Professional Development

15 Qs

C Basic

C Basic

Professional Development

10 Qs

day4

day4

Professional Development

15 Qs

pemrograman dasar

pemrograman dasar

Professional Development

10 Qs

Java Quiz-2

Java Quiz-2

Professional Development

15 Qs

Computer Networs Lab - Viva

Computer Networs Lab - Viva

Professional Development

10 Qs

CPR Quiz_chapter 5_structure

CPR Quiz_chapter 5_structure

Professional Development

10 Qs

CPR _Chapter2 _Onlinequiz

CPR _Chapter2 _Onlinequiz

Professional Development

15 Qs

C Structures

C Structures

Assessment

Quiz

Professional Development

Professional Development

Hard

Created by

Santosh Katti

Used 390+ 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

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?