Programming in C structures and files

Programming in C structures and files

University

10 Qs

quiz-placeholder

Similar activities

Archivos en JAVA

Archivos en JAVA

University

12 Qs

InternshipDay 13

InternshipDay 13

University

8 Qs

C Programming 2nd Quiz

C Programming 2nd Quiz

University

10 Qs

ATRN 428 - AIRLAW

ATRN 428 - AIRLAW

University

10 Qs

DE - UNIT 2 - 12.08.2020

DE - UNIT 2 - 12.08.2020

University

12 Qs

Arrays

Arrays

University

15 Qs

Golang Basics 2

Golang Basics 2

University

15 Qs

C PROGRAMMING

C PROGRAMMING

University

15 Qs

Programming in C structures and files

Programming in C structures and files

Assessment

Quiz

Other

University

Medium

Created by

Suresh Mamidisetti

Used 1+ 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?

Strings

Structures

Unions

Both Structures & Unions

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Union differs from structure in the following way

All members are used at a time

Only one member can be used at a time

Union cannot have more members

Union initialized all members as structure

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which operator connects the structure name to its member name?

*

.

&

+

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The size of the following union, where an int occupies 4 bytes of memory is

union demo

{

float x;

int y;

char z[10];

};

8 bytes

4 bytes

10 bytes

18 bytes

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a properly defined struct?

struct {int a;}

struct a_struct {int a;}

struct a_struct int a;

struct a_struct {int a;};

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which properly declares a variable of struct foo?

struct foo;

struct foo var;

foo;

int foo;

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The first and second arguments of fopen() are

A character string containing the name of the file & the second argument is the mode

A character string containing the name of the user & the second argument is the mode

A character string containing file pointer & the second argument is the mode

None of the mentioned

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?