logo

Crowdly

Browser

Add to Chrome

Programming Courses - Module Promotion - Viva Voce

Looking for Programming Courses - Module Promotion - Viva Voce test answers and solutions? Browse our comprehensive collection of verified answers for Programming Courses - Module Promotion - Viva Voce at lms2.ai.saveetha.in.

Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!

The time complexity of checking whether a stack is empty is:
0%
0%
0%
0%
View this question

What will be the output of the following code?

#include

int main() {

int a = 3, b = 2, c = 1;

if (a < b)

if (b < c)

printf("b < c\n");

else

printf("a < b\n");

return 0;

}

0%
View this question
Queue follows which principle?
0%
0%
0%
0%
View this question
Which of the following pointers is used in a singly linked list?
View this question
Which of the following uses a stack?
0%
0%
0%
0%
View this question

What will be the output of the following code?

#include <stdio.h>

int main() {

    char *str = "Hello";

    str[0] = 'M';

    printf("%s", str);

    return 0;

}

0%
0%
0%
0%
View this question
Which notation is used when the time complexity(Average) is both upper and lower bounded?
0%
50%
0%
View this question
Which of the following is the highest time complexity?
View this question

What is the time complexity of the following nested loop?

for (int i = 0; i < n; i++) {

    for (int j = 0; j < n; j++) {

        printf("%d ", i + j);

    }

}

0%
0%
0%
View this question

What is the default value of the first enum member if not assigned explicitly?

enum Color { RED, GREEN, BLUE };

0%
0%
0%
View this question

Want instant access to all verified answers on lms2.ai.saveetha.in?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome