HARD
HSSC Clerk
IMPORTANT
Earn 100

Which of the following is not the type of queue?

50% studentsanswered this correctly

Important Questions on Data Structures

HARD
HSSC Clerk
IMPORTANT

State true or false:

I. A node is a parent if it has successor nodes.

II. A node is child node if out degree is one.

HARD
HSSC Clerk
IMPORTANT
Which of the following data structure store the homogeneous data elements?
HARD
HSSC Clerk
IMPORTANT
Operations on a data structure may be _____.
HARD
HSSC Clerk
IMPORTANT
What is the time complexity of linear search algorithm over an array of n elements?
HARD
HSSC Clerk
IMPORTANT
The results returned by functions under value result and reference parameter passing conventions _____.
HARD
HSSC Clerk
IMPORTANT

The following C declarations

struct node {
int i ;
float j;
};
struct node *s [10];

define s to be:

HARD
HSSC Clerk
IMPORTANT
A sort which compares adjacent elements in a list and switches where necessary is a _____.
HARD
HSSC Clerk
IMPORTANT
Recursive procedures are implemented by _____.