Questions

Q:

What would be the output of the following program, if the array beigns at address 65486?

main()

{

    int arr[] = {12,14,15,23,45};

    printf ("%u %u", arr, &arr);

}

Answer

65486  65486

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2092
Q:

What year was the first Oscar Awards ceremony held?

A) 1945 B) 1929
C) 1931 D) 1954
 
Answer & Explanation Answer: B) 1929

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

4 2092
Q:

How do you differentiate the roles of Quality Assurance Manager and Project Manager?

Answer

Quality Assurance Manager (QA Manager) defines the process to be followed at each phase of SDLC. He defines the standards to be followed, the documents to be maintained and sets the standard for the product.


Where as it is the Project Manager’s responsibility to ensure that the things defined by QA manager are being implemented. He develops the product from start to finish with his team and ensures that the product which is to be rolled out is Defect free and it reaches the standards and views defined by QA Manager.


QA managers can audit the process for certain time periods which are being handled by the Project Manager.

Report Error

View answer Workspace Report Error Discuss

Subject: Software Testing

0 2091
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 2091
Q:

The first Olympiad was held in Greece in the year

Answer

776 BC

Report Error

View answer Workspace Report Error Discuss

Subject: World History

2 2091
Q:

Length of two trains are 150 m and 200 m respectively and the ratio (shorter: longer) of their speed is 2 : 5. If they cross each other in opposite direction in 15 second then in what time faster train will overtake the slower train.

A) 20 seconds B) 25 seconds
C) 32 seconds D) 35 seconds
 
Answer & Explanation Answer: D) 35 seconds

Explanation:

Let speed of slower train = 2x
⇒ speed of faster train = 5x
ATQ, (150 + 200)/(2x + 5x) = 15
x = 10/3
Time required=350/[50/3–20/3]= 35 seconds

Report Error

View Answer Report Error Discuss

0 2091
Q:

Which energy source generates the least greenhouse gases?

A) Fossil fuels energy B) Nuclear energy
C) Solar energy D) All of the above
 
Answer & Explanation Answer: A) Fossil fuels energy

Explanation:

Fossil fuels energy source generates the least greenhouse gases. Of them, i.e, oil, natural gas and coal, natural gas source generates the least greenhouse gases.

Report Error

View Answer Report Error Discuss

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

1 2091
Q:

The term ageism refers to

A) judging people on the basis of chronological age B) the demographics of the population pyramid
C) the veneration of the elderly D) the view of society held by older people
 
Answer & Explanation Answer: A) judging people on the basis of chronological age

Explanation:

The term ageism refers to judging people on the basis of chronological age. It is a discrimination against individuals or groups on the basis of their age.

Report Error

View Answer Report Error Discuss

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

1 2090