Programming in C - Structure

Programming in C - Structure

University

20 Qs

quiz-placeholder

Similar activities

c++

c++

University

22 Qs

Control Statements - Java

Control Statements - Java

University

15 Qs

PSC ALM QUIZ

PSC ALM QUIZ

University

16 Qs

QUIZ MASTERY SHOWDOWN 1ST YEAR SET 2

QUIZ MASTERY SHOWDOWN 1ST YEAR SET 2

University

15 Qs

EC8393_FDS_WEEKLY_TEST3(18.08.20)

EC8393_FDS_WEEKLY_TEST3(18.08.20)

University

20 Qs

Kuis Prak. DP

Kuis Prak. DP

University

15 Qs

EST102 : PROGRAMMING IN C TEST 1

EST102 : PROGRAMMING IN C TEST 1

University

20 Qs

2D Array and Strings in C

2D Array and Strings in C

University

16 Qs

Programming in C - Structure

Programming in C - Structure

Assessment

Quiz

Computers

University

Hard

Created by

mahaveerakannan r

Used 40+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which of the following are themselves a collection of different data types?

string

structures

char

all of the mentioned

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

User-defined data type can be derived by___________

struct

enum

typedef

all of the mentioned

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What will be the output of the following C code?

#include <stdio.h>

struct student

{

int no;

char name[20];

}

void main()

{

struct student s;

s.no = 8;

printf("hello");

}

Compile time error

Nothing

hello

Varies

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which of the following return-type cannot be used for a function in C?

char *

struct

void

none of the mentioned

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which of the following is not possible under any scenario?

s1 = &s2;

s1 = s2;

(*s1).number = 10;

None of the mentioned

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which of the following operation is illegal in structures?

Typecasting of structure

Pointer to a variable of the same structure

Dynamic allocation of memory for structure

All of the mentioned

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Comment on the output of the following C code.


#include <stdio.h>

struct temp

{

int a;

int b;

int c;

};


main()

{


struct temp p[] = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}};


}

No Compile time error, generates an array of structure of size 3

No Compile time error, generates an array of structure of size 9

Compile time error, illegal declaration of a multidimensional array

Compile time error, illegal assignment to members of structure

Create a free account and access millions of resources

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?