Interview Questions

Q:

An increase in the price of product A will

A) reduce the demand for resources used in the production of A. B) reduce the demand for substitute product B
C) increase the demand for complementary product C. D) increase the demand for substitute product B.
 
Answer & Explanation Answer: D) increase the demand for substitute product B.

Explanation:

If the price of a product rises, the demand for the substitute product increases.

Report Error

View Answer Report Error Discuss

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

0 1664
Q:

Where are cookies actually stored on the hard disk?

Answer

The storage of cookies on the hard disk depends on OS and the browser. The Netscape navigator on Windows, the file cookies.txt contains all the cookies. The path is :


c:\Program Files\Netscape\Users\username\cookies.txt


 


The Internet Explorer stores the cookies on a file by name username@website.txt is


c:\Windows\Cookies\username@Website.txt

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

0 1664
Q:

What are the different modes of operations used in services for Android?

Answer

There are two modes of operations that are necessary to run depending on the value returned by the startcommand(). The modes are as follows:
-  START_STICKY: this mode is used for the services that are explicitly started and stopped according to the need and the requirement of the user.
- START_NOT_STICKY or START_REDELIEVER_INTENT: this service mode is used for services that are running only when the processing command sent to them. That means these run on the basis of the command that is passed to them by giving the instruction of execution.
- Clients uses the Context.bindService() that is used to get the persistent connection for a service. To create a service that is not already running the command onCreate is used.

Report Error

View answer Workspace Report Error Discuss

0 1663
Q:

Which of these is an example of eminent domain?

A) a corporator forces public for sell their lands to him B) a state forces people to sell their fields for building highway
C) Both A & B D) None of the above
 
Answer & Explanation Answer: B) a state forces people to sell their fields for building highway

Explanation:

A legal strategy that allows a government to grab hold of private property for public use is known as eminent domain. The seizing authority must pay fair market value for the property seized.

Report Error

View Answer Report Error Discuss

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

2 1662
Q:

Have you ever had difficulty working with a manager?

Answer

Here are some example statements to consider as you prepare your answer.


1.I have been fortunate to have had awesome managers during my career so far. I have respected each of them  and got along nicely with all of them.


2.No, I am a hard worker, and my managers continually appear to appreciate the job I'm doing. I have got along good with every manager I have had.

Report Error

View answer Workspace Report Error Discuss

Subject: Team Work

1 1658
Q:

Comments are

A) Explain program logic B) Non Executable statements in program
C) Both A & B D) Executable statements in program
 
Answer & Explanation Answer: C) Both A & B

Explanation:

Comments are Non Executable statements in program & Explain program logic.

Report Error

View Answer Report Error Discuss

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

2 1657
Q:

How to create arrays in JavaScript?

Answer

Arrays are created by using new Array() in Java Script.


For example : var employees = new Array();


The elements to this array is assigned as follows :


employees[0] = "Kumar"


employees[1] = "Fedrick"

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

0 1655
Q:

What do you know about Intents?

Answer

- Notification messages to the user from an Android enabled device can be displayed using Intents.


- There are two types of Intents - Explicit Intent, Implicit Intent.


 


Implicit Intent:


- In case of Implicit Intent, an intent is just declared. 


- It is for the platform to find an activity that can respond to it.


- Since the target component is not declared, it is used for activating components of other applications.


 


Explicit Intent


- Explicit intent specifies the particular activity that should respond to the intent. 


- They are used for application internal messages.

Report Error

View answer Workspace Report Error Discuss

0 1654