Interview Questions

Q:

The income and substitution effects account for

A) the upward sloping curve B) the downward sloping curve
C) Both A & B D) None of the above
 
Answer & Explanation Answer: B) the downward sloping curve

Explanation:
Report Error

View Answer Report Error Discuss

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

1 1452
Q:

What are the rules in CSS ruleset?

Answer

CSS consists of two types of CSS rules, first is for ruleset which identifies the style and the selector. It combines the style and the selector. Ruleset is a combination of CSS rules, for example: h1{text-color: 15pt;}, where this is the CSS rule. Ruleset is selector + declaration for example: h1 + {text-color: 15pt;}

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

0 1452
Q:

What is SAP?

Answer

SAP is the name of the company founded in 1972 under the German name (Systems, Applications, and Products in Data Processing) is the leading ERP (Enterprise Resource Planning) software package.

Report Error

View answer Workspace Report Error Discuss

Subject: SAP

0 1451
Q:

24/7 operations are like relay races where you take the baton, run with it and then pass it on smoothly. How do you make seamless transitions on shift changes?

Answer

Sample Answers :


(i) Be prepared for the incoming crew. Ensure the ambulance is clean and fully stocked. Arrive early so that shift changes can take place on time, still leaving you enough time to check the ambulance and be ready to go if you get a call.


(ii) Show up a little early for your shift for rig check and to receive any information from outgoing crew. When you are the outgoing crew,leave rig in a better state than you found it. Communicate with incoming/outgoing crew allowing a smooth transition.

Report Error

View answer Workspace Report Error Discuss

0 1449
Q:

In a class if private data member is declared then how to set data to that private data member?

Answer

By using method.


The method used to set the data is called setter method.

Report Error

View answer Workspace Report Error Discuss

Subject: Java

0 1449
Q:

What is BDC programming?

Answer

Transferring of large/external/legacy data into SAP system using Batch Input programming. Batch input is a automatic procedure referred to as BDC(Batch Data Communications). The central component of the transfer is a queue file which receives the data vie a batch input programs and groups associated data into “sessions”.

Report Error

View answer Workspace Report Error Discuss

Subject: SAP

0 1449
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 1449
Q:

What would be the most important service skill that you would need to have in your day to day business?

Answer



1.Patience:If you deal with clients on a daily basis, be certain to stay patient when they come to you confused and frustrated, but also be clear to take the time to truly find out what they need — they'd rather get good service than be rushed out the door!


2. Attentiveness: The capacity to surely listen to customers is so crucial for presenting extremely good service for a number of reasons.


3.Communication Skills: When it comes to crucial points that you want to relay clearly to customers, keep it easy and leave not anything to doubt.


4.Knowledge of the Product: Not knowing your product from front-to-back, you might not know how to solve customer issues when they run into problems.


5.Willingness to Learn: Those who don't show to enhance skills what they do, whether it's helping customers, marketing businesses, or building products, will get left behind by the people willing to put money into their skills.


6.Ability to Use "Positive Language":


    Without positive language: "I cannot get you that product until next month; it is back-ordered and unavailable presently."


    With positive language: "That brand will be available coming month. I can place the order for you immediately and make sure that it is posted to you as soon as it reaches our war


 


 

Report Error

View answer Workspace Report Error Discuss

0 1448