Questions

Q:

What makes an election democratic?

A) Elections should be held at regular intervals. B) The candidate preferred by the people should get elected.
C) Every citizen should have one vote ad every vote should have an equal value. D) All the above
 
Answer & Explanation Answer: D) All the above

Explanation:

In short, Democracy is a government "of the people, by the people, and for the people."

 

Definition :

Democracy "is government by the people in which the supreme power is vested in the people and exercised directly by them or by their elected agents under a free electoral system." 


The conditions of a democratic election are:

 

* Every citizen should have one vote ad every vote should have an equal value.

* Voters choose from the political parties and candidates should be free to contest elections giving the voters a real choice.

* Elections should be held at regular intervals.

* The candidate preferred by the people should get elected.

* Elections should be conducted in free and fair manner where people can choose as they really wish.

Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

2 4169
Q:

Solids have definite shapes.This is because

A) the forces of cohesion of the molecules within are very much less in them B) the forces of cohesion are very large
C) the forces of adhesion are large D) the forces of adhesion are less
 
Answer & Explanation Answer: B) the forces of cohesion are very large

Explanation:

Cohesion refers to attraction between molecules of the same kind while adhesion refers to attraction between different kinds of molecules

Report Error

View Answer Report Error Discuss

Filed Under: Physics

3 4168
Q:

Who invented Fountain Pen?

A) Sir Frank Whittle B) John J. Loud
C) Kirkpatrick Macmillan D) Lewis E. Waterman
 
Answer & Explanation Answer: D) Lewis E. Waterman

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Inventions

1 4167
Q:

The pair of spinal nerves in main are

A) 30 B) 31
C) 32 D) 33
 
Answer & Explanation Answer: B) 31

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology

12 4165
Q:

Application layer protocol defines

A) message format, syntax and semantics B) rules for when and how processes send and respond to messages
C) types of messages exchanged D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

Application layer protocol defines types of messages exchanged, message format, syntax and semantics and rules for when and how processes send and respond to messages.

Report Error

View Answer Report Error Discuss

Filed Under: Networking
Exam Prep: AIEEE
Job Role: Network Engineer

8 4165
Q:

Number of moles of solute present in 1 litre of solution is

A) Normality B) Molarity
C) Molality D) Formality
 
Answer & Explanation Answer: B) Molarity

Explanation:

Moles of solute present in 1 litre or 1000ml of solution is called molarity

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

5 4165
Q:

The arbor vitae refers to

A) the pleatlike convolutions of the cerebellum B) cerebellar gray matter
C) flocculonodular nodes D) cerebellar white matter
 
Answer & Explanation Answer: D) cerebellar white matter

Explanation:

In the brain cerebellum, the arbor vitae refers to the cerebellar white matter which resembles the structure of arborvitae plant leaves and branches structure.

arbor-vitae1540288058.png image

Report Error

View Answer Report Error Discuss

Filed Under: Biology

4 4163
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 4163