Questions

Q:

How many commands are there in the Indian Navy?

A) 3 B) 4
C) 5 D) 7
 
Answer & Explanation Answer: A) 3

Explanation:

The Indian Navy operates three operational Commands. They are

 

1. Western Naval Command - Mumbai


2. Eastern Naval Command  - Vishakhapatnam


3. Southern Naval Command - Kochi

Report Error

View Answer Report Error Discuss

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

3 2119
Q:

For a certain reaction,DGq = -45 kJ/mol and DHq= -90 kJ/mol at 0°C. What is the minimum temperature at which the reaction will become spontaneous, ifDHq and DSq are independent of temperature?

A) 273 K B) 298 K
C) 546 K D) 596 K
 
Answer & Explanation Answer: C) 546 K

Explanation:

T = 273 °K

Using the formula,

DGq = DHq –TDS

-45 = -90 –273 DS

DS = 0.164

Now since DHq and DSq are independent,T2= DH/DS = 45/0.164 = 273°K

Required Temp = 273 + 273 = 546°K

Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

0 2118
Q:

CAD stands for _____.

A) Common Aided Design B) Computer Aided Design
C) Complex Aided Design D) Communication Aided Design
 
Answer & Explanation Answer: B) Computer Aided Design

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

3 2118
Q:

Name the President of India who was elected unopposed?

A) Dr. Neelam Sanjiva Reddy B) Dr. Zakir Husain
C) Dr. Shankar Dayal Sharma D) Dr. Fakhruddin Ali Ahmed
 
Answer & Explanation Answer: A) Dr. Neelam Sanjiva Reddy

Explanation:

The President of India who was elected unopposed was Dr. Neelam Sanjiva Reddy.

Report Error

View Answer Report Error Discuss

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

1 2118
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 2118
Q:

Explain the concept of the batched operating systems?

Answer

In batched operating system the users gives their jobs to the operator who sorts the programs according to their requirements and executes them. This is time consuming but makes the CPU busy all the time.

Report Error

View answer Workspace Report Error Discuss

1 2118
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 2118
Q:

What has no beginning end or middle?

Answer

Anything which is circular shape has no beginning, no middle or no end. 


The food like donuts have no beginning, end or middle. 

Report Error

View answer Workspace Report Error Discuss

Subject: Word Puzzles Exam Prep: TOEFL , GRE , GATE , CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk , Analyst

2 2118