Questions

Q:

The term Upari refers to which one of the following?

A) A category of proprietary tenure under the Mughal rule B) A category of tenancy tenure under the Maratha rule
C) A soldier in the Maratha army D) A village headman in the Mughal period.
 
Answer & Explanation Answer: B) A category of tenancy tenure under the Maratha rule

Explanation:

Upari refers to a category of tenancy tenure held under the Maratha Regime.The Government used to assign land to various cultivators for cultivation and getting maximum revenue. The land allotted to original settlers of villages came to be known as Mirasi land whereas the land assigned to the migrant settlers was known as the Upari land.

 

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

0 4265
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 4265
Q:

A cavern is an underground chamber formed by

A) Erosion B) Runoff
C) Deposition D) Evaporation
 
Answer & Explanation Answer: A) Erosion

Explanation:

Caverns are openings in the ground. Some famous caverns in the United States are Mammoth Cave, Carlsbad Caverns, Wind Cave, and Luray Caverns.

 

When rainwater trickles down through the soil, it carries carbon dioxide from the air with it. This turns acidic as it moves through the soil, joining with carbon from decaying plants. This acidic rainwater then eats away at, or erodes, the rock under the ground, forming a cave or cavern. For this process to occur, the rock must be the right type; limestone, dolomite, and gypsum are common.

Report Error

View Answer Report Error Discuss

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

3 4263
Q:

Modem is used mostly for ?

A) A modern empty memory modules B) Connecting to internet
C) Mostly for file system D) All the above
 
Answer & Explanation Answer: B) Connecting to internet

Explanation:

A modem is nothing but short for Modulator and Demodulator. It is used mostly for connecting to the internet.

A modem is a device or program that enables a computer to transmit data over, for example, telephone or cable lines. Computer information is stored digitally, whereas information transmitted over telephone lines is transmitted in the form of analog waves.

 

Report Error

View Answer Report Error Discuss

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

4 4261
Q:

Rabindranath Tagore was awarded Noble Prize for his literary work named

A) Geetanjali B) Rajtarangini
C) Chokher Bali D) None of these
 
Answer & Explanation Answer: A) Geetanjali

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

2 4261
Q:

The Prestigious 'Ramanujan Mathematics Award' at Eighth National Mathematical Convention on January 28, 2014,  was awarded to

A) Mr. Sushanta Kumar B) Mr. Anand Kumar
C) Mr. Vinod Kumar Singh D) None of the above
 
Answer & Explanation Answer: B) Mr. Anand Kumar

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards

5 4261
Q:

Which is the official language of Central Bank of West African Bank

A) French B) Arabic
C) English D) Hindi
 
Answer & Explanation Answer: A) French

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

3 4260
Q:

Math Logic Challenge

18582095_1309614185812349_1823149961450714717_n1499156071.jpg image

A) 23 B) 26
C) 13 D) 29
 
Answer & Explanation Answer: B) 26

Explanation:

Let the integer be x. Then,

 x2-20x = 156

 

(x + 6)(x - 26) = 0

 

x = 26

 

The integer is 26.

Report Error

View Answer Report Error Discuss

Filed Under: Math Puzzles
Exam Prep: GATE , CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk

12 4258