Programming in C structures and files

Programming in C structures and files

University

10 Qs

quiz-placeholder

Similar activities

InternshipDay 13

InternshipDay 13

University

8 Qs

C Programming 2nd Quiz

C Programming 2nd Quiz

University

10 Qs

Java Arrays

Java Arrays

5th Grade - University

10 Qs

Ambitos y pilas de funciones

Ambitos y pilas de funciones

University

8 Qs

Data Structure 1

Data Structure 1

University

10 Qs

SICG - REVISÃO - PROVA 01

SICG - REVISÃO - PROVA 01

University

10 Qs

Tokens  Lexeme and Pattern

Tokens Lexeme and Pattern

University

10 Qs

Post-test array c++

Post-test array c++

University

10 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?