Questions

Q:

Myanmar is located in _____________.

 

A) South Asia B) South-east Asia
C) East Asia D) South-west Asia
 
Answer & Explanation Answer: B) South-east Asia

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

0 3336
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 3335
Q:

What has triggered the need for multitasking in PCs?

Answer

1. Increased speed and memory capacity of microprocessors together with the support for virtual memory and


2. Growth of client server computing

Report Error

View answer Workspace Report Error Discuss

1 3335
Q:

Entrepreneurship as a theory of business was propounded by

A) Thomas A. Coleman B) Joseph A. Schumpeter
C) Adam Smith D) Douglas McGregor
 
Answer & Explanation Answer: B) Joseph A. Schumpeter

Explanation:

Entrepreneurship as a theory of business was propounded by Joseph. A. Schumpeter.

 

Schumpeter’s Innovation Theory of Profit :


Definition:  The Innovation Theory of Profit was proposed by Joseph. A. Schumpeter, who believed that an entrepreneur can earn economic profits by introducing successful innovations.

Report Error

View Answer Report Error Discuss

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

6 3334
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 3333
Q:

Which among the following are the components of windows registry?

A) Keys B) SubKeys
C) Values D) All the above
 
Answer & Explanation Answer: D) All the above

Explanation:

All the above listed are the components of Windows registry

Report Error

View Answer Report Error Discuss

Filed Under: Operating Systems

0 3333
Q:

Rearrange the parts of the sentence in correct order

Aggregate levels of under nutrition in India

P-remain shockingly high, despite the impressive
Q-stunting in the last decade
R-reduction in

A) PRQ B) QPR
C) RPQ D) QRP
 
Answer & Explanation Answer: A) PRQ

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

1 3333
Q:

Match the characteristics with their market structure:

(a) Differentiated products, but close substitutes for consumers so their demand curves are elastic.
(b) Firm will tend to set output so that it earns maximum profits.

A) (a) Pure competition, (b) Pure Monopoly B) (a) Monopolistic competition, (b) Oligopoly
C) (a) Oligopoly, (b) Pure Monopoly D) (a) Monopolistic competition, (b) Pure Monopoly
 
Answer & Explanation Answer: D) (a) Monopolistic competition, (b) Pure Monopoly

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy
Exam Prep: Bank Exams

1 3332