Interview Questions

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 1691
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 1689
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 1686
Q:

How do you load data from XML file to a ORACLE table?

Answer

You need to first create a table in oracle that matches with the fields of the XML data.


So to get the XMl into the table, you can create a generic procedure that moves an XML document into a table by converting the elements to Oracle Canonical format.


Oracle Canonical format is as follows:


<ROWSET>


   <ROW>  


     <column_name_1 />


     .


     .


     </ROW>


     <ROW>


         <column_name_1 />


         .


         .


      </ROW> 


        .


        .


</ROWSET>        


ROW is used for the table names


ROWSET is used for the XML document


You can get the XML into the canonical form using XSL:


<?xml version="1.0"?>


<xsl:stylesheet 


             xmlns:xsl="https://www.w3.org/1999/XSL/Transform"                   


             version="1.0">


     <xsl:template match="/">


          <ROWSET>


               <ROW>


                         <Attribute_name>                      


                             <xsl:value-of select="Table_name/Attribute_name" />


                         </Attribute_name>


                < /ROW>


          </ROWSET>


     </xsl:template>


</xsl:stylesheet>


To transform the XML document into the canonical form, you can write a procedure. Make sure you include the line below in your procedure code:


v_rows := DBMS_XMLStore.insertXML(


                v_context,    


                XMLType.transform(p_xml_in, p_xsl_in));


The only remaining step is calling your procedure: 


DECLARE


   v_xml XMLType := XMLType( YOUR XML Document );


   v_xsl XMLType := XMLType( YOUR XSL Document );


BEGIN 


   procedure_name(v_xml, v_xsl, 'table_name');


END;

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

0 1686
Q:

Which method is used to draw an image on the canvas?

Answer

drawImage(image,x,y) method is used to draw an image on the canvas.

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

0 1683
Q:

Why Do Organisations Need Creativity?

Answer

Do businesses want employees at every level who develop ideas to solve problems and embrace opportunities?


Yes.


In a range of studies since 2003, The Accenture Institute for High Performance found that the highest performing companies in the world encourage staff at every level to solve problems to make things new and better.


The Ernst & Young Connecting Innovation to Profit report (2010) found that fast-moving, agile companies recognise the importance of creative thinking skills, concluding that “the ability to manage, organise, cultivate and nurture creative thinking is directly linked to growth and achievement."


The IBM Global CEO Survey 2010 interviewed more than 1500 CEO’s from 60 countries and 33 industries, concluding that creativity is the most important leadership trait for the future. They suggested that “more than rigor, management discipline, integrity or even vision – successfully navigating an increasingly complex world will require creativity.”

Report Error

View answer Workspace Report Error Discuss

0 1682
Q:

What relevant qualifications do you have?

Answer



In asking the question, the interviewer is really looking at two components of qualifications. Qualifications received from a school setting and qualifications concerning beyond  experience within the customer service area. This will help in figuring out how appropriate the interviewee is for the position for which they have applied. The  applicants should outline their his/her academic qualifications relevant to the job. After this, they need to point out the experience they have achieved from last jobs. This should be carried out in a way that demonstrates the application of theory to realistic skills, focused on handling real life situations.


 

Report Error

View answer Workspace Report Error Discuss

0 1677
Q:

When referring to student loans, what is a grace period?

Answer

The grace period is in which time period students are not to be worried to repay the loans in that period.

Report Error

View answer Workspace Report Error Discuss

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

0 1676