Questions

Q:

In 2015, a special semi-luxury train covering Jaisalmer, Jodhpur & Jaipur was launched by the IRCTC. What is the name of the train?

A) Rajasthan Darshan B) Rajasthan Queen
C) Desert Circuit D) Desert Queen
 
Answer & Explanation Answer: C) Desert Circuit

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

0 2104
Q:

What is the Currency of Qatar?

A) Riyal B) kwanza
C) Nuevo Sol D) Peso
 
Answer & Explanation Answer: A) Riyal

Explanation:

Currency of Qatar -RiyalCurrency of Angola -kwanzaCurrency of Peru –Nuevo SolCurrency of Philippines –PesoCurrency of Iraq –Dinar

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

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

Covalent bonds are formed when electrons are

A) Transfer of electrons B) Sharing of electrons
C) Dividing of electrons D) All of the above
 
Answer & Explanation Answer: B) Sharing of electrons

Explanation:

Covalent bonding occurs when pairs of electrons are shared by atoms. Atoms will covalently bond with other atoms in order to gain more stability, which is gained by forming a full electron shell. By sharing their outer most (valence) electrons, atoms can fill up their outer electron shell and gain stability.

 

Examples of compounds with covalent bonds ::

HCl, CO2, O2,... 

Report Error

View Answer Report Error Discuss

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

2 2104
Q:

India has longest international border with which country?

A) Bhutan B) Nepal
C) Bangladesh D) Pakistan
 
Answer & Explanation Answer: C) Bangladesh

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

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

What are the minimal cost and minimal risk solution?

Answer

In binary representation there are some states that believed to be never occurred due to some particular functionality of a given circuit. If zero output is assigned to such states then it is called minimal risk solution as  we are resetting the formidable states which could be occurred accidentally. Another approach is to assigned a don't care to them so it results in lesser logic and hence is called minimal cost solution.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2103
Q:

Who invented ECG?

A) Hans Berger B) Einthoven
C) G. Bist D) None of the above
 
Answer & Explanation Answer: B) Einthoven

Explanation:
Report Error

View Answer Report Error Discuss

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

4 2103