Correct Answer: - The merchant submits a credit card transaction to the Payment Gateway on behalf of a customer via secure connection from a Web site, at retail, from a MOTO center or a wireless device - Payment Gateway receives the secure transaction information and passes it via a secure connection to the Merchant Bank?s Processor - The Merchant Bank?s Processor submits the transaction to the Credit Card Interchange (a network of financial entities that communicate to manage the processing, clearing, and settlement of credit card transactions) - The Credit Card Interchange routes the transaction to the customer?s Credit Card Issuer - The Credit Card Issuer approves or declines the transaction based on the customer?s available funds and passes the transaction results, and if approved, the appropriate funds, back through the Credit Card Interchange - The Credit Card Interchange relays the transaction results to the Merchant Bank?s Processor - The Merchant Bank?s Processor relays the transaction results to Payment Gateway - Payment Gateway stores the transaction results and sends them to the customer and/or the merchant This communication process averages three seconds or less - The Credit Card Interchange passes the appropriate funds for the transaction to the Merchant?s Bank, which then deposits funds into the merchant?s bank account The funds are typically deposited into your primary bank account within two to four business days
2. A piece of icon or image on a web page associated with another webpage is called
Correct Answer: Class can have a public method for specific data type conversions for example: class B { double value; public B(int i ) operator double() { return value; } }; B BObject; double i = BObject; // assigning object to variable i of type double now conversion operator gets called to assign the value
4. What are the support tickets given in SAP fico module? please give some examples.
Correct Answer: Support tickets are basically the problems that arise in day to day usage of SAP So any sap fico consultant who is resolving the day to day production issues is actually supporting the tickets
5. How can we display the output directly to the browser?
Correct Answer: %type is used to declare a field of a table while %rowtype is used to declare a record with the same type as specified in that table, view or cursor Example of %type: DECLARE v_EmployeeName empename%TYPE Example of %rowtype DECLARE v_empployee emp%ROWTYPE;
Correct Answer: An Interpreter is a program that reads in as input a source program, along with data for the program, and translates the source program step by step The Java interpreter decodes each lines bytecode and runs a series of machine instructions for that bytecode The JVM takes the byte code and generates machine code The byte code is compiled to machine code, and the machine code is executed
8. Which object is create by UIApplicationMain function at app launch time?
Correct Answer: The app delegate object is created by UIApplicationMain function at app launch time The app delegate object's main job is to handle state transitions within the app
9. What is meaning of following declaration? int(*p[5])();
Options
A. p is pointer to function.
B. p is array of pointer to function.
C. p is pointer to such function which return type is array.
Correct Answer: It is advisable to use container classes of the STL so that you don?t have to go through the pain of writing the entire code for handling collisions, making sure its working well, testing it repeatedly with an overhead of time consumption Suppose you have some data that has values associated with strings and its fields consist of grades> in this situation you can directly use hash table instead of having it created by yourself