Please wait...

Compiler Design Test 4
Result
Compiler Design Test 4
  • /

    Score
  • -

    Rank
Time Taken: -
  • Question 1/10
    1 / -0

    Generation of intermediate code based on an abstract machine model is useful in compilers because:
    Solutions

    Explanation:

    Intermediate code is:

    • Machine independent code so a compiler can optimize it without worrying about the architecture on which the code is going to execute.
    •  Main purpose of intermediate code generation is to enhance the portability of the compilers,


    hence option 3 is the most suitable option here.

  • Question 2/10
    1 / -0

    Consider the following the statements

    S1: Static allocation bindings do not change at runtime

    S2: Heap allocation allocates and de-allocates storage at run time

    Which of the following statements is/are true?
    Solutions
    • Dynamic binding changes at run time not static.
    • Heap allocation supports dynamic data structures because it allocates and de-allocates storage at run time.
  • Question 3/10
    1 / -0

    Consider the productions for the below given grammar?

    S → Q | S # Q

    Q → Q # P | P

    P → R @ P | R

    R → id

    Which of the following is false?
    Solutions

    From grammar, it can be said that

    Associativity

    Since S is left recursive therefore # is left-associative 

    Since Q is left recursive therefore # is left-associative 

    Since P is right recursive therefore @ is right-associative 

    Order of preference:

     # has the lowest order of precedence

    @ has the highest order of precedence

  • Question 4/10
    1 / -0

    Consider the following C code fragment:

    void main()

    {

    x()

    }

    int x()

    {

    y()

    }

    int y()

     {

    }

    Which of the following statement is correct about activation record?
    Solutions
    Procedure calls and returns are usually managed by a run-time stack called the control stack. Each live activation has an activation record (sometimes called a frame) on the control stack, with the root of the activation tree at the bottom, and the entire sequence of activation records on the stack corresponding to the path in the activation tree to the activation where control currently resides. The latter activation has its record at the top of the stack.
  • Question 5/10
    1 / -0

    Consider the following statements:

    (i)  The symbol table contains information about the lexical and the syntactical structure of the program.

    (ii)  Output of the semantic analysis is the annotated parse tree.

    (iii) The intermediate code generator does not use the symbol table.

    (iv) The intermediate code generation and the machine code generation can never be combined in a single step.

    Which of the above statement/s is/are TRUE about the compilation?

    Solutions

    (i) True:    The symbol table contains information about the lexical and the syntactical structure of the program.

    (ii) True:    Output of the semantic analysis is the annotated parse tree.

    (iii) False:  The intermediate code generator does use the symbol table.

    (iv) False:  The intermediate code generation and the machine code generation can be combined in a single step.

  • Question 6/10
    1 / -0

    Consider the following code segment:

    p = q – r

    s = r + t

    p = s + p

    s = a + s

    What it the minimum number of total variables required to convert the above code segment to static single assignment?

    Solutions

    In compiler design, static single assignment form (SSA) is a property of an intermediate representation, which requires that each variable is assigned exactly once, and every variable is defined before it is used.

    t1 = q – r

    t2 = r + t

    t3 = t2 + t1

    t4 = a + t2

    Variables are: t1, q, r, t2, t, t3, t4, a

    Therefore, 8 variables are present in static single assignment form.

  • Question 7/10
    1 / -0

    Consider the statement 

    do

    {

    i = i + 1;

    }

    While(a[i] < b);

    The minimum number of temporary variables required in three address code of the above statement is _____.
    Solutions

    t1 = i + 1

    i = t1

    t2 = i * 8 // refers memory allocation for given data type

    t3 = a[t2]

    if t3 < b

    Hence, 3 variables are required in three address code.

  • Question 8/10
    1 / -0

    Choose the equivalent prefix form of the following expression

    (a + (b − c))* ((d − e)/(f + g − h))

    Solutions

    Using given prefix form we can draw the expression tree as follows:

    * is the root.

    + is its left child and / is right.

    a is the left child of + and - is the right.

    b and c are the left and right child of - respectively.

    / has - at both left and right child node.

    left child node of / has d and c as left and right child respectively.

    right child node of / has + and h as the left and right child respectively.

    + has f and g as left and right child respectively.

    Using this tree we can deduct that prefix form of this tree is * +a − bc /− de − +fgh.

  • Question 9/10
    1 / -0

    Consider the grammar defined by the following production

    P → Q | P * Q

    Q → R + Q | R

    R → T – R | T

    T → id

    where * is multiplication, + is addition and – is subtraction operation.

    The output of the given expression 9 * 5 * 11 – 10 – 8 + 3 is _____.
    Solutions

    From the grammar it can be said that

    Since P is left recursive therefore * is left associative 

    Since Q is right recursive therefore + is right associative 

    Since R is right recursive therefore – is right associative 

    Also, - has highest order of precedence and * has lowest order of precedence

    Therefore

    (9 * 5) * ((11 – (10 – 8)) + 3)

    = 45 × 12 = 540

  • Question 10/10
    1 / -0

    Consider the following table:

    A.

    Activation record

    p.

    Linking loader

    B.

    Location counter

    q.

    Garbage collection

    C.

    Reference counts

    r.

    Subroutine call

    D.

    Address relocation

    s.

    Assembler

    Matching A, B, C, D in the same order gives:

    Solutions

    Activation record - Subroutine call

    Location counter- Assembler

    Reference counts- Garbage collection

    Address relocation- Linking loader

User Profile
-

Correct (-)

Wrong (-)

Skipped (-)


  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
Get latest Exam Updates
& Study Material Alerts!
No, Thanks
Click on Allow to receive notifications
×
Open Now