-
Test Case Review and Rework
You are preparing your project for integration testing. You have prepared all the test cases, performed a test case review and reworked all problem test cases. Based on the scenario above, which step do you take next to conduct the testing?
-
Automation Testing
function NewFunc as integer dim filenum as long dim RecBuff as String Filenum = freefile NewFunc = false OPEN InFile FOR Input As #filenum while EOD(filenum) true line input #filenum , Recbuff if instr(ucase(RecBuff) ,(ucase(FindString)) then NewFunc =true exit while end if wend close #filenum end function What will be the result if you run above sample...
-
Test Plan for Transactional Banking
Your Team is building Software for Transactional Banking. It is Critical that if an unexpected event occurs, the software does not fail or suffer any loss of data. Based on the scenario above, which type of testing do you include in your test plan to meet these requirements?
-
Testing Based on Use Case Specification
Which Estimation technique do you use in a software project that utilizes use-cases specifications to drive feature development and Why ?
-
What kind of Tools can be used for Financial Domain Application ?
What kind of Tools can be used for Financial Domain Application ? Consider that Application is a WEB BASED 3 TIER ARCHITECTURE.
-
What Can be the side effects of Using Automation Tools while Testing ?
What Can be the side effects of Using Automation Tools while Testing ? Explain some observation that to be kept in mind while testing.
-
What are the possible senarios to choose that an application can be manually tested or Automated.
What are the possible scenarios to choose that an application can be manually tested or Automated? Give an example for a Stand alone application and Web Based Application.