C Programming Basics

C Programming Basics

University

50 Qs

quiz-placeholder

Similar activities

Java Programming Quiz 2-6

Java Programming Quiz 2-6

University

50 Qs

Unit 2 Final Quizz

Unit 2 Final Quizz

University

54 Qs

Milestone - 1

Milestone - 1

University

50 Qs

Test 1

Test 1

University

49 Qs

Kiến thức về xử lý mảng 1 chiều trong C++

Kiến thức về xử lý mảng 1 chiều trong C++

University

50 Qs

Dasar Pemrograman Java

Dasar Pemrograman Java

University

50 Qs

first quiz ICT

first quiz ICT

University

48 Qs

CC 101 Final Exam

CC 101 Final Exam

University

50 Qs

C Programming Basics

C Programming Basics

Assessment

Quiz

Computers

University

Hard

Created by

Kallamalla Vedasri

Used 1+ times

FREE Resource

50 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is a correct syntax to output "Hello World" in C?

Console.WriteLine(“Hello World”);

System.out.println(“Hello World”);

cout<<”Hello World”;

printf(“Hello World”);

2.

MULTIPLE CHOICE QUESTION

1 min • 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

1 min • 1 pt

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

TRUE

FALSE

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

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

TRUE

FALSE

5.

MULTIPLE CHOICE QUESTION

1 min • 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

1 min • 1 pt

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

float num=2.8;

val num = 2.8;

num=2.8 float;

num=2.8 double;

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which operator is used to add together two values?

The & sign

The ADD keyword

The * sign

The+sign

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?