Questions

Q:

The IMBEX 2018-19 started between India and which country?

A) Afghanistan B) Myanmar
C) China D) Nepal
 
Answer & Explanation Answer: B) Myanmar

Explanation:
Report Error

View Answer Report Error Discuss

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

2 2089
Q:

Which state became 1st to launch a pan-India single emergency no. 112?

A) Haryana B) Himachal Pradesh
C) Madhya Pradesh D) Uttar Pradesh
 
Answer & Explanation Answer: B) Himachal Pradesh

Explanation:

Himachal Pradesh state became 1st to launch a pan-India single emergency no. 112 where all kinds of immediate help can be sought in urgent matters.

 

Under this project, an Emergency Response Centre (ERC) has been established in Shimla along with 12 district command centres (DCCs), covering the entire state. The ERC has been integrated with police (100), fire (101), health (108) and women (1090) helpline numbers to provide emergency services through the emergency number '112'.

Report Error

View Answer Report Error Discuss

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

1 2089
Q:

Credit of developing polio vaccine goes to

A) J.L. Baird B) Selman Waksman
C) Both A & B D) Jones Salk
 
Answer & Explanation Answer: D) Jones Salk

Explanation:
Report Error

View Answer Report Error Discuss

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

2 2088
Q:

Four words are given, out of which only one word is spelt correctly. Choose the correctly spelt word and click the button corresponding to it.

A) Immense B) Imense
C) Immiense D) Imminse
 
Answer & Explanation Answer: A) Immense

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2088
Q:

Which tribe of Arunachal Pradesh is celebrating Boori Boot Yollo Festival?

A) Gond B) Bhil
C) Santhals D) Nyishi
 
Answer & Explanation Answer: D) Nyishi

Explanation:
Report Error

View Answer Report Error Discuss

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

11 2088
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 2088
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 2088
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 2087