Analyst Questions


Q:

What is the difference between creating String as new() and literal ?

Answer

When we create string with new() Operator, it’s created in heap and not added into string pool while String created using literal are created in String pool itself which exists in PermGen area of heap.



String s = new String("Test");

does not put the object in String pool , we need to call String.intern() method which is used to put them into String pool explicitly. its only when you create String object as String literal e.g. String s = "Test" Java automatically put that into String pool.

Report Error

View answer Workspace Report Error Discuss

1 2251
Q:

The greenhouse effect is caused solely by human activity.

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:

True, the greenhouse effect is caused solely by human activities such as deforrestation, depletion of natural resources and emission of CO2 by using vehicles, refrigerators and AC's.

Report Error

View Answer Workspace Report Error Discuss

Subject: General Science
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

1 2250
Q:

The "aha!" experience is known as

A) vicarious learning B) latent learning
C) insight learning D) None of the above
 
Answer & Explanation Answer: C) insight learning

Explanation:

The "aha!" experience is known as insight learning.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: AIEEE , Bank Exams , CAT , GRE , TOEFL
Job Role: Analyst , Bank Clerk , Bank PO

0 2250
Q:

What is the purpose of the sigmoid colon?

Answer

Sigmoid colon or pelvic colon is a curved, S-shaped portion of the large intestine which is closest to the rectum and anus.


sigmoid_colon1532669660.jpg image


* It helps to transports fecal matter from the descending colon to the rectum and anus.


 


* It is the final segment of the colon.

Report Error

View answer Workspace Report Error Discuss

Subject: Biology Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk

1 2248
Q:

One major cause of floods is

A) light rain over a large area B) a decrease in stream discharge
C) rapid spring snowmelt D) increased capacity of stream channels
 
Answer & Explanation Answer: C) rapid spring snowmelt

Explanation:

There are lots of reasons behind the flood in any area but the main reason is a heavy downpour or rapid snowmelt can flood canyons with a mixture of soil, rock, and water is a major cause of floods.

 

When the spring times come, sometimes there's a lot of warmth that suddenly comes, especially nowadays when there are things such as global warming. So the snow melts and large amounts of water can flood the fields that are often found at the foot of a mountain or similar things.

 

But they may also be caused by deforestation, drainage channel modification from a landslide, earthquake or volcanic eruption. Examples include outburst floods and lahars.

 

 

Report Error

View Answer Report Error Discuss

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

1 2248
Q:

Visible light has a higher frequency than

A) Radio waves B) X rays
C) Ultra violet D) All the above
 
Answer & Explanation Answer: A) Radio waves

Explanation:

Radio waves have much longer wavelengths and lower frequencies than do visible light waves. In contrast, X-rays have much shorter wavelengths and higher frequencies. 

Ultraviolet Light (UV). part of the electromagnetic spectrum that consists of waves with frequencies higher than those of visible light and lower than those of x-rays.

Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO , Database Administration , IT Trainer

2 2247
Q:

I have two bodies joined together as one. When standing still. I ran and ran. What am I?

Answer

An Hourglass has two bodies joined together on standing still it ran from one to the other.

Report Error

View answer Workspace Report Error Discuss

Subject: Word Puzzles Exam Prep: TOEFL , GRE , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk , Analyst

1 2246
Q:

The multi part identifier could not be bound is

Answer

One of the most common errors that you might face in join statements is 


 


Server: Msg 4104, Level 16, State 1, Line 1
The multi-part identifier could not be bound.


 


A multipart identifier is any description of a field or table that contains multiple parts - for instance MyTable.SomeRow - if it can't be bound that means there's something wrong with it - either you've got a simple typo, or a confusion between table and column. It can also be caused by using reserved words in your table or field names and not surrounding them with [].


 


The main reason for this error is that the source table cannot be found, for example if you have statement such as Table1.OrderDate, and then if you get error above, this means that Table1 cannot be found in the query. Sometimes you can see that source table exists in the query, but T-SQL cannot understand it, especially when you write join statements.

Report Error

View answer Workspace Report Error Discuss

0 2246