Questions

Q:

A spreadsheet contains

A) Rows B) Columns
C) Both A & B D) Tables
 
Answer & Explanation Answer: C) Both A & B

Explanation:

A_spreadsheet_contains1553603758.png image

 

A spreadsheet contains both rows and columns.

Report Error

View Answer Report Error Discuss

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

5 9002
Q:

Which of these is not a means of personal communication on the internet  ?

A) Instant messaging B) Chat
C) Electronic mail D) Instanotes
 
Answer & Explanation Answer: D) Instanotes

Explanation:
Report Error

View Answer Report Error Discuss

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

24 8997
Q:

Shyam Walked 6 metres facing towards East, then took a right turn and walked a distance of 9 metres.He then took a left turn and walked a distance of a metres. How far is he from the starting point?

A) 15 metres B) 21 metres
C) 18 metres D) Cannot be determined
 
Answer & Explanation Answer: A) 15 metres

Explanation:

 983115133311311553600957.png image

As clear from the diagram, AD2=122+92=152

 So, AD = 15

Report Error

View Answer Report Error Discuss

Filed Under: Verbal Reasoning - Mental Ability
Exam Prep: Bank Exams
Job Role: Bank PO

18 8988
Q:

An objective of the National Food Security Mission is to increase the production of certain crops through area expansion and productivity enhancement in a sustainable manner in the identified districts of the country. What are those crops?

A) Rice and Wheat only B) Rice, Wheat and pulses only
C) Rice, Wheat, Pulses and oil seeds only D) Rice, Wheat, Pulses, oil seeds and vegetables
 
Answer & Explanation Answer: B) Rice, Wheat and pulses only

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

8 8984
Q:

Safdar Hashmi is a name associated with

A) Drawing and Painting B) Journalism
C) Instrumental Music D) None of these
 
Answer & Explanation Answer: D) None of these

Explanation:

Correct Answer : Safdar Hashmi is a name associated with Drama

Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities

21 8968
Q:

How have you influenced employees to follow your strategic vision for the organization?

Answer

Tips :


Leaders develop ownership by involving employees in the decision-making and planning process. They provide resources to facilitate employee success and empower employees by devolving authority to get things done efficiently. Effective leaders develop processes that engage employees in achieving the strategic vision. 

Report Error

View answer Workspace Report Error Discuss

10 8967
Q:

What is Flow control?

Answer

Flow control, also called optimized production technology, focuses on the efficient flow of material through the production process. The philosophy of flow control focuses on bottlenecks. For example, an owner using flow control will not buy a machine capable of 1,000 units an hour if supply 500 units. Examine systems and determine where lowest flow is experienced, then address that point and make sure it operates at full capacity. Flow control applies well where maximum productivity is required.

Report Error

View answer Workspace Report Error Discuss

Subject: Manufacturing

7 8963
Q:

What would be the output of the following program?

main()

{

    extern int fun ( float );

    int a;

    a = fun ( 3. 14 );

    printf ("%d", a);

}

int fun ( aa )

float aa ;

{

     return ( (int) aa );

}

Answer

Error occurs because we have mixed the ANSI prototype with K & R style of function definition.


When we use ANSI prototype for a function and pass a float to the function it is promoted to a double. When the function accepts this double into a float a type mismatch occurs hence the error.


The remedy for this error could be to define the function as :


int fun (float aa)


{


  ....


}

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

9 8961