Questions

Q:

A fixture is defined as a device which

A) is used to check the accuracy of workpiece B) holds and locates a workpiece and guides and controls one or more cutting tools
C) holds and locates a workpiece during an inspection or for a manufacturing operation D) All of the above
 
Answer & Explanation Answer: B) holds and locates a workpiece and guides and controls one or more cutting tools

Explanation:

A_fixture_is_defined_as_a_device_which1551357222.jpg image

A fixture is defined as a device which holds and locates a workpiece and guides and controls one or more cutting tools.

Report Error

View Answer Report Error Discuss

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

1 3486
Q:

In latest generation computers, the instructions are executed

A) Sequentially only B) Parallelly only
C) Both sequentially and parallelly D) None of the above
 
Answer & Explanation Answer: C) Both sequentially and parallelly

Explanation:

In_latest_generation_computers,_the_instructions_are_executed1556257673.jpg image

 

In latest generation computers, the instructions are executed both sequencially and parallelly.

Report Error

View Answer Report Error Discuss

3 3485
Q:

The Union Territories get representation in

A) Lok Sabha B) Rajya Sabha
C) Both A & B D) Supreme Court
 
Answer & Explanation Answer: C) Both A & B

Explanation:

The Union Territories get representation in Both the houses of Parliament i.e, The Lok Sabha and The Rajya Sabha.

Report Error

View Answer Report Error Discuss

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

13 3485
Q:

Which Sultan's reign witnessed as much as half of the produce being charged as revenue from certain provinces?

A) Mohammed bin Tughlaq B) Ghias-ud-din Tughlaq
C) Alauddin Khilji D) Firuz Shah Tughlaq
 
Answer & Explanation Answer: C) Alauddin Khilji

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

1 3485
Q:

How many times the following program would print 'Jamboree'?

main()

{

     printf ( "\nJamboree");

     main ();

}

Answer

Till the stack doesn't overflow

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

2 3485
Q:

Match the following:

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

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

11 3484
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 3483
Q:

Tone, volume and pace are part of

A) Body language B) Spoken language
C) Sign language D) Written language
 
Answer & Explanation Answer: B) Spoken language

Explanation:

Tone, volume and pace are part of Spoken language.

Report Error

View Answer Report Error Discuss

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

3 3483