Questions

Q:

Arrange the following words as per order in the dictionary

1. Diffident

2. Difficult

3.Different

4.Diffidence

A) 1,2,3,4 B) 3,2,4,1
C) 2,1,3,4 D) 3,2,1,4
 
Answer & Explanation Answer: D) 3,2,1,4

Explanation:
Report Error

View Answer Report Error Discuss

0 3354
Q:

How would you check whether the contents of two structure variables are same or not?

Answer

struct emp


{


     char n[20];


      int age;


};


main()


{


    struct emp e1 = {"Dravid", 23};


   struct emp e2;


   scanf ("%s %d",e2.n, & e2.age);


   if( structcmp (e1,e2) ==0)


        printf ("The structures are equal");


   else


         printf ("The structures are unequal");


}


structcmp ( struct emp x, struct emp y)


{


     if (strcmp (x.n,y.n) ==0)


           if (x.age == y.age)


            return (0);


            return (1);


}


In short, if you nee to compare two structures, you'll have to write your own function to do so which carries out the comparison field by field.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 3353
Q:

Select the synonym of

 

hypnotist

 

A) rookie B) novice
C) conjurer D) amateur
 
Answer & Explanation Answer: C) conjurer

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 3353
Q:

What goes up and down the stairs without moving?

A) Umbrella B) Lift
C) Stairs D) All the above
 
Answer & Explanation Answer: C) Stairs

Explanation:

Those are stairs which goes up and down without moving.

Report Error

View Answer Report Error Discuss

4 3352
Q:

Which team became the first team in history to win 100 T20 matches  ?

A) Sunrisers Hyderabad B) Bangalore Royal Challengers
C) Kolkata Knight Riders D) Mumbai Indians
 
Answer & Explanation Answer: D) Mumbai Indians

Explanation:

Two times IPL champions Mumbai Indians (MI) reached a new milestone as they became the first team in history to win 100 T20 matches. The Mumbai outfit defeated Kolkata Knight Riders (KKR) at the Eden Gardens by 9 runs in their final match of the league stage of IPL 2017.

Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams , CAT , GATE
Job Role: Bank Clerk , Bank PO

12 3351
Q:

In the below puzzle, there are 2 double blanks. Fill in the blanks with the same pair of letters to complete an English word. For example, use the letter-pair ac in b__kp__k to make the word backpack

v _ _ lat _ _ n

Answer

violation

Report Error

View answer Workspace Report Error Discuss

Subject: Word Puzzles

16 3351
Q:

Pick out the only vector quantity

A) pressure B) impulse
C) gravitational potential D) co-efficient of friction
 
Answer & Explanation Answer: B) impulse

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics

5 3349
Q:

What has a foot but no legs?

Answer

A measuring device.


 


Measuring devices have feet on them to measure distance.

Report Error

View answer Workspace Report Error Discuss

5 3348