Search Header Logo

C programming

Authored by Sumit Kumar

Instructional Technology

University

Used 3+ times

C programming
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

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.

Access all questions and much more by creating a free account

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

Already have an account?