ISE A

ISE A

University

25 Qs

quiz-placeholder

Similar activities

Algorithm Design

Algorithm Design

University

25 Qs

Quiz Pra UAS Jaringan Komputer - Radian Baratasena

Quiz Pra UAS Jaringan Komputer - Radian Baratasena

University

20 Qs

CW VueJs

CW VueJs

University

20 Qs

SQL_2

SQL_2

University

20 Qs

La sintassi CSS

La sintassi CSS

9th Grade - Professional Development

20 Qs

DBMS Quiz

DBMS Quiz

University

20 Qs

Joins and Set operators

Joins and Set operators

University

20 Qs

105P2 Module 1&2 Review

105P2 Module 1&2 Review

8th Grade - Professional Development

24 Qs

ISE A

ISE A

Assessment

Quiz

Computers

University

Hard

Created by

papani dhanush

Used 8+ times

FREE Resource

25 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

    How is 2nd element in an array accessed based on pointer notation?

*a+2

*(a+2)

*(*a+2)

&(a+2)

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

what will be the output of the following code snippet?

void solve() {

   int a[] = {1, 2, 3, 4, 5};

   int sum = 0;

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

       if(i % 2 == 0) {

           sum += a[i];

       }

   }

   cout << sum << endl;

}

5

15

9

6

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which one of the following is an application of queue data structures

When a resource is shared among multiple consumers

When data is transferred asynchronously

Load balancing

All the above

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

which of the following sorting algorithms provide the best time complexity in the worst case scenario?

Merge sort

Quick sort

Bubble sort

Selection sort

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following are applications of Topological sort of a graph?

sentence ordering

course scheduling

os deadlock detection

all the above

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following represents the Postorder Traversal of a Binary Tree?

Left -> Right -> Root

Left -> Root -> Right

Right -> Left -> Root

Right -> Root -> Left

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the maximum length of the filename in DOS?

15

14

13

12

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?