Questions

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 2327
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:

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 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:

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

Which country is the largest producer of Rice in the world?

A) Russia B) China
C) Brazil D) India
 
Answer & Explanation Answer: B) China

Explanation:

China is the largest producer of Rice in the world.

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 2326
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 2326
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