MEDIUM
HSSC Clerk
IMPORTANT
Earn 100

The action of parsing the source program into the proper syntactic classes is known as:

50% studentsanswered this correctly

Important Questions on Practice Sets

EASY
HSSC Clerk
IMPORTANT
Crimes in the software industry are in comparison to those of the general category _____.
MEDIUM
HSSC Clerk
IMPORTANT
A software development technique where project management needs are addressed first and artificial approach to development is adopted is _____.
HARD
HSSC Clerk
IMPORTANT
Boyce Codd Normal Form (BCNF) is needed when:
MEDIUM
HSSC Clerk
IMPORTANT
The maximum number of nodes on level i of a binary tree is:
HARD
HSSC Clerk
IMPORTANT
While configuring NAT you can use the _____ command that defines an IP NAT pool for inside network.
MEDIUM
HSSC Clerk
IMPORTANT

What is the output of the following program segment
main(){
float a, b, c, X, Y, Z;

a=9; b=12; c=3;

X=a- b/3 + c * 2 - 1;

Y=a- b/3+c * 2 - 1;

Z=a-b/3+c * 2- 1;

printf "X=%f\nY=%f\nZ=%f",X,Y,Z;
}

HARD
HSSC Clerk
IMPORTANT
The major drawback of the B-Tree is the difficulty of traversing the keys sequentially. The _____ tree retains the rapid random access property of the B-tree while allowing rapid sequential access.