Technical Assessment

Technical Assessment

University

20 Qs

quiz-placeholder

Similar activities

Fundamentals of Algorithms - Unit 1 - Test 1

Fundamentals of Algorithms - Unit 1 - Test 1

University

15 Qs

DAA QUIZ-1

DAA QUIZ-1

University

19 Qs

Sorting algorithms I

Sorting algorithms I

University

21 Qs

Searching and Sorting

Searching and Sorting

University - Professional Development

15 Qs

Array Addresses 2024

Array Addresses 2024

University

20 Qs

Algo Duel

Algo Duel

University

20 Qs

Playing with C

Playing with C

University

20 Qs

Sorting and Searching Algorithms Quiz - Batch 1

Sorting and Searching Algorithms Quiz - Batch 1

University

20 Qs

Technical Assessment

Technical Assessment

Assessment

Quiz

Computers

University

Hard

Created by

Nithya Reddy

Used 3+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

What sorting algorithm is this?

Bubble Sort

Insertion Sort

Selection Sort

None of the above

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

The following lists represent 3 passes of a sorting algorithm. Which algorithm is being used to sort the list?
 
4    8    3    9    2    6 
2    8    3    9    4    6
2    3    8    9    4    6
Bubble Sort
Selection Sort
Insertion Sort

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Predict the output of following program?

#include <stdio.h>

//Assume base address of “TechnoBoom” to be 1000

int main()

{

printf(6+ “TechnoBoom”);

return 0;

}

TechnoBoom

1006

Boom

Compile-time error

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Predict the output of the following code

//filename Test.java

class Test{

public static void main(String[] args){

for(int i=0;1;i++){

System.out.print("TechnoBoom");

break;

}

}

}

TechnoBoom

Compile time error

T

None of these

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image
Which type of sort algorithm is this?
Bubble
Merge
Insertion

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

The time complexity of heap sort in worst case is

a) O(logn)

b) O(n)

c) O(nlogn)

d) O(n2)

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

What sorting algorithm is this?

Merge Sort

Heap Sort

Quicksort

Bubble Sort

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?