Questions

Q:

The main body of the United Nation organization is the 

A) Trusteeship Council B) General Assembly
C) Security Council D) Secretariat
 
Answer & Explanation Answer: B) General Assembly

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

2 2326
Q:

Comprehensive income includes all of the following except

A) expenses B) contributions by owners
C) extraordinary items D) losses
 
Answer & Explanation Answer: B) contributions by owners

Explanation:

Comprehensive income is the sum of net income and other items that must bypass the income statement because they have not been realized, including items like an unrealized holding gain or loss from available for sale securities and foreign currency translation gains or losses.

Report Error

View Answer Report Error Discuss

Filed Under: Finance
Exam Prep: Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

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

Which author published 59 new books in 1955?

A) Mark Twain B) Ernest Hemingway
C) Enid Blyton D) Stephen King
 
Answer & Explanation Answer: C) Enid Blyton

Explanation:

Enid Mary Blyton was the English children's writer published 59 new books in 1955.

which_author_published_59_new_books_in_19551550229919.jpg image

Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

2 2325
Q:

The relationship between quantity supplied and price is

A) Directly proportional B) Inverselyproportional
C) Can't be determined D) None of the above
 
Answer & Explanation Answer: A) Directly proportional

Explanation:

Price and quantity supplied move in the same direction. As the price decreases, quantity supplied also decreases and viceversa.

Report Error

View Answer Report Error Discuss

Filed Under: Marketing and Sales
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

0 2325
Q:

Is international relations essay writing service useful for the academic works

Answer

Many students are always depending on the essay writing services but they do not know which one is more genuine for their works.International relations essay writing service is providing the useful writing guidelines for the students.And also they are providing sample essay for the stdudents. For more information about these services Visit clazwork

Report Error

View answer Workspace Report Error Discuss

3 2325
Q:

Which IIT has launched an exclusive incubator "Fabless Chip Design Incubator"(FabCI) to boost chip design?

A) IIT Kanpur B) IIT Hyderabad
C) IIT Madras D) IIT Mumbai
 
Answer & Explanation Answer: B) IIT Hyderabad

Explanation:

IIT Hyderabad has launched an exclusive incubator "Fabless Chip Design Incubator"(FabCI) to boost chip design.

Report Error

View Answer Report Error Discuss

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

0 2325
Q:

What is 16 bit?

Answer

Anything larger and the computer would need to break the number into smaller pieces.


 


16-bit is a computer hardware device or software program capable of transferring 16 bits of data at a time.


Today, 16-bit hardware and software has been replaced by 32-bit and 64-bit alternatives, which give the computer more memory to work with; increasing overall performance.


 


For example, early computer processors (e.g., 8088 and 80286) were 16-bit processors, meaning they were capable of working with 16-bit binary numbers (decimal number up to 65,535).

Report Error

View answer Workspace Report Error Discuss

2 2325