Quiz on Basics of C

Quiz on Basics of C

University

10 Qs

quiz-placeholder

Similar activities

STRUKTUR DATA (QUIZ FINAL)

STRUKTUR DATA (QUIZ FINAL)

University

15 Qs

Computer Network

Computer Network

University

10 Qs

DBMS_Quiz_1

DBMS_Quiz_1

University

15 Qs

have fun with econometrics

have fun with econometrics

University

15 Qs

Operating System - Chapter 1-1

Operating System - Chapter 1-1

University

10 Qs

Round 2 for Preplacement Bootcamp

Round 2 for Preplacement Bootcamp

University

15 Qs

Web Designing Quiz-2

Web Designing Quiz-2

University

10 Qs

Teste python- Unesp-Jaboticabal

Teste python- Unesp-Jaboticabal

University

10 Qs

Quiz on Basics of C

Quiz on Basics of C

Assessment

Quiz

Computers

University

Hard

Created by

Michael Kona

Used 24+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following C code?

#include <stdio.h>

void main()

{ int x = 5;

if (true);

printf("hello");

}

a) It will display hello

b) It will throw an error

c) Nothing will be displayed

d) Compiler dependent

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

#include <stdio.h>

int x;

void main()

{

if (x)

printf("hi");

else

printf("how are u");

}

a) hi

b) how are you

c) compile time error

d) error

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What does the following code fragment write to the monitor?


int sum = 14;

if ( sum < 20 )

System.out.print("Under ");

else

System.out.print("Over ");

System.out.println("the limit.");

Under

Over.

. Under the limit

Over the limit.

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

int main()

{

int a = 25%10;

printf("%d", a);


return 0;

}

5

2

2.5

5.5

5.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

!= is the example of ____________________ operator.

Relational

Logical

Assignment

Conditional

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

#include <stdio.h>


void main()

{


int x = 5 * 9 / 3 + 9;


}

24

3

23

4

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

int x = 15;

x=+5;

printf("x value is: %d",x);

Error

x value is: 20

x value is: 15

None of these

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?