Module 1_Introduction to C Programming

Module 1_Introduction to C Programming

University

10 Qs

quiz-placeholder

Similar activities

C Programming Basics

C Programming Basics

University

10 Qs

SET A

SET A

University

10 Qs

Variables y constantes

Variables y constantes

University

15 Qs

Alpro 2 Mg 1 - Understanding C++ Basics

Alpro 2 Mg 1 - Understanding C++ Basics

University

10 Qs

Mapil

Mapil

University

10 Qs

SESSIONAL EXAM(Programmin Lab)

SESSIONAL EXAM(Programmin Lab)

University

15 Qs

Recap of Sessions 18 & 19

Recap of Sessions 18 & 19

11th Grade - University

10 Qs

Module01_C_M_M&A

Module01_C_M_M&A

University

15 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?