Module 1_Introduction to C Programming

Module 1_Introduction to C Programming

University

10 Qs

quiz-placeholder

Similar activities

Understanding For Loops in C

Understanding For Loops in C

University

10 Qs

QUIZ PSEINT

QUIZ PSEINT

University

10 Qs

Metodología de la Programación P1P2

Metodología de la Programación P1P2

University

10 Qs

The Oops moment/2

The Oops moment/2

University

10 Qs

I PPS QUIZ

I PPS QUIZ

University

5 Qs

DSA - Unit 1 Quiz

DSA - Unit 1 Quiz

University

10 Qs

C Programming Fundamentals

C Programming Fundamentals

University

10 Qs

C Programming Day-12

C Programming Day-12

University

10 Qs

Module 1_Introduction to C Programming

Module 1_Introduction to C Programming

Assessment

Quiz

Engineering

University

Medium

Created by

Shruthi S

Used 2+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is not a valid C variable name?

int number

float rate

int variable_count

int $main

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is #include <stdio.h>?

Preprocessor directive

Inclusion directive

File inclusion directive

None of the mentioned

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the sizeof(char) in a 32-bit C compiler?

1 bit

2 bits

1 Byte

2 Bytes

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

scanf() is a predefined function in______header file.

stdlib. h

ctype. h

stdio. h

stdarg. h

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

  1. #include <stdio.h>

  2. int main()

  3. {

  4. int y = 10000;

  5. int y = 34;

  6. printf("Hello World! %d\n", y);

  7. return 0;

  8. }

Compile time error

Hello World! 34

Hello World! 1000

Hello World! followed by a junk value

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

  1. #include <stdio.h>

  2. void main()

  3. {

  4. int x = 5 * 9 / 3 + 9;

  5. }

3.75

Depends on compiler

24

3

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many keywords are there in C Language ?

30

22

32

36

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?