Questions

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 3752
Q:

What gets broken without being held?

Answer

Yes, a promise can be broken without being held.

Report Error

View answer Workspace Report Error Discuss

3 3752
Q:

Who was awarded the first Rajiv Gandhi National Sadhavana Award

A) Archarya Tulsi B) J.R.D.Tata
C) Mother Teresa D) R.A.Mashelkar
 
Answer & Explanation Answer: C) Mother Teresa

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards

1 3750
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 3750
Q:

Which of the following is an example of system software?

A) Microsoft word B) Calculator
C) Operating system D) RAM
 
Answer & Explanation Answer: C) Operating system

Explanation:

In a brief, the system software is the interface between the hardware and user applications. System software is a type of computer program that is designed to run a computer’s hardware and application programs.

 

Examples : OS, System utilities, BIOS like mouse, keyboard, hard disc, Device drivers, Assembler,...

Report Error

View Answer Report Error Discuss

4 3750
Q:

Name another word for friend?

A) playfellow B) enemy
C) rival D) foe
 
Answer & Explanation Answer: A) playfellow

Explanation:

Friend is a person with whom one has a bond of mutual affection, typically one exclusive of sexual or family relations.

 

Other names for friend are mate, bosom friend, classmate, buddy, ally,...

Report Error

View Answer Report Error Discuss

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

11 3749
Q:

India has been ranked ___ in terms of competitiveness in the annual rankings compiled by Institute for Management Development.

A) 45th B) 145th
C) 107th D) 56th
 
Answer & Explanation Answer: A) 45th

Explanation:

India has been ranked 45th, down four notches from last year, in terms of competitiveness in the annual rankings compiled by IMD which saw Hong Kong topping the list. US was “pushed out” of the top three slots while Hong Kong consolidated its dominance of the annual rankings for the second year in the list compiled by the International Institute for Management Development’s (IMD) World Competitiveness Center.

Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

14 3748
Q:

If I use the following printf() to print a long int why I am not warned about the type mismatch?

printf ("%d",num );

Answer

When a function accepts a variable number of arguments , its prototype cannot provide any information about the number of arguments and type of those variable arguments. Hence the compiler cannot warn about the mismatches. The programmer must make sure that arguments match or must manually insert explicit typecast.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 3748