Questions

Q:

India has ranked _____ rank in World Bank's 'Ease of doing business' index.

A) 100 B) 101
C) 99 D) 102
 
Answer & Explanation Answer: A) 100

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy
Exam Prep: Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

14 3884
Q:

Who Invented Contact Lens ?

A) Joel Houghton B) Ruth Graves Wakefield
C) Adolf Gaston Eugen Fick D) John Stith Pemberton
 
Answer & Explanation Answer: C) Adolf Gaston Eugen Fick

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Inventions

3 3883
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 3883
Q:

In a bisexual flower if androcium and gynoecium mature at different time the phenomeon is known as _________

A) Dichogamy B) Herpogamy
C) Haterogamy monogamy D) None of these
 
Answer & Explanation Answer: A) Dichogamy

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology

10 3882
Q:

The normal blood pressure in human beings is

A) 80/120 B) 120/80
C) 80/110 D) 110/90
 
Answer & Explanation Answer: B) 120/80

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology

8 3881
Q:

During World War II, when did Germany attack France?

A) 1940 B) 1941
C) 1942 D) 1943
 
Answer & Explanation Answer: A) 1940

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

4 3881
Q:

Missing letters puzzle

Answer

Answer: J


Explanation:   Start with the letter J in the top left square, and move clockwise around the other squares. Letters follow the alphabetic sequence, skipping 4 letters at a time. Start with the X in the inner square in the top left, and move clockwise. These inner letters also follow the alphabetic sequence, skipping 5 letters at a time

Report Error

View answer Workspace Report Error Discuss

24 3880
Q:

Which of the following is the primary purpose of the DSM?

A) Understanding the causes of mental disorders B) Placement of mental disorders in appropriate cultural context
C) Diagnosis of mental disorders D) Selection of appropriate psychological therapies for mental disorders
 
Answer & Explanation Answer: C) Diagnosis of mental disorders

Explanation:

The DSM is the Diagnostic and Statistical Manual of Mental Disorders. Its primary pupose is to help the mental health professionals like psychiartists, psycologists, etc... to treat mental illnesses. The DSM is published by the APA, American Psychiatric Association.

The_primary_purpose_of_DSM_is_to1557139899.jpg image

Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk , Analyst

1 3879