Basics of C

Basics of C

University

30 Qs

quiz-placeholder

Similar activities

Progdas-Q1-2023-2

Progdas-Q1-2023-2

University

25 Qs

CODEZILLA 2022

CODEZILLA 2022

University

30 Qs

XTK022

XTK022

University

25 Qs

CodeChef (Secret Snippet)

CodeChef (Secret Snippet)

University

35 Qs

String in C Programming

String in C Programming

University

26 Qs

C Programming

C Programming

University - Professional Development

30 Qs

Arrays and Strings in C

Arrays and Strings in C

12th Grade - University

32 Qs

TECH_IQ_HUNT ROUND

TECH_IQ_HUNT ROUND

University

25 Qs

Basics of C

Basics of C

Assessment

Quiz

Computers

University

Easy

Created by

SUDHARSAN S

Used 18+ times

FREE Resource

30 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Choose correct syntax to output "Hello World" in c?

printf("Hello World");  

Console.WriteLine("Hello World");

System.out.printline("Hello World");

cout << "Hello World";

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you insert COMMENTS in C code?

# This is a comment

-- This is a comment

// This is a comment  

* This is a comment

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

When a variable is created in C, a memory address is assigned to the variable.

True

False

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In C, code statements must end with a semicolon (;)

True

False

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you create a variable with the numeric value 5?

val num = 5;

num = 5;

num = 5 int;

int num = 5; 

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you create a variable with the floating number 2.8?

num = 2.8 float;

num = 2.8 double;

float num = 2.8;  

val num = 2.8;

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which operator is used to add together two values?

The + sign  

The & sign

The * sign

The ADD keyword

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?