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 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 2090
Q:

Which determines the frequency of a sound wave?

A) Amplitude B) Speed
C) Source D) Medium
 
Answer & Explanation Answer: A) Amplitude

Explanation:

The frequency of a sound wave is determined by the amplitude of the wave. As amplitude of the wave is high the frequency of the wave will also be high.

Report Error

View Answer Report Error Discuss

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

2 2090
Q:

Select the antonym of
to remand

A) to filibuster B) to tarry
C) to expedite D) to adjourn
 
Answer & Explanation Answer: C) to expedite

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2090
Q:

The sentences given with blanks are to be filled with an appropriate word(s). Four alternatives are suggested for each question. For each question, choose the correct alternative and click the button corresponding to it.

I am _______________this crime.

A) ignorant on B)  innocent of
C) indebted to D) ignoring
 
Answer & Explanation Answer: B)  innocent of

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: TOEFL , GRE , CAT

1 2090
Q:

Which is required for karst topography to form?

A) Limestone B) Sinkholes
C) Both A & B D) Rain
 
Answer & Explanation Answer: C) Both A & B

Explanation:

Karst topography is a landscape formed from the dissolution of soluble rocks such as limestone, dolomite, and gypsum.

Report Error

View Answer Report Error Discuss

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

5 2089
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 2089
Q:

What are the different functions of Scheduler?

Answer

Scheduler deals with the problem of deciding which of the process in the ready queue is to be allocated the CPU. Short Term Schedulers, Long Term Schedulers

Report Error

View answer Workspace Report Error Discuss

1 2089