Variables and Data Types in C

Variables and Data Types in C

12th Grade

8 Qs

quiz-placeholder

Similar activities

Grade 7 Quiz 5 - Python Data Types

Grade 7 Quiz 5 - Python Data Types

12th Grade

10 Qs

Python Basics Quiz

Python Basics Quiz

9th - 12th Grade

10 Qs

Codehs Data Types

Codehs Data Types

12th Grade - University

13 Qs

For Loops HW

For Loops HW

9th - 12th Grade

12 Qs

CodeHS 2.5 Casting

CodeHS 2.5 Casting

9th - 12th Grade

10 Qs

L. 12. STRUCTURED QUERY LANGUAGE (SQL)

L. 12. STRUCTURED QUERY LANGUAGE (SQL)

12th Grade

10 Qs

algoritma

algoritma

12th Grade

11 Qs

computer 12

computer 12

12th Grade

11 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