Questions

Q:

On 26thNovember, 1949, which of the following provisions of the Constitution of India came into effect?

1.Citizenship

2.Elections

3.Provisional Parliament

4.Fundamental Rights

 

Select the correct answer using the code given below.

A) 2, 3 and 4 B) 1, 2 and 3
C) 1 and 3 only D) 1 and 2 only
 
Answer & Explanation Answer: B) 1, 2 and 3

Explanation:

Some provisions of the Constitution pertaining to citizenship, elections, provisional parliament, temporary and transitional provisions, and short title contained in Articles 5, 6, 7, 8, 9, 60, 324, 366, 367, 379, 380, 388, 391, 392 and 393 came into force on November 26, 1949 itself

Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: Bank Exams

0 2302
Q:

Write a program to generate the Fibonacci series in c?

Answer

 #include<stdio.h>
int main(){
    int k,r;
    long int i=0l,j=1,f;

    //Taking maximum numbers form user
    printf("Enter the number range:");
    scanf("%d",&r);

    printf("FIBONACCI SERIES: ");
    printf("%ld %ld",i,j); //printing firts two values.

    for(k=2;k<r;k++){
         f=i+j;
         i=j;
         j=f;
         printf(" %ld",j);
    }
 
    return 0;
}

Sample output:
Enter the number range: 15
FIBONACCI SERIES: 0 1 1 2 3 5 8 13 21 34 55 89 144 233 377

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2302
Q:

The headquaters of food and agriculture organisation is in

A) Paris B) Rome
C) Madrid D) Washington
 
Answer & Explanation Answer: B) Rome

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

0 2301
Q:

What was established by the Americans, the British and the Canadians at Bretton woods in 1944?

Answer

The International Monetary Fund and the international Bank for Reconstruction and development.

Report Error

View answer Workspace Report Error Discuss

0 2301
Q:

For an object, the state of rest is considered to be the state of ______ speed.

A) increasing B)
C) inverse D) zero
 
Answer & Explanation Answer: D) zero

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

4 2301
Q:

Which state has become the first state to deploy specially-trained dogs to check smuggling of liquor?

A) Bihar B) Uttar Pradesh
C) Telangana D) Maharashtra
 
Answer & Explanation Answer: A) Bihar

Explanation:
Report Error

View Answer Report Error Discuss

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

2 2300
Q:

What is the currency of Japan?

A) yen B) dirham
C) yuan D) None of the above
 
Answer & Explanation Answer: A) yen

Explanation:

The currency of Japan is Japanese yen.

Report Error

View Answer Report Error Discuss

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

1 2300
Q:

What is source route?

Answer

It is a sequence of IP addresses identifying the route a datagram must follow. A source route may optionally be included in an IP datagram header

Report Error

View answer Workspace Report Error Discuss

Subject: Networking
Job Role: Network Engineer

1 2300