Please wait...

Programming and Data Structures Test 2
Result
Programming and Data Structures Test 2
  • /

    Score
  • -

    Rank
Time Taken: -
  • Question 1/25
    2 / -0.33

    In a complete 3-ary, every internal node has exactly 3 children. The number of leaves in such a tree with k internal nodes is
    Solutions

    Consider an example:

    k = 2(internal nodes)

    leaves = 2k + 1 = 2 × 3 - 1 = 5

    satisfies the case

    Tips and Tricks:

    If n- ary tree with k internal nodes, then number of leaves:

    L = (n – 1) × k + 1

    L = (3 – 1) k + 1

    ∴ L = 2k + 1
  • Question 2/25
    2 / -0.33

    What is the value printed of the following C program?

    Solutions

    Node:

    Data

    'a'+5

    '1'

    'c'+1

    Assume address

    100

    101

    102

     

    n, m points to 100

    (char *)n = 100

    'a' + 5 = f

    ∴ *(100) = f

    (char *)n + 2 = 102

    'c' + 1 = d

    ∴ *(102) = d

    Output: f, d

  • Question 3/25
    2 / -0.33

    Which of the following is/are true about the output of the below code?

    void function(int *y, int *x)

     

    {

    y = x;

    *x = 2020;

    printf("%d %d", *x, *y);

    }

    int main()

    {

    int a = 2010, b = 2011;

    function(&a,&b);

    printf("%d %d", a, b);

    return 0;

    }

    Solutions

    Before function execution:

    Variable

    a

    b

    Value

    2010

    2011

    Assume address

    1000

    1004

     

    Pointer Variable

    x

    y

    Address

    1004

    1000

     

    After function execution:

    Pointer Variable

    x

    y

    Address

    1004

    1004

     

    *x = 2020, *y = 202

    ∴ b = 2020

    Variable a remained unchanged

    Variable

    a

    b

    Value

    2010

    2020

     

    Therefore options 1, 3, and 4 are correct.

  • Question 4/25
    2 / -0.33

    What is the number of  binary search trees possible with 9 distinct keys?

    Solutions

    Data:

    number of distinct keys = n = 9

    Formula:

    Number of binary search trees = 2nCnn+1

    Calculation:

    Number of binary search trees = 18C910 = 4862

  • Question 5/25
    2 / -0.33

    We create a binary search tree B1 by inserting the numbers 1, 2, 3, 4, 5 into an empty binary search tree. We create another binary search tree B2 by inserting the numbers into an empty binary search tree in the reverse order. What is the difference between the right-most element of B1 and the left-most element of B2?
    Solutions

    Concept:

    Right sub tree of a node contains only nodes with values greater than or equal to the node’s value.

    Left sub tree of a node contains only nodes with values less than the node’s value.

    Explanation:

    B1:

    B2:

    Right most element of B1 is 5 and Left most element of B2 is 1, difference between these values is 4.

    Option 3 is the correct answer.

  • Question 6/25
    2 / -0.33

    What is the output of the following program?

     

    #define MUL(a,b) a*b

    #define POW(a) a*a

    int main()

    {

        int a = 3;

        int b = 2;

        printf("%d", MUL(MUL(a+1,b),POW(b+1)));

        return 0;

    }

    Solutions

    Output = MUL( MUL(a + 1, b), POW(b + 1)) )

                  = MUL( (a + 1*b), (b + 1*b + 1) )

                  = ( a + 1 * b * b + 1 * b + 1  )

                  = 3 + 1 * 2 * 2 + 1 * 2 + 1

                  = 3 + 4 + 2 + 1

                  = 10

    Confusion: 

    This is the most confusing question if you don’t know about Macros and Preprocessors. 

    If question defines the function as –

    • #define MUL(a,b) (a)*(b)
    • #define POW(a) (a)*(a)


    Then it will give –

    Output= ( ((a + 1) * b) * ((b + 1) * (b + 1))  )

                  = ((3 + 1) * 2) * ((2 + 1) * (2 + 1))

                  = 4 * 2 *3 * 3

                  = 72 { Wrong output for given question}

    Hence, the correct answer is 10.

  • Question 7/25
    2 / -0.33

    A program X reads in 300 integers in the range [0..100] representing the %attendance of 300 students. It then prints the frequency of each %attendance above 25. What would be the best way for X to store the frequencies?

    Solutions

    Output is the frequency of each%attendance above 25.

    int result [75] //  

    To store frequencies of ages above 25. We can ignore ages below 25 so take an array of 75 numbers where a[0] corresponds to 26, a[1] corresponds to 27, …, a[74].

    Hence An array of 75 integers is enough.

  • Question 8/25
    2 / -0.33

    Consider the following C program which runs on 16 bits machine where integer takes 2 bytes character takes 1 byte.

     

    int main ( )

    {

    int  x, y;

    char *p;

    x=511;

    y=~x;

    p=(char*)&y;

    p++;

    printf("%d",*p);

    return 0;

    }

    Solutions

    Concept :

    • (char*)&y meaning: Points to only 8 bits of y( From LSB ).
    • Binary of x

     

    0

    0

    0

    0

    0

    0

    0

    1

    1

    1

    1

    1

    1

    1

    1

    1

     

    • Value of  y = Complement  of all bits of x
    • Binary of y 

     

    • Decimal value of this binary is - 2 or *p = - 2


    Hence option 4 is the correct answer. 

  • Question 9/25
    2 / -0.33

    Let T be a binary search tree with 63 nodes. The minimum and maximum possible heights of T respectively are:

    Hint: The height of a tree with a single node is 0.
    Solutions

    Graph with minimum height:

    Graph with maximum height:

    Tips and Tricks:

    If n is number of nodes and h is minimum height of in a binary search tree, then

    2h+1 – 1 = n

    2h+1 – 1 = 63

    2h+1 = 64

    2h+1 = 25+1

    ∴ h = 5

    If n is number of nodes and H is maximum height of in a binary search tree, then

    H = n – 1

    H = 63 -1

    ∴ H = 62
  • Question 10/25
    2 / -0.33

    If a queue is implemented using two stacks. In enqueue operation, all the elements are pushed from the first stack to the second stack. In dequeue operation pop an element from 1st stack.

    Which of the following is/are true?
    Solutions

    Enqueue:

    While 1st  stack is not empty, push everything from 1st to 2nd stack.

    Push an element to 1st stack.

    Push everything back to 1st stack.

    Here time complexity will be O(n)

    Dequeue:

    while 1st stack is not empty then Pop an item from stack1 and return it

    Here time complexity will be O(1)

    Therefore option 1 and 3 are correct.

  • Question 11/25
    2 / -0.33

    A function f defined on stack of integer satisfies the following properties f(empty) = 0 and f (push (S, i)) = max (f(s), 0) + i for all stacks S and integer i.

    After pushing integers 2, -3, 2, -1, 2 in order from bottom to top. f(s) returns the top of the stack. What is f(s)?
    Solutions

    Initially S is empty,

    ∴ f(s) = 0

    f(push(S, 2)) = 2

    f(push(S, -3)) = max (2, 0) – 3 = -1

    f(push (S, 2)) = max (-1, 0) + 2 = 2

    f(push (S, -1)) = max (2, 0) – 1= 1

    f(push (S, 2)) = max (1, 0) + 2 = 3
  • Question 12/25
    2 / -0.33

    What is the return output of the following C program segment?

    char c= '2';

     switch(c)

    {

    case '1': printf("C program, ");           

    case '2':

    case '3': printf("Java program, ");

    case '4' :

    case '5': break;

    default: printf("No program");

    }

    return 0;

    }
    Solutions

    switch('2')

    control will come to case '2'

    since case '2': doesn't have break statement to will go to case '3'

    In case '3': Java program, is printed

    since case '3': doesn't have break statement to will go to case '4'

    From case '4' to it will to case '5' break will execute and the switch will terminate.

    Output: Java program,

  • Question 13/25
    2 / -0.33

    A node of a rooted binary tree is said to have preorder number i, if the node occurs in the ith position in the preorder traversal sequence. The notions of postorder number and inorder number are defined in a similar manner. We use the notations PRE(X), POST(X) and IN (X) to denote the preorder number, postorder number and Inorder number of a node X respectively. Consider the following tree:

    For the tree given above, which of the following is TRUE.

    Solutions

    Preorder Traversal: ABDGEHJIKCF

    Inorder Traversal: DGBJHEIKACF

    Postorder Traversal: GDJHKIEBFCA

    Option 2:

    (PRE (B), POST (I), IN (D)) = (2, 6, 1) gives the correct order.

  • Question 14/25
    2 / -0.33

    Which of the following is/are true with respect to stacks and queues where where front points to the index where deletion is done and the rear points to the index where insertion is done in queue?
    Solutions

    Concept:
    The breadth-first search algorithm uses a queue data structure while the depth-first search algorithm uses a stack data structure in its implementation.

    The necessary condition to detect if a circular queue of capacity (n-1) is full is (rear+1) mod n = front 

    The time complexity of converting a fully parenthesized infix expression to postfix expression is O(n), that is, traverse the equation

    Conclusion:

    Options1, 2 and 4 are correct

  • Question 15/25
    2 / -0.33

    Consider the recursive program –

    int code(int m) {

    if(m>0) {

    int i = 1;

    for( ; i<3 ; i++) {

    code(m-i);

    code(m-i-1);

    printf("GATE2021 \n");

    } }

    return 0;

    }

    int main()

    {

    code(4);

    return 0;

    }

    How many times “GATE2021” will be printed ?
    Solutions

    Tree Method

    Here, sum of (numbers in square box) & (no. of time(pf)) will give total no. of times GATE2021 printed i.e, 22 Times.

    NOTE

    Always use TREE method to solve multiple recursive call Questions.

  • Question 16/25
    2 / -0.33

    Consider the following C program execute on a singly linked list numbered from 1 to n containing at least 2 nodes :

    struct Listnode

    {

        int data;

        struct Listnode *next;

    };

    void fun(struct Listnode *head)

    {

        if(head == NULL || head->next == NULL) return;

        struct Listnode*temp = head-> next;

        head->next = temp->next;

        free(temp);

        fun(head->next);

    }

    Which of the following represents the output of above finction ‘fun’ ?

    Solutions

    The above program can be understand by taking a simple example of 5 nodes Linked list.

    The above program deletes every even number node in the linked list (in above example - second, fourth, … so on node will be deleted.

  • Question 17/25
    2 / -0.33

    Which of the following is/are not a valid traversal sequence(s) of binary search tree?

    Solutions

    Option 1: 20, 18, 5, 8, 13, 9, 10, 12

    It is a valid traversal.

    Option 2:  30, 28, 15, 10, 13,12, 11, 9

    Since 9 is less than 10 and to the right of it. Therefore it is not a valid traversal sequence of the binary search tree

    Option 3: 10 30 40 33 39 37 38, 34

    Since 34 is less than 37 and to the right of it. Therefore it is not a valid traversal sequence of the binary search tree

    Option 4: 40, 50, 60, 55, 58, 56, 57,59

    Since 59 is greater than 58 and to the left of it. Therefore it is not a valid traversal sequence of the binary search tree

  • Question 18/25
    2 / -0.33

    Consider the below-given block of code in which int a[ ] = { 12, 7, 13, 4, 11, 6 }

    int f(int *a, int n) {

    if(n <= 0)

    return 0;

    else

    if(*a % 2 == 0)

    return *a + f(a+1, n-1);

    else

    return *a - f(a+1, n-1);

    }

    What is the output of the program if printf("%d", f(a,6)); statement is called in main() function?

    Solutions

    Output is 15

  • Question 19/25
    2 / -0.33

    Which of the following statement is/are TRUE?

    I. A binary search tree with n nodes has a maximum height of n – 1.

    II. A labeled root binary search tree can be uniquely constructed given its postorder traversal results

    III. Maximum number of nodes in a binary tree of height h is 2h+1 – 1.

    Note: Height of root is 0.

    Solutions

    Statement I: TRUE

    number of nodes = n = 3

    Maximum height = n - 1 = 2

    Statement II: TRUE

    A binary tree can be constructed uniquely if

    1. preorder and inorder traversal is given

    2. postorder and inorder is given

    But given tree is binary search tree, inorder traversal of the binary s.earch tree is sorted and postorder traversal is given. Hence tree can be constructed uniquely.

    Statement III: TRUE

    If height of root node is 0, then the maximum height of nodes in binary tree of height h is 2h+1 – 1.

  • Question 20/25
    2 / -0.33

    Consider the following C program

    main ( )

    {

    int N, x;

    scanf (“% d”, &N);

    x = 0;

    while (N > 0)

    {

    x = x + 1 – N % 2;

    N / = 2;

    }

    printf(“% d”, x)

    }

    What is the sum of the smallest three values of N for which the value printed is 5?

    Solutions

    Take N = 32

    N = 32

    while (TRUE)

    x = 0 + 1 – 0

    N = 16

    while (TRUE)

    x = 1 + 1 – 0

    N = 8

    while (TRUE)

    x = 2 + 1 – 0

    N = 4

    while (TRUE)

    x = 3 + 1 – 0

    N = 2

    while (TRUE)

    x = 4 + 1 – 0

    N = 1

    while (TRUE)

    x = 5 + 1 – 1 = 5

    N = 0

    while (FALSE)

    Output will be same for 65 and 66 as well.

    For N = 32 it will print '5'

    For N = 65 it will print '5'

    For N = 66 it will print '5'

    Hence, the sum of smallest three values of N = 32 + 65 + 66 = 163

  • Question 21/25
    2 / -0.33

    Which of the above statements is/are TRUE if the tree contains distinct elements only?

    Solutions

    Binary Search Tree:

     

    INORDER: 14, 15, 18, 20, 22, 23, 25, 30

    Traversal time complexity = O(n)

    Store the element in an array in reverse order

    Index

    0

    1

    2

    3

    4

    5

    6

    7

    Array elements

    30

    25

    23

    22

    20

    18

    15

    14

     

    Filling the array in reverse order. Time complexity = Θ(n)

    Total time complexity = Θ(n) + Θ(n) = Θ(n)

    Max-heap:

    • Smallest element (12) of the max heap is always at the leaf.
    • Second largest element (25) in a max heap is always a child of the root node

    MAX heap:

    Option 2, 3 and 4 are true 

    Important Points:

    A binary search tree can be constructed from a max heap in Θ(n2) time

    Assume that distinct elements are present

  • Question 22/25
    2 / -0.33

    Consider a min heap, represented by the array:

    Array index

    1

    2

    3

    4

    5

    6

    7

    8

    9

    10

    Value

    8

    10

    25

    24

    27

    28

    32

    31

    26

    29

     

    Now consider that a value 15 is inserted into this heap. After insertion, what it the array index of 15?

    Solutions

    Insert 15 at the leaf node of above given tree.

    Swap 15 with 27 to satisfy min heap property

    ∴ index of element 15 is 5
  • Question 23/25
    2 / -0.33

    Consider the following tree:

    The code-fragment given below is run on the above tree. Which of the following is the desired output?

    traversal(t)

    {

        if(t)

        {

              print(t → data);

              traversal(t → left);

              print(t → data);

              traversal(t → right);

              printf(t → data);

        }

    }

    Solutions

    Concept:

    The given question is an example of triple-order traversal i.e. data of each node is printed thrice. To solve such questions, we assign a number to each line which is a part of recursion and write those numbers along with the nodes of the given tree. Then the tree is traversed in top to down, left to right manner and the corresponding action is performed according to the number assigned.

    Solution:

    The code fragment is assigned numbers as given below:

    traversal(t)

    {

        if(t)

        {

              1. print(t → data);

              2. traversal(t → left);

              3. print(t → data);

              4. traversal(t → right);

              5. printf(t → data);

        }

    }

    These numbers are written along with the nodes of the tree as given below:

    The tree is traversed from top to down and left to right i.e. the traversal starts from the node A, moves downwards to node E, then again move upwards to node A and then move downwards towards node H.

    The actions are performed accordingly. For example, if node C is picked, the action will be performed as: firstly the data in node i.e. 'C' will be printed. Then the function traversal(t → left) will be called and the data of the node i.e. 'F' will be printed. Again the function traversal(t → left) will be called which will return NULL and the action corresponding to line 3 i.e. to print the data (F)will be performed. Now 'E' will be printed again. Similarly, traversal(t → right) will be called which will return NULL  and the action corresponding to line 4 i.e. to print the data (F) will be performed. 

    Likewise,​ the actions will be performed on each node and the output will be ABDDEEEDBBACFFFCGGHHHGCA.

  • Question 24/25
    2 / -0.33

    The following postfix expression with single digit operands in evaluated using a stack

    4 2 5 ^ * 14 7 / - 7 5 * +

    Note that ^ is exponentiation operator, * is multiplication operator, / is division operator, + is addition operator and – is subtraction operator
    Solutions

    4 2 5 ^ * 14 7 / - 7 5 * +

    Push: 9, 2 and 5

    4

    2

    5

     

    Pop: 2 and 5

    Perform operation: 2 ^ 5 = 32

    Push: 32

    4

    32

     

     

    Pop: 32 and 4

    Perform operation: 4 × 32 = 128

    Push: 128

    Also push: 14 and 7

    128

    14

    7

     

    Pop: 7 and 14

    Perform operation: 14 ÷ 7 = 2

    Push: 2

    128

    2

     

     

    Pop: 128 and 2

    Perform operation: 128 - 2 = 126

    Push: 126

    Also push: 7 and 5

    126

    7

    5

     

    Pop: 5 and 7

    Perform operation: 7 × 5 = 35

    Push: 35

    126

    35

     

     

    Pop: 35 and 126

    Perform operation: 126 + 35 = 161

    Push: 161

    161

     

     

     

    After evaluating: 161 is present onto the stack

    Hence 161 is the answer for the given postfix operation.
  • Question 25/25
    2 / -0.33

    Consider the following belw mentioned C code:


    int call( ) {
    static int x = 13;
    return x--;
    }
    int main( ) {
    int count = 1;
    for(call( ); call( ); call( ))
    count = count + call();
    printf("%d", count);
    return 0;
    }

    What is the output on the execution of the program?

    Solutions

    Initially count = 0

    Iteration

    Function call

    Value returned by function

    Explanation

    count

    1st iteration:

    for (call( ); call( ); call( ) )

    count  = count  + call( )

    for (13; 12; fun ( ) )

    count = 1 + 11

    → Initialization statement: Optional

    → Conditional statement = 12 and x = 11

    12

    2nd iteration:

    for (call( )call( )call( ))

    count  = count  + call( )

    for (13; 9; 10)

    sum = 12 + 8

    → Incremental statement = 10 and x = 9

    → Conditional statement = 9 and x = 8

    20

    3rd iteration

    for (call( )call( )call( ))

    count  = count  + call( )

    for (13; 6; 7)

    count = 20 + 5

    → Incremental statement = 7 and x = 6

    → Conditional statement = 6 and x = 5

    25

    4th  iteration

    for (call( ); call( )call( ))

    count  = count  + call( )

    for (13; 3; 4)

    count = 25 + 2

    → Incremental statement = 4 and x = 3

    → Conditional statement = 3 and x = 2

    27

    5th iteration

    for (call( ); call( )call( ))

    scount  = count  + call( )

    for (13; 0; 1)

    count statement will not execute

    → Incremental statement = 1 and x = 1

    → Conditional statement = 0 and x = -1

    → Loops conditions is false

    27

     

    Output of the code is 27.

    Important Points:

    Initialization statement is executed only once.

    Incremental statement is executed at the end of every iteration

User Profile
-

Correct (-)

Wrong (-)

Skipped (-)


  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
Get latest Exam Updates
& Study Material Alerts!
No, Thanks
Click on Allow to receive notifications
×
Open Now