Questions

Q:

The only Communist Government of Europe which had kept itself free from the influence of Soviet Union is ______

A) Czechoslovakia B) Greece
C) Romania D) Yugoslavia
 
Answer & Explanation Answer: D) Yugoslavia

Explanation:

The Communist Government of Yugoslavia had kept itself free from the Soviet Union almost from the beginning . Yugoslavia was one of the founders of the Non-Aligned Movement. It was a fedaration of 6 republics. In four of these republics, the rule of the communist parties came to an end in 1990. By 1992,Yugoslavia broke up into five independent states-the new states of yugoslavia comprising Serbia and Montenegro, Croatia, Macedonia, Slovenia and Bosnia-Herzegovina.

Report Error

View Answer Report Error Discuss

Filed Under: World History

7 4455
Q:

Which is not a task of a configuration management?

A) Reporting B) Version control
C) Quality control D) Change management
 
Answer & Explanation Answer: C) Quality control

Explanation:
Report Error

View Answer Report Error Discuss

6 4454
Q:

How would you use qsort() function to sort an array of structures?

Answer

#include "string.h"


#include "stdlib.h"


struct stud


{


       int rollno;


       int marks;


       char name[30];


};


int sort_m (struct stud *, struct stud *);


int sort_name (struct stud *, struct stud *);


int sort_marks (struct stud *, struct stud *);


 


main()


{


static struct stud ss[] = {


                                            { 15, 96, "Akshay" },


                                            { 2, 97, "Madhuri" },


                                            { 8, 85, "Aishvarya" },


                                            { 10, 80, "Sushmita" }


                                   };


int x,w;


clrscr();


w = sizeof (struct stud);


 


printf ('\nIn order of roll numbers:");


qsort (ss, 4, w, sort_rn);


for(x=0; x<4;x++)


     printf ("\n%d%s%d", ss[x].rollno, ss[x].name,ss[x].marks);


 


printf("\n\nIn order of names:");


qsort(ss, 4, sort_name);


 


for (x=0; x<4;x++)


      printf("\n%d%s%d",ss[x].rollno, ss[x].name,ss[x].marks);


printf("\n\nIn order of marks:");


qsort(ss,4,w,sort_marks);


 


for (x=0;x<4;x++)


      printf ("\n%d%s%d",ss[x].rollno,ss[x].name,ss[x].marks);


}


int sort_rn (struct stud *t1, struct stud *t2)


{


     return (t1->rollno-t2->rollno);


}


 


int sort_name (struct stud *t1, struct stud *t2)


{


     return (strcmp(t1->name,t2->name));


}


int sort_marks (struct stud *t1, struct stud *t2)


{


     return (t2->marks-t1->marks);


}


 


 


 

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 4454
Q:

World Soil Day is celebrated on ?

A) July 26 B) June 30
C) August 9 D) December 5
 
Answer & Explanation Answer: D) December 5

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Important Days and Years
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

15 4450
Q:

Which planet has the lowest density?

A) Earth B) Jupiter
C) Saturn D) Neptune
 
Answer & Explanation Answer: C) Saturn

Explanation:

Saturn, the solar system's second largest planet that takes the prize for least dense. It's less dense than water, which has led many people to postulate that it would float.

However, even if it somehow found its way to a body of water large and deep enough to contain it, Saturn would break apart and its rocky core would sink.

Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

1 4450
Q:

Niligiri Tahr is the state animal of which of the following states ?

A) Tamil Nadu B) Karnataka
C) Maharashtra D) Kerala
 
Answer & Explanation Answer: A) Tamil Nadu

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Animals and Birds
Exam Prep: Bank Exams , CAT
Job Role: Bank Clerk

20 4449
Q:

Give examples for 8/16/32 bit Microprocessor?

Answer

8-bit processor - 8085/Z80/6800;


16-bit processor - 8086/68000/Z8000;


32-bit processor - 80386/80486

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

2 4448
Q:

How many Nephrons are in each kidney?

A) 10,000 B) 1,00,000
C) 1,000,000 D) 1000
 
Answer & Explanation Answer: C) 1,000,000

Explanation:

There are about 1,000,000 nephrons in each human kidney.

Nephron, functional unit of the kidney, the structure that actually produces urine in the process of removing waste and excess substances from the blood.

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk

2 4448