Questions

Q:

Who is the Indian writer of Mirror Image Shreemadbhagwad Gita?

Answer

Piyush Goel

Report Error

View answer Workspace Report Error Discuss

Subject: Books and Authors Exam Prep: CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk

4 2140
Q:

The longest sea beach in India is

A) Chapora beach B) Diu beach
C) Aksa beach D) Marina beach
 
Answer & Explanation Answer: D) Marina beach

Explanation:
Report Error

View Answer Report Error Discuss

2 2139
Q:

What would be the output of the following program?

main()

{

    static int a[20];

    int i = 0;

    a[i] = i++;

    printf ("\n%d%d%d", a[0],  a[1], i);

}

Answer

0  0  1


That's what some of the compilers would give. But some other compiler may give a different answer. The reason is, when a single expression causes the same object to be modified and then inspected the behaviour is undefined.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2139
Q:

Project Human Resource Management - Processes

Describe the Inputs, Tools and Techniques , Outputs included in the Acquire Project Team?

Answer

I. Inputs



  • Enterprise environmental factors

  • Organizational process assets

  • Roles and responsibilities 

  • Project organization charts

  • Staffing management plan


II. Tools and Techniques



  • Pre-assignment

  • Negotiation

  • Acquisition

  • Virtual teams


III. Outputs



  • Project staff assignments

  • Resource availability

  • Staffing management plan (updates)

Report Error

View answer Workspace Report Error Discuss

0 2139
Q:

What can you expect if you raise your bids?

Answer

More conversions and a higher CPA, in general.

Report Error

View answer Workspace Report Error Discuss

0 2139
Q:

When is world health day observed every year

A) 8th April B) 10th April
C) 7th April D) 9th April
 
Answer & Explanation Answer: C) 7th April

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

2 2139
Q:

The International Commonwealth Championships 2014 was held recently in ______

Answer

Perth

Report Error

View answer Workspace Report Error Discuss

Subject: Sports

2 2139
Q:

What would be the output of the following program assuming that the array beigns at location 1002?

main()

{

   int a[3][4] = {

                            1 , 2 , 3 , 4

                            5,  6 , 7, 8

                            9, 10 , 11, 12

                       };

    Printf ("\n%u %u %u", a[0] + 1, *( a[0] + 1), *( *(a + 0) + 1) );

}

Answer

1004  2  2

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 2138