Structures and Union

Structures and Union

University

15 Qs

quiz-placeholder

Similar activities

Blind coding

Blind coding

University

15 Qs

QUIZ SAFARI KAMPUS

QUIZ SAFARI KAMPUS

University

14 Qs

CodeMavarick

CodeMavarick

University

20 Qs

Golang Basics 2

Golang Basics 2

University

15 Qs

Java set3

Java set3

University

10 Qs

Unit 4 & 5

Unit 4 & 5

University

20 Qs

C PROGRAMMING

C PROGRAMMING

University

15 Qs

Java Simple - 1

Java Simple - 1

University

20 Qs

Structures and Union

Structures and Union

Assessment

Quiz

Other

University

Medium

Created by

Kavinaya R

Used 1+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a structure in C?

A data type used to store integers only

A user-defined data type that groups related variables

loop structure

pre-defined C function

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which keyword is used to define a structure in C?

struct

define

typedef

union

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct way to declare a structure named Student with name and age?

struct Student { char name[50]; int age; };

structure Student { char name[50]; int age; };

define Student { name[50], age };

Student { char name[50]; int age; };

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you access the member age of a structure variable s1?

s1 -> age

s1.age

s1:age

s1(age)

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you create a variable s1 of type struct Student?

Student s1;

struct s1 Student;

struct Student s1;

Student: s1;

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Can structures hold different data types?

No, all members must be same type

Yes, only integers and floats

Yes, any combination of data types

Only characters

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the size of a structure dependent on?

Number of members

Type and size of members

Order of declaration

All of the above

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?