Questions

Q:

Who wins The World's Best Playmaker of the year 2016 ?

A) Lionel Messi B) Toni Kroos
C) Riyad Mahrez D) Andres Iniesta
 
Answer & Explanation Answer: A) Lionel Messi

Explanation:

Argentine Star Lionel Messi was chosen as the World’s Best Playmaker for the year 2016 on December 29, 2016, by the International Federation of Football History and Statistics (IFFHS). Messi topped the list with 172 points followed by Andres Iniesta at second spot with 66 points and Toni Kross third with 45 points.

Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

8 3889
Q:

Sometimes project managers forget all of the expenses that they can incur on a project, such as capital resources and assets. This can have an impact upon their budgets and the economic return on the project. A cost that has been incurred and cannot be reversed is known as a 

A) Fixed Cost B) Direct Cost
C) Variable Cost D) Sunk Cost
 
Answer & Explanation Answer: D) Sunk Cost

Explanation:

Answer D is correct because a sunk cost is a project expense that will eventualy need to be paid. Answer A is incorrect because a fixed cost remains constant, regardless of any change in a company's activity. Answer B is incorrect because direct cost can be directly linked to producing specific goods or services. Answer C is incorrect because a variable cost changes in proportion to a change in the company's activity or business.

Report Error

View Answer Report Error Discuss

Filed Under: PMP Certification

0 3888
Q:

The artificial kidney is a

A) transplant B) machine
C) another's kidney D) other kidney from same body
 
Answer & Explanation Answer: B) machine

Explanation:

The artificial kidney is the dialysis machine. Blood from the body is fed into the machine which removes nitrogenous wastes like urea and returns the blood back to the body.People with renal failure have to use this machine.

Report Error

View Answer Report Error Discuss

Filed Under: Biology

11 3888
Q:

IUPAC full form

A) Indian Union of Pure and Applied Chemistry B) International Union of Postal and Application Corporation
C) International Union of Pure and Applied Chemistry D) International University of Poland And Combodia
 
Answer & Explanation Answer: C) International Union of Pure and Applied Chemistry

Explanation:

IUPAC stands for International Union of Pure and Applied Chemistry.

 

A chemical nomenclature is a set of rules to generate systematic names for chemical compounds. The nomenclature used most frequently worldwide is the one created and developed by the International Union of Pure and Applied Chemistry (IUPAC).

Report Error

View Answer Report Error Discuss

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

5 3887
Q:

Okhla Bird Sanctuary is located in

A) Rajasthan B) West Bengal
C) Maharashtra D) Uttar Pradesh
 
Answer & Explanation Answer: D) Uttar Pradesh

Explanation:

Okhla Bird Sanctuary is located in Uttar Pradesh.

Okhla Bird Sanctuary is a bird sanctuary at the Okhla barrage over Yamuna River. It is situated in Noida, Gautam Buddh Nagar district, on Delhi-Uttar Pradesh state border and known as a haven for over 300 bird species.

Report Error

View Answer Report Error Discuss

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

10 3887
Q:

 A distributed database can use which of the following strategies?

A) Totally centralized one location and accessed by many sites B) Partially or totally replicated across sites
C) Partitioned into segments at different sites D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Database

0 3885
Q:

In the following question, select the related letter/letters from the given alternatives.

GHJ : JKM : : NOQ : ?

A) QRT B) PQS
C) RST D) OPR
 
Answer & Explanation Answer: A) QRT

Explanation:
Report Error

View Answer Report Error Discuss

0 3884
Q:

How would you use qsort() function to sort an array of structures?

Answer

#include "string.h"


#include "stdlib.h"


struct stud


{


       int rollno;


       int marks;


       char name[30];


};


int sort_m (struct stud *, struct stud *);


int sort_name (struct stud *, struct stud *);


int sort_marks (struct stud *, struct stud *);


 


main()


{


static struct stud ss[] = {


                                            { 15, 96, "Akshay" },


                                            { 2, 97, "Madhuri" },


                                            { 8, 85, "Aishvarya" },


                                            { 10, 80, "Sushmita" }


                                   };


int x,w;


clrscr();


w = sizeof (struct stud);


 


printf ('\nIn order of roll numbers:");


qsort (ss, 4, w, sort_rn);


for(x=0; x<4;x++)


     printf ("\n%d%s%d", ss[x].rollno, ss[x].name,ss[x].marks);


 


printf("\n\nIn order of names:");


qsort(ss, 4, sort_name);


 


for (x=0; x<4;x++)


      printf("\n%d%s%d",ss[x].rollno, ss[x].name,ss[x].marks);


printf("\n\nIn order of marks:");


qsort(ss,4,w,sort_marks);


 


for (x=0;x<4;x++)


      printf ("\n%d%s%d",ss[x].rollno,ss[x].name,ss[x].marks);


}


int sort_rn (struct stud *t1, struct stud *t2)


{


     return (t1->rollno-t2->rollno);


}


 


int sort_name (struct stud *t1, struct stud *t2)


{


     return (strcmp(t1->name,t2->name));


}


int sort_marks (struct stud *t1, struct stud *t2)


{


     return (t2->marks-t1->marks);


}


 


 


 

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 3883