Posts

Showing posts from August, 2016

Important Selenium Interview Questions and Answers for Experienced and Freshers

Important Selenium Interview Questions and Answers for Experienced SOFTWARE TESTING LIFE CYCLE (STLC)  Software Testing Life Cycle (STLC) defines the steps/ stages/ phases in testing of software. Nevertheless, Software Testing Life Cycle, in general, comprises of the following phases: Requirements/ Design Review You review the software requirements/ design (Well, if they exist.) 'Review Defect' Reports Curiosity Test Planning Once you have gathered a general idea of what needs to be tested, you 'plan' for the tests. Test Plan Test Estimation Test Schedule Farsightedness Test Designing You design/ detail your tests on the basis of detailed requirements/design of the software (sometimes, on the basis of your imagination). Test Cases / Test Scripts/Test Data Test Environment  You setup the test environment (server/ client/ network, etc) with the goal of replicating the end-users' environment. Test Environment Rich company Test Exe...

ABAP Smartforms Tutorials

ABAP Smartforms Tutorials Here ,  i am explaining the basic definitions of smart forms tutorials and their use in the applications. We use SAP Smart Forms to create and maintain forms for mass printing in SAP Systems. SAP Smart Forms offer the following advantages: Creating and maintaining forms requiring half the time Adapting forms without any programming knowledge due to entirely graphical user interface Web Publishing using the generated XML output The SAP Smart Forms replace the SAP script forms. Features SAP Smart Forms allow you to execute simple modifications to the form and in the form logic by using simple graphical tools; in 90% of all cases, this won't include any programming effort. To print a form, you need a program for data retrieval and a Smart Form that contains the entire from logic. As data retrieval and form logic are separated, you must only adapt the Smart Form if changes to the form logic are necessary. You design a form using th...

SAP ABAP Object oriented programming Interview Questions and Answers

SAP ABAP Object oriented programming Interview Questions and Answers These Object-oriented programming Interview Questions and Answers are useful for Freshers and Experienced ABAP Consultants. what are Exception Classes in Object-Oriented Programming? Definition: Exceptions are the errors that occur during the execution of the program that interrupts the normal flow of control. Types of Exceptions: All exception classes are inherited from global class CX_ROOT and the classes that are directly inherited are CX_STATIC_CHECK: It is checked by both the compiler and runtime system. If any exception of this category found and not handled locally inside the procedure, it has been declared in the RAISING clause of the procedure’s interface CX_DYNAMIC_CHECK: It is checked only at runtime system. when the excetions tries to leave a procedure that it has been declared in RAISING class. Generally all system exceptions like CX_SY_ZERO_DIVIDE will come under these ex...