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
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
2. A piece of icon or image on a web page associated with another webpage is called
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
4. Write an SQL Query to check whether date passed to Query is date of given format or not.
Correct Answer: SQL has IsDate() function which is used to check passed value is date or not of specified format ,it returns 1(true) or 0(false) accordingly SELECT ISDATE('1/08/13') AS "MM/DD/YY"; It will return 0 because passed date is not in correct format
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
9. 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
10. 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.