Programming in C by Khushboo Bhardwaj

Programming in C by Khushboo Bhardwaj

University

12 Qs

quiz-placeholder

Similar activities

C Basics

C Basics

University

12 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

C Wrapup Quiz Deutsch

C Wrapup Quiz Deutsch

University

12 Qs

A "C" Event-the backbone of modern coding.

A "C" Event-the backbone of modern coding.

University

16 Qs

UAS Logika dan Algoritma Pemrograman

UAS Logika dan Algoritma Pemrograman

1st Grade - University

15 Qs

Week 9 - Functions and Pointers

Week 9 - Functions and Pointers

University

14 Qs

2D Array and Strings in C

2D Array and Strings in C

University

16 Qs

Programming in C by Khushboo Bhardwaj

Programming in C by Khushboo Bhardwaj

Assessment

Quiz

Computers

University

Hard

Created by

khushboo Bhardwaj

Used 4+ times

FREE Resource

12 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

who developed the programming language c?

Steve Jobs

James Gosling

Rasmus Lerdorf

Dennis Ritchie

2.

FILL IN THE BLANK QUESTION

1 min • 2 pts

int a=printf("Computer Science");

printf("%d",a);

3.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

scanf() is a predefined function in______header file.

stdlib. h

ctype. h

stdio. h

stdarg. h

4.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

void main()

{

int x=2;

if(x=1)

{

printf("True");

}

else

{

printf("false");

}

printf("%d",x);

}

true 1

true 2

false 1

false 2

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

void main()

{

int a=0,b=6,c=1;

if(a&&b&&c)

{

printf("if");

}

else

{

printf("else");

}

}

if

else

error

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

void main()

{

int a=0,b=6,c=1;

if(a++&&b&&c++)

{

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

}

else

{

printf("else");

}

}

0 6 1

1 6 1

else

1 6 2

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The C-preprocessors are specified with _________ symbol

#

@

&

%

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?