Questions

Q:

In each of the following question, find out which part has an error. Mohan is one of those boys

A) / who has expressed B) / willingness for joining
C) / the educational tour. D) No error
 
Answer & Explanation Answer: A) / who has expressed

Explanation:

‘has’ should be replaced with ‘have’.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2129
Q:

How would you find the length of each string in the following Program?

main()

{

    char *str[] = { "Frogs", "Do", "Not" , "Die" , "They" , "Croak!"};

    printf ("%d%d", sizeof (str), sizeof (str[0]));

}

Answer

main()


{


   char *str[] = { "Frogs", "Do", "Not", "Die." , "They", "Croak!" };


   int i;


         for ( i = 0;i<=5;i++)


         printf ("\n%s%d", str[i], strlen( str[i]));


}

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 2129
Q:

Project Human Resource Management - Processes

Describe the Inputs, Tools and Techniques , Outputs included in the Human Resource Planning?

Answer

I. Inputs



  • Enterprise Environmental factors

  • Organizational process assets

  • Project management plan


                  - Activity resource requirements


II. Tools and Techniques



  • Organization charts and position descriptions 

  • Networking

  • Organizational theory


III. Outputs



  • Roles and responsibilities

  • Project organization charts

  • Staffing management plan

Report Error

View answer Workspace Report Error Discuss

0 2129
Q:

Most stars are at what point in their life cycles?

A) Supernova B) Protostar
C) Red Giant D) Main Sequence
 
Answer & Explanation Answer: D) Main Sequence

Explanation:

most_stars_are_at_what_point_in_their_life_cycles1560330646.jpg image

Most stars are at main sequence point in their life cycles.

Report Error

View Answer Report Error Discuss

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

2 2129
Q:

Indian city that has been chosen by the UN for the Global Continuing City-2025 Program?

A) Hyderabad B) Delhi
C) Bangaluru D) Noida
 
Answer & Explanation Answer: D) Noida

Explanation:

Noida city of India has recently been chosen by the UN for the Global Continuing City-2025 Program.

Report Error

View Answer Report Error Discuss

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

0 2128
Q:

Common styles of leadership include

A) Autocratic leadership B) Transactional leadership
C) Democratic leadership D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

There are 9 common styles of leadership. They are:

 

Transformational leadership

Transactional leadership

Servant leadership

Autocratic leadership

Laissez-faire leadership

Democratic leadership

Bureaucratic leadership

Charismatic leadership.

Report Error

View Answer Report Error Discuss

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

2 2128
Q:

Improve the bracketed part of the sentence.
The stranded pilgrims (had waited) in the bitter cold for more than two hours now.

A) has been waiting B) have been waiting
C) have waited D) no improvement
 
Answer & Explanation Answer: B) have been waiting

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2128
Q:

In the following code in which order the functions would be called?

a = ( f1 ( 23,14 ) * f2 ( 12/4) ) + f3() ;

Answer

The order may vary from compiler to compiler.


Here the multiplication will happen before the addition , but in which order the functions would be called is undefined. In an arithmetic expression the parentheses tell the compiler which operands go with which operators but do not force the compiler to evaluate everything within the parentheses first.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2128