WorksheetsIntro Quiz
Total questions: 10
Worksheet time: 7mins
Which sorting algorithm is most efficient?
Bubble sort
Quicksort
Merge sort
Insertion sort
Choose the correct output:
23
43
Error
None
Which data structure resembles the movement of persons moving into a ticket counter and coming out?
Queue
Stack
Linked list
None
Choose the option which is not a Data Structure.
Arrays
Queue
Singly linked list
Quick list
Choose the correct option:
Program will terminate
Program will not terminate
Choose the wrong string concatenation:
string = " DSC " + " KLETech ";
string = " DSC" + " " + "KLETech ";
string1 = " DSC ";
string2 = " KLETech";
string = [ string1 ] + [ string2];
Choose the correct Size of Datatype
char 2 bytes
int 4 bits
char 2 bits
int 4 bytes
Which of these is not a valid tag in HTML
<head></head>
<a></a>
<p></p>
<body></body>
How many levels of headings are defined in HTML?
h1, h2, ....... hn
n = 5
n = 6
n = 8
n = 7
Which tag do we use to insert a link in HTML?
<a>
<h>
<hyperlink>
<linker>
