Variables and Data Types in C

Variables and Data Types in C

12th Grade

8 Qs

quiz-placeholder

Similar activities

Preguntas básicas sobre C#

Preguntas básicas sobre C#

9th - 12th Grade

12 Qs

java variables 1

java variables 1

9th - 12th Grade

13 Qs

Objects & Classes

Objects & Classes

11th - 12th Grade

10 Qs

Java

Java

9th Grade - University

11 Qs

Programming Java

Programming Java

9th Grade - University

11 Qs

T_4.2 Identifier, Data Types, Operators & Expressions

T_4.2 Identifier, Data Types, Operators & Expressions

12th Grade - University

10 Qs

Functions in C++

Functions in C++

9th - 12th Grade

10 Qs

Introduction to C++ 2024/25

Introduction to C++ 2024/25

12th Grade

10 Qs

Variables and Data Types in C

Variables and Data Types in C

Assessment

Quiz

Computers

12th Grade

Easy

Created by

Tamicia undefined

Used 2+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Which of the following are correct?

Variables are empty spaces in memory used to store data

Examples of variables are 3num, $%date&time, 2age

Variable names should be concise and relate to the data that they are storing

When declaring variables, the data type is placed AFTER the variable name and not before

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following are data types in C?

Float, data/time, int

Char, int, float, double

string, double, floater

Char, array, integer

Answer explanation

3.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Which of the following data can a variable declared as 'int' store?

2.55

0

30.0

30

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

TRUE OR FALSE?

The printf function is used to INPUT data while the scanf function is used to OUTPUT data

TRUE

FALSE

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What are the format identifiers for the data types int, char and string respectively?

%d, %c, %lf

%s, %f, %d

%d, %c, %s

%f, %lf, %s

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct format for declaring a variable that stores integers?

variable_name, data_type, = 0;

data_type, variable_name, = 0;

=0;, variable_name, data_type

data_type, =0;, variable_name

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

True or False? The float data type in C can store the numbers 31.0 and 31.678

FALSE

TRUE

8.

OPEN ENDED QUESTION

3 mins • 1 pt

You are provided with the following:

Data type is int

Variable name is sum

Starting value/initializer is set at 1

Use what was provided to perform a declaration

Hint: Remember to put the semi-colon at the end (;)

Evaluate responses using AI:

OFF