Basics Of C Programming

Basics Of C Programming

University

10 Qs

quiz-placeholder

Similar activities

C quiz

C quiz

11th Grade - University

10 Qs

Post Test #4 - Python Fundamental #3

Post Test #4 - Python Fundamental #3

University

10 Qs

C Wrapup Quiz Deutsch

C Wrapup Quiz Deutsch

University

12 Qs

LOg.Dig: Algebra Booleana

LOg.Dig: Algebra Booleana

University

10 Qs

QUIZ TECH EASY ROUND!

QUIZ TECH EASY ROUND!

University

10 Qs

Variables and Functions

Variables and Functions

KG - University

10 Qs

Python with DataScience

Python with DataScience

7th Grade - University

10 Qs

AB1401 Case Study: Facebook

AB1401 Case Study: Facebook

University

12 Qs

Basics Of C Programming

Basics Of C Programming

Assessment

Quiz

Computers

University

Practice Problem

Hard

Created by

mahesh kanase

Used 459+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which header file can be used to define input/output function prototypes and macros?

- math.h

- memory.h

- stdio.h

- dos.h

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

The correct order of evaluation for the expression “z = x + y * z / 4 % 2 – 1”

* / % = + -

/ * % - + =

- + = * % /

* / % + - =

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

How many times CppBuzz.com is printed?

int main()

{

int a = 0;

while(a++);

{

printf("CppBuzz.com");

}


return 0;

}

0 time

1 time

Compilation Error

Infinite times

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many times CppBuzz.com is printed on console?

int main()

{

int a = 0;

while(a++)

{

printf("CppBuzz.com");

}


return 0;

}

Nothing is printed on screen

0 time

1 time

Infinite times (Untill Stack overflow)

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is output of below program?


int main()

{

int i,j,count;

count=0;

for(i=0; i<5; i++);

{

for(j=0;j<5;j++);

{

count++;

}

}

printf("%d",count);

return 0;

}

55

54

1

0

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is output of below program?


int main()

{

int i;

for(i=0; i<5; ++i++)

{

printf("Hello");

}

return 0;

}

Hello is printed 5 times

Compilation Error

Hello is printed 2 times

Hello is printed 3 times

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is an Identifier in C Language.?

Name of a Function or Variable

Name of a Macros

Name of Structure or Union

All the above.

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?