Lesson 1 Introduction to C Programming

Lesson 1 Introduction to C Programming

12th Grade

7 Qs

quiz-placeholder

Similar activities

Scratch

Scratch

9th - 12th Grade

10 Qs

Web Design: intro to Javascript

Web Design: intro to Javascript

10th - 12th Grade

10 Qs

Python Strings and Variables

Python Strings and Variables

5th Grade - University

8 Qs

AIS155 TUTORIAL 1.1 An Overview of MS Visual Basic

AIS155 TUTORIAL 1.1 An Overview of MS Visual Basic

University

7 Qs

computer

computer

10th - 12th Grade

10 Qs

Introduction to C Programming

Introduction to C Programming

University

10 Qs

Activity 3

Activity 3

University

10 Qs

coding

coding

KG - 12th Grade

10 Qs

Lesson 1 Introduction to C Programming

Lesson 1 Introduction to C Programming

Assessment

Quiz

Other

12th Grade

Hard

Created by

IKHTIARUDDIN IKHWAN

Used 5+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the primary purpose of programming?

To design websites

To instruct computers to perform tasks

To manage databases

To create graphics

Answer explanation

The primary purpose of programming is to instruct computers to perform tasks. While designing websites, managing databases, and creating graphics are applications of programming, the core function is to enable computers to execute commands.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is considered a high-level programming language?

Assembly

C

Python

Machine Code

Answer explanation

Python is considered a high-level programming language because it abstracts complex details and provides a user-friendly syntax, making it easier to write and understand compared to lower-level languages like Assembly or Machine Code.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is C often referred to as in the context of programming languages?

A low-level language

The mother language of all programming languages

An object-oriented language

A scripting language

Answer explanation

C is often referred to as 'the mother language of all programming languages' because it has influenced many modern languages and serves as a foundation for understanding programming concepts.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does a compiler do in the C programming process?

Links different source files together

Translates assembly code to machine code

Executes the C program

Checks for syntax errors in the source code

Answer explanation

A compiler checks for syntax errors in the source code, ensuring that the code adheres to the language's rules before it can be translated into machine code or executed.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the role of the preprocessor in C programming?

To link the program with libraries

To compile the source code

To interpret special preprocessor directives

To execute the program

Answer explanation

The preprocessor in C programming interprets special preprocessor directives, such as #include and #define, before the actual compilation process begins. This allows for code inclusion and macro definitions, making it essential for preparing the source code.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is NOT a part of the C environment?

Linking

Debugger

Compiler

Preprocessor

Answer explanation

The debugger is a tool used for testing and debugging code, but it is not a core part of the C environment. The C environment primarily consists of the compiler, preprocessor, and linking processes.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What file extension is typically associated with the output of an assembler on a UNIX system?

.exe

.o

.bin

.obj

Answer explanation

.o files are the standard output of assemblers on UNIX systems, representing object files. Other extensions like .exe and .bin are used for executable files, while .obj is more common in Windows environments.