C programming

C programming

University

20 Qs

Student preview

quiz-placeholder

Similar activities

Weekly Quiz #1

Weekly Quiz #1

University

20 Qs

Data Structures through C

Data Structures through C

University

20 Qs

27-50

27-50

University

23 Qs

QUIZ METODO IVANOVA

QUIZ METODO IVANOVA

University

15 Qs

JAVA (Pre-Assessment)

JAVA (Pre-Assessment)

University

21 Qs

Teste Java 1

Teste Java 1

University

20 Qs

Estructura de control REPETITIVAS-PEsInt v2

Estructura de control REPETITIVAS-PEsInt v2

University

22 Qs

Programming in C language

Programming in C language

12th Grade - University

18 Qs

C programming

C programming

Assessment

Quiz

Created by

Sumit Kumar

Instructional Technology

University

3 plays

Easy

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • Ungraded

What is the range of value that can be stored by int data types in C?

-(2^31) to (2^31)-1

-256 to 255

-(2^63) to (2^63)-1

0 to (2^31)-1

Answer explanation

-(2^31) to (2^31)-1

2.

MULTIPLE CHOICE QUESTION

20 sec • Ungraded

What will be the output of the following code snippet?

#include<studio.h>

int main(){

int a=3, b=5;

int t = a;

a = b;

b = t;

printf("%d%d",a,b);

return 0;

}

3 4

3 3

5 5

5 3

Answer explanation

5 3

3.

MULTIPLE CHOICE QUESTION

20 sec • Ungraded

How is an array initialized in C language:

int a[3] = {1,2,3};

int a = {1,2,3};

int a[] = new int [3];

int a(3) = [1,2,3];

Answer explanation

int a[3] = {1,2,3};

4.

MULTIPLE CHOICE QUESTION

20 sec • Ungraded

How is the 3rd element in an array accessed based on pointer notation?

*a+3

*(a+3)

*(*a+3)

&(a+3)

Answer explanation

*(a+3)

5.

MULTIPLE CHOICE QUESTION

20 sec • Ungraded

How are String represented in memory in C?

An array of characters.

The object of some class.

Same as other primitive data types.

LinkedList of characters.

Answer explanation

An array of characters.

6.

MULTIPLE CHOICE QUESTION

20 sec • Ungraded

What is the disadvantage of arrays in C?

The amount of memory to be allocated should be known beforehand.

Elements of an array can be accessed in constant time.

Elements are stored in contiguous memory blocks.

Multiple other data structures can be implemented using arrays.

Answer explanation

The amount of memory to be allocated should be known beforehand.

7.

MULTIPLE CHOICE QUESTION

20 sec • Ungraded

Which of the following is an exit controlled loop?

While loop.

For loop.

do-while loop.

None of the above.

Answer explanation

do-while loop.

Explore all questions with a free account

or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?