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. 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: Intelligent Search and Siri- Intelligent Search is an excellent mechanism to learn user habits and act on that information- open apps before we need them, make recommendations on places we might like and guide us through our daily lives to make sure we?re where we need to be at the right time Siri is a personal assistant to the users, able to create contextual reminders and search through photos and videos in new ways Swiping right from the home screen also brings up a new screen that houses ?Siri Suggestions,? putting favorite contacts and apps right on your fingertips, along with nearby restaurant and location information and important news Deeper search capabilities can show results like sports scores, videos, and content from third-party apps, and you can even do simple conversions and calculations using the search tools on your iPhone or iPad Many of the built-in apps have been updated ? Notes includes new checklists and sketching features ? Maps now offers transit directions ? Mail allows for file attachments ? Apple Pay is being improved with the addition of store credit cards and loyalty cards ? Leading ?Passbook? to be renamed to ?Wallet? in iOS 9 San Francisco font, wireless CarPlay support An optional iCloud Drive app, built-in two-factor authentication and optional longer passwords for better security Performance improvements
5. What JSON framework is supported by iOS (iPhone OS) ?
Correct Answer: SBJson framework is supported by iOS It is a JSON parser and generator for Objective-C (Objective-C is the primary programming language you use when writing software for OS X and iOS It is a superset of the C-programming language and provides object-oriented capabilities and a dynamic runtime) SBJson provides flexible API's and additional control that makes JSON handling easy
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
7. 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
8. 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