Questions

Q:

What would be the output of the following program?

main()

{

    char a[] = "Visual C++";

    char *b = "Visual C++";

    printf ("\n%d %d", sizeof (a), sizeof (b));

    printf ("\n%d %d", sizeof (*a), sizeof (*b));

Answer

11  2


 1   1

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 2018
Q:

The thyroid hormone that regulates carbohydrate metabolism is

A) Parathyroid B) Thyroxin
C) Parathormone D) Estrogen
 
Answer & Explanation Answer: B) Thyroxin

Explanation:

Thyroxin or Thyroxine is the thyroid hormone that regulates carbohydrate metabolism in the human body.

Report Error

View Answer Report Error Discuss

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

1 2018
Q:

Which nation plans to build the first city on Mars by 2117 ?

A) India B) United Arab Emirates
C) China D) Russia
 
Answer & Explanation Answer: B) United Arab Emirates

Explanation:

The President and Vice-President of United Arab Emirates Sheik Mohamed bin Zayed Al Nahyan and Shaik Mohammed bin Rashid Al Maktoum announced in Febraury 2017 that they are planning to build the first inhabitable human settlement on Mars by 2117.

Report Error

View Answer Report Error Discuss

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

8 2017
Q:

Who appointed as new president of the Film & TV Institute of India (FTII) Society?

A) Brijendra Pal Singh B) Manohar Raje
C) Naini Singh D) None of the above
 
Answer & Explanation Answer: A) Brijendra Pal Singh

Explanation:
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 2016
Q:

C program to find whether a number is palindrome or not.

Answer

 #include<stdio.h>
int main(){
    int num,r,sum=0,temp;

    printf("Enter a number: ");
    scanf("%d",&num);

    temp=num;
    while(num){
         r=num%10;
         num=num/10;
         sum=sum*10+r;
    }
    if(temp==sum)
         printf("%d is a palindrome",temp);
    else
         printf("%d is not a palindrome",temp);

    return 0;
}

Sample output:
Enter a number: 131
131 is a palindrome

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 2016
Q:

The First battle of which war was the Battle of Alma?

A) Creek war B) Crimean war
C) Korean war D) Chinese war
 
Answer & Explanation Answer: B) Crimean war

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World History

2 2016
Q:

Project Scope Management

What are the Project Management Processes included in the Project Scope Management?

Answer

Scope Planning - Creating a project scope management plan that documents how the project scope will be defined,verified, controlled, and how the work breakdown structure (WBS) will be created and defined.


Scope Definition - Developing a detailed project scope statement as the basis for future project decisions.


Create WBS - Subdividing the major project deliverables and project work into smaller, more manageable components


Scope Verification - Formalizing acceptance of the completed project deliverables.


Scope Control - Controlling changes to the project scope.

Report Error

View answer Workspace Report Error Discuss

0 2015
Q:

Which of the following cities, is also known as the City of Festivals?

A) Madurai B) Varanasi
C) Puri D) Odisha
 
Answer & Explanation Answer: A) Madurai

Explanation:
Report Error

View Answer Report Error Discuss

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

2 2015