Questions

Q:

Customer Perceptions and Business Outcomes help to define what ?

A) Key Performance Indicators (KPI's) B) Service Value
C) Total Cost of Ownership (TCO) D) Governance
 
Answer & Explanation Answer: B) Service Value

Explanation:
Report Error

View Answer Report Error Discuss

6 4092
Q:

A person who is always dissatisfied

A) malcontent B) surrogate
C) heresy D) felon
 
Answer & Explanation Answer: A) malcontent

Explanation:

The one word substitute for "a person who is always dissatisfied" is malcontent.

Report Error

View Answer Report Error Discuss

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

1 4091
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 4091
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 4091
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 4089
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:

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:

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 4088