Programming in C(1)

Programming in C(1)

University

20 Qs

quiz-placeholder

Similar activities

2D Array and Strings in C

2D Array and Strings in C

University

16 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

EST102 : PROGRAMMING IN C TEST 1

EST102 : PROGRAMMING IN C TEST 1

University

20 Qs

EC8393_FDS_WEEKLY_TEST3(18.08.20)

EC8393_FDS_WEEKLY_TEST3(18.08.20)

University

20 Qs

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

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

University

16 Qs

XTK022

XTK022

University

25 Qs

Unit1-2nd Half

Unit1-2nd Half

University

20 Qs

Programming in C(1)

Programming in C(1)

Assessment

Quiz

Computers

University

Medium

Created by

sowjanya prabhala

Used 62+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Who is father of C Language?

Bjarne Stroustrup

James A. Gosling

Dennis Ritchie

Dr. E.F. Codd

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Output of the following code


#include <stdio.h>

int main()

{ int i = 0;

switch (i)

{

case '0': printf("Geeks");

break;

case '1': printf("Quiz");

break;

default: printf("GeeksQuiz");

}

return 0;

}

Geeks

Quiz

GeeksQuiz

None of the above

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

In which year C language is developed?

1970

1971

1972

1973

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

The keyword used to transfer control from a function back to the calling function is

switch

goto

go back

return

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If a variable is a pointer to a structure, then which of the following operator is used to access data members of the structure through the pointer variable?

>

&

*

->

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

#include<stdio.h>

int main()

{ int k=1;

printf("%d == 1 is" "%s\n", k, k==1?"TRUE":"FALSE");

return 0;

}

k == 1 is TRUE

1 == 1 is TRUE

1 == 1 is FALSE

K == 1 is FALSE

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If the two strings are identical, then strcmp() function returns

True

1

False

0

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?