IPC144 SLG -- Week2

IPC144 SLG -- Week2

University

9 Qs

quiz-placeholder

Similar activities

TECHNICAL C PROGRAM

TECHNICAL C PROGRAM

University

10 Qs

Array in C

Array in C

University

10 Qs

C programming

C programming

11th Grade - University

10 Qs

Recursion

Recursion

University

8 Qs

C Programming - Basics 001

C Programming - Basics 001

University

10 Qs

exception

exception

University

10 Qs

C programming-1

C programming-1

University

13 Qs

TECH INTELLECT - ROUND 2

TECH INTELLECT - ROUND 2

University

10 Qs

IPC144 SLG -- Week2

IPC144 SLG -- Week2

Assessment

Quiz

Computers

University

Medium

Created by

Adam Gariba

Used 19+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

What is a byte? (select all that apply)

2 Nibbles

8 Bits

something you do to eat

8 Binary Digits

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A byte can store the digits ...

1 to 8

0 to 8

0 to 255

1 to 256

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In IPC144 we use which programming language

C

C++

C#

Java

4.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

The C compiler turns C language statements into ...

Source code

Binary code

Encrypted text files

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

When we run a compiled program, the binary code is sent to

the RAM and executed

the OS and executed

the CPU and executed

the hard drive and executed

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In C language, "int main(void)" is

The ending point of the program

The starting point of the program

The middlepoint of the program

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

This function sends output to the screen in C

sendOutput()

printOutput()

printf()

Printf()

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

calling the function printf("\n");

will output "\n" to the console

will create a newline

will print "n" to the console

9.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

The line #include <stdio.h> ... (select all that apply)

Tells compiler that printf() is a valid identifier

comes before the int main(void) statement

comes after the int main(void) statement