Compilation stages

Compilation stages

10th - 12th Grade

8 Qs

quiz-placeholder

Similar activities

2.5 Translators & Facilities - OCR GCSE Computer Science

2.5 Translators & Facilities - OCR GCSE Computer Science

7th - 12th Grade

13 Qs

Python Boolean

Python Boolean

11th - 12th Grade

11 Qs

Iterative Development Process

Iterative Development Process

9th - 12th Grade

10 Qs

Unit 2 Computer Science - Stages of Compilation

Unit 2 Computer Science - Stages of Compilation

12th Grade - University

9 Qs

AI: NLP Quiz

AI: NLP Quiz

12th Grade

10 Qs

Python Basics

Python Basics

6th - 12th Grade

9 Qs

Syntax, Logic and Runtime errors 2024

Syntax, Logic and Runtime errors 2024

10th Grade - University

13 Qs

Program Development - Python: Errors

Program Development - Python: Errors

8th - 10th Grade

13 Qs

Compilation stages

Compilation stages

Assessment

Quiz

Computers

10th - 12th Grade

Medium

Used 79+ 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.