Questions

Q:

I am a 6 letter word. 2,5,6 used by people to move from one place to another. 4,3,2 is also used by people to move from one place to another. 4,5,2 is the young one of carnivorous animal. If u remve my 1st, 2nd, 3rd and 4th letters its everybody. What am I?

Answer

It is ABACUS.


Words formed are as below 


BUS
CAB
CUB
US

Report Error

View answer Workspace Report Error Discuss

Subject: Logic Puzzles Exam Prep: Bank Exams

28 4089
Q:

National Commission for Backward Classes was set up in 

A) 1991 B) 1992
C) 1993 D) 1994
 
Answer & Explanation Answer: C) 1993

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

6 4089
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 4088
Q:

4 mat-weavers can weave 4 mats in 4 days. At the same rate, how many mats would be woven by 8 mat-weavers in 8 days?

A) 4 B) 8
C) 12 D) 16
 
Answer & Explanation Answer: D) 16

Explanation:

Let the required number of bottles be x.

 

 

 

More weavers, More mats (Direct Proportion)

 

 

 

More days, More mats (Direct Proportion)

 

 

 

Wavers   4:8Days       4:8  :: 4:x

 

 

 

 4 x 4 x x = 8 x 8 x 4

 

 

 

=> x= 8*8*44*4

 

 

 

=>  x = 16.

Report Error

View Answer Report Error Discuss

2 4087
Q:

A Radioactive subatance emits

A) alpha particles B) beta particle
C) gamma particle D) all of the three
 
Answer & Explanation Answer: D) all of the three

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

4 4087
Q:

Which interrupts is not level-sensitive in 8085?

Answer

TST 7.5 is a raising edge-triggering interrupt.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

2 4086
Q:

A........ can operate at high speeds and can support hundreds of users

A) Micro computer B) Mainframe computer
C) Super computer D) Mini computer
 
Answer & Explanation Answer: B) Mainframe computer

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer

21 4086
Q:

Which best describes a tetrad?

A) A diploid cell B) Two gametes
C) Four chromatids D) A haploid cell
 
Answer & Explanation Answer: C) Four chromatids

Explanation:

A tetrad is best described by Four chromatids. It is formed from two homologous chromosomes, each consisting of two chromatids in the first stage of meiosis called prophase1.

 

A_tetrad_is_made_up_of1562827273.jpg image

Report Error

View Answer Report Error Discuss

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

6 4083