Compilation stages

Compilation stages

10th - 12th Grade

8 Qs

quiz-placeholder

Similar activities

NCFE Unit 1 Principles of Coding

NCFE Unit 1 Principles of Coding

10th - 12th Grade

13 Qs

Java Conditions and If Statements

Java Conditions and If Statements

10th Grade

10 Qs

IB CS Topic 4.3

IB CS Topic 4.3

11th - 12th Grade

11 Qs

Khan Academy - Syntax, runtime, and logic errors

Khan Academy - Syntax, runtime, and logic errors

12th Grade

8 Qs

Programming Quiz 1

Programming Quiz 1

11th Grade

11 Qs

Errors in Python

Errors in Python

9th - 12th Grade

12 Qs

APCSU01D02 Errors

APCSU01D02 Errors

12th Grade

10 Qs

Python Quiz

Python Quiz

12th Grade

11 Qs

Compilation stages

Compilation stages

Assessment

Quiz

Computers

10th - 12th Grade

Medium

Used 87+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

if there are no errors tokens are converted into object code. Code is optimised at this stage

Lexical analysis

syntax analysis

semantic analysis

code generation

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

the program is checked to ensure it conforms to the syntax rules. for example an error would appear if a semi-colon was missing

Lexical analysis

syntax analysis

semantic analysis

code generation

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

the program is converted from a sequence of characters into a series of tokens by removing white space at this stage

Lexical analysis

syntax analysis

semantic analysis

code generation

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Varibles are checked that they are used properly and the that operations such as (+ - / and *) have been correctly used at this stage

Lexical analysis

syntax analysis

semantic analysis

code generation

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

THere are 4 main stages of comilation. Code generation is

Comments and unneeded spaces are removed. Remaining code is turned in to tokend and. A symbol table is created which holds the addresses of variables, labels and subroutines.

Tokens are checked to see if they match the spelling and grammar expected. This is done by parsing each token to determine if it uses the correct syntax for the programming language. If syntax errors are found, error messages are produced.

Variables are checked to ensure that they have been properly declared, used and are the correct data type. Operations are checked to ensure that they are legal for the type of variable being used, e.g. you would not try to store the result of a division operation as an integer.

Machine code is generated. Code optimisation to run as fast as possible. redundant data is removed.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

THere are 4 main stages of comilation. Semantic analysis is

Comments and unneeded spaces are removed. Remaining code is turned in to tokend and. A symbol table is created which holds the addresses of variables, labels and subroutines.

Tokens are checked to see if they match the spelling and grammar expected. This is done by parsing each token to determine if it uses the correct syntax for the programming language. If syntax errors are found, error messages are produced.

Variables are checked to ensure that they have been properly declared, used and are the correct data type. Operations are checked to ensure that they are legal for the type of variable being used, e.g. you would not try to store the result of a division operation as an integer.

Machine code is generated. Code optimisation to run as fast as possible. redundant data is removed.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

THere are 4 main stages of comilation. Syntax Analysis is

Comments and unneeded spaces are removed. Remaining code is turned in to tokend and. A symbol table is created which holds the addresses of variables, labels and subroutines.

Tokens are checked to see if they match the spelling and grammar expected. This is done by parsing each token to determine if it uses the correct syntax for the programming language. If syntax errors are found, error messages are produced.

Variables are checked to ensure that they have been properly declared, used and are the correct data type. Operations are checked to ensure that they are legal for the type of variable being used, e.g. you would not try to store the result of a division operation as an integer.

Machine code is generated. Code optimisation to run as fast as possible. redundant data is removed.

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

THere are 4 main stages of comilation. Lexical Analysis is

Comments and unneeded spaces are removed. Remaining code is turned in to tokend and. A symbol table is created which holds the addresses of variables, labels and subroutines.

Tokens are checked to see if they match the spelling and grammar expected. This is done by parsing each token to determine if it uses the correct syntax for the programming language. If syntax errors are found, error messages are produced.

Variables are checked to ensure that they have been properly declared, used and are the correct data type. Operations are checked to ensure that they are legal for the type of variable being used, e.g. you would not try to store the result of a division operation as an integer.

Machine code is generated. Code optimisation to run as fast as possible. redundant data is removed.