Compilation, Interpretation & Subroutines Flashcards

1
Q

What is the main difference between compilation and interpretation?

A

Compilation changes high-level code into machine code before running it. Interpretation runs code line by line without changing it into machine code.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are the levels of programming languages?

A

High-Level Languages (e.g., Java, C++)

Low-Level Languages (e.g., Machine Code)

Assembly Language (between high and low level)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are the main steps in the compilation process?

A

Lexical Analysis

Syntax Analysis

Semantic Analysis

Optimization

Code Generation

Linking

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are the advantages of compilation?

A

Faster execution after compilation.

Improved machine code.

Optimized for specific platforms.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are the disadvantages of compilation?

A

Longer compilation time.

Depends on hardware (code needs recompilation for different platforms).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is cross compilation?

A

Compiling code on one platform to run on another.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is an interpreter?

A

A program that reads and runs code line by line.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What are the advantages of using an interpreter?

A

Easier debugging and testing.

Works on any platform.

Runs and modifies in real-time.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What are the disadvantages of using an interpreter?

A

Slower execution than compiled code.

Line-by-line interpretation adds extra overhead.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How does combined compilation and interpretation work?

A

High-level code is compiled into an intermediate form (like bytecode), which is then interpreted or JIT compiled.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is a Virtual Machine (VM)?

A

A software that acts like a physical computer to run intermediate code.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is the most common virtual machine in programming?

A

The Java Virtual Machine (JVM), which executes Java bytecode.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is JIT compilation?

A

A technique where bytecode is compiled to machine code just before execution to improve performance.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What are subroutines?

A

Reusable code blocks that perform a task and can be used anywhere in a program.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What are the advantages of using subroutines?

A

Reuse code

Keep it organized

Reduce repetition

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is a stack used for in subroutine management?

A

To store return addresses, parameters, and local variables.

17
Q

What are the primary operations performed on a stack?

A

Push (add to top) and Pop (remove from top).

18
Q

What are the call and return instructions used for?

A

Call stores the return address and jumps to the subroutine, while ret retrieves the return address from the stack.

19
Q

What is Reverse Polish Notation?

A

A way of writing math where operators come after numbers (e.g., 3 4 + instead of 3 + 4).

20
Q

Why is Reverse Polish Notation useful?

A

No need for parentheses, making stack calculations easier.

21
Q

How would you express 3 + 4 * 2 in RPN?

22
Q

What is an operand stack?

A

A data structure that stores numbers and results while calculating.

23
Q

What are stack machines?

A

Computers that use stacks instead of registers to perform operations.

24
Q

What is the difference between unconditional and conditional jumps?

A

Unconditional Jump: Always transfers control to a specific address.

Conditional Jump: Transfers control based on a condition (e.g., if x == 0).

25
Q

What is the Shunting-Yard Algorithm used for?

A

Converting infix expressions (e.g., 3 + 4 * 2) to postfix (RPN) expressions.

26
Q

What type of architecture does JVM follow?

A

An architecture that uses a stack for pushing and popping values during operations.

27
Q

Why is Java considered portable?

A

Java code turns into bytecode, so it can run on any computer with a JVM.

28
Q

What is a stack frame?

A

A stack contains local variables, parameters, and return addresses used during subroutine calls.

29
Q

Why do subroutines save registers?

A

Saves the caller’s register values during execution.

30
Q

Why are stacks efficient for temporary storage?

A

They follow the LIFO (Last In, First Out) principle, making push and pop operations fast.