Manual testing Online Test Series 2, Mock Test, Online Quiz, Exam Questions
Finish Quiz
0 of 30 questions completed
Questions:
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
Information
Manual testing Online Test Series 2, mock test, quiz, exam questions. Manual testing Online Test 2 Quiz. Manual Testing Test Free Mock Test 2019. Manual testing Online Test 2 Question and Answers in PDF. Manual Testing is a process of finding out the defects or bugs in a software program. In this method the tester plays an important role of end user and verifies that all the features of the application are working correctly. The tester manually executes test cases without using any automation tools… Now Test your self for “Manual testing Online Test 2 in English” Exam by using below quiz…
This paper has 30 questions.
Time allowed is 30 minutes.
The Manual testing Online Test is Very helpful for all students. Now Scroll down below n click on “Start Quiz” or “Start Test” and Test yourself.
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading...
You must sign in or sign up to start the quiz.
You have to finish following quiz, to start this quiz:
Results
0 of 30 questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 points, (0)
Average score |
|
Your score |
|
Categories
- Not categorized 0%
Pos. | Name | Entered on | Points | Result |
---|---|---|---|---|
Table is loading | ||||
No data available | ||||
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- Answered
- Review
-
Question 1 of 30
1. Question
Which is not the part of decision Table?
Correct
Incorrect
-
Question 2 of 30
2. Question
Which coupling should be avoided in software?
Correct
Data Coupling: Data coupling is the process when 2 modules are sharing same data from one parameter.
Content Coupling: Content Coupling is the process when some changes or modification occurs in a module due to making changes in other module. So sometimes due to changes many impact raises on that module.Control Coupling: Control Coupling occurs when a module is controlling the flow of other module by sending flag.
Stamp Coupling: Stamp Coupling is occurs when module shares overall data but other module required only part of it.Therefore, Content Coupling is a correct answer.
Incorrect
Data Coupling: Data coupling is the process when 2 modules are sharing same data from one parameter.
Content Coupling: Content Coupling is the process when some changes or modification occurs in a module due to making changes in other module. So sometimes due to changes many impact raises on that module.Control Coupling: Control Coupling occurs when a module is controlling the flow of other module by sending flag.
Stamp Coupling: Stamp Coupling is occurs when module shares overall data but other module required only part of it.Therefore, Content Coupling is a correct answer.
-
Question 3 of 30
3. Question
Coupling and Cohesion is explained by:
Correct
Coupling and cohesion are similar. Coupling is used for indicating the dependency between components or program and cohesion is used for indicating the relationship between the modules. Both are using cause effect graph for the representation of the relationship or dependency between modules.
Therefore, a cause – effect graph is correct answer.Incorrect
Coupling and cohesion are similar. Coupling is used for indicating the dependency between components or program and cohesion is used for indicating the relationship between the modules. Both are using cause effect graph for the representation of the relationship or dependency between modules.
Therefore, a cause – effect graph is correct answer. -
Question 4 of 30
4. Question
Requirement Engineering is not concern with:
Correct
engineering is process of building something, requirement analysis is something which is done when all the requirements are gathered.Here requirement engineering is the process of building requirement or gathering requirements.”Requirement elicitation is gathering of info by asking client so it is part of requirement engineering.
Incorrect
engineering is process of building something, requirement analysis is something which is done when all the requirements are gathered.Here requirement engineering is the process of building requirement or gathering requirements.”Requirement elicitation is gathering of info by asking client so it is part of requirement engineering.
-
Question 5 of 30
5. Question
End result of Software Requirement Analysis is:
Correct
Incorrect
-
Question 6 of 30
6. Question
The Cyclomatic number theory in a graph is defined by:
Correct
Cyclomatic number theory is used to calculate the total number of edges that has to be removed from the graph so that the graph doesn’t have any cycle path. It uses e – n + 1 formula for calculating Cyclomatic number.
Therefore, option B is correct.Incorrect
Cyclomatic number theory is used to calculate the total number of edges that has to be removed from the graph so that the graph doesn’t have any cycle path. It uses e – n + 1 formula for calculating Cyclomatic number.
Therefore, option B is correct. -
Question 7 of 30
7. Question
Cyclomatic Complexity cannot be applied in:
Correct
Incorrect
-
Question 8 of 30
8. Question
Data classification is done by which type of decision tree?
Correct
Incorrect
-
Question 9 of 30
9. Question
Which is not true in context of decision tree?
Correct
Decision Tree: decision tree is a graph that uses a branching method to represent the every possible outcome of a decision. It is a decision support tool that is used in white box model to help identify a strategy. It is a flow chart like structure that handles both categorical and numerical data to represent the expected outcome for different scenarios.
Therefore, option D is a correct answer.
Incorrect
Decision Tree: decision tree is a graph that uses a branching method to represent the every possible outcome of a decision. It is a decision support tool that is used in white box model to help identify a strategy. It is a flow chart like structure that handles both categorical and numerical data to represent the expected outcome for different scenarios.
Therefore, option D is a correct answer.
-
Question 10 of 30
10. Question
7n test cases are generated in which case of Boundary value analysis?
Correct
Worst case Testing: It is an extension of boundary value analysis in which we assume 5 tuples set (min, min+
, nom, max-, max) of input values.Robust worst case: It is an extension of BVA in which we generate the test cases by selecting the Cartesian product of the 7-tuple set
Critical Fault Assumption: It is also known as the single fault assumption in which it assumes that failures occurs when simultaneous two or more faults occurs.
Therefore, robust worst case is a correct answer.Incorrect
Worst case Testing: It is an extension of boundary value analysis in which we assume 5 tuples set (min, min+
, nom, max-, max) of input values.Robust worst case: It is an extension of BVA in which we generate the test cases by selecting the Cartesian product of the 7-tuple set
Critical Fault Assumption: It is also known as the single fault assumption in which it assumes that failures occurs when simultaneous two or more faults occurs.
Therefore, robust worst case is a correct answer. -
Question 11 of 30
11. Question
Which is not true?
Correct
Incorrect
-
Question 12 of 30
12. Question
__________ exercises the full functionality of a product but does not test features in detail.
Correct
Black Box testing: Black box testing is a technique that is used to test all the functional and non functional requirement of the application.
Confirmation Testing: Confirmation testing is known as retesting that is used to verify the bug that has been removed or not.
Domain Testing: Domain Testing is a kind of functional testing. It is performed by selecting a small number of test cases from group of test cases.
Breadth Testing: It is used to test all the functionality of the application and program but not in detail way.
Therefore, option D is correct.
Incorrect
Black Box testing: Black box testing is a technique that is used to test all the functional and non functional requirement of the application.
Confirmation Testing: Confirmation testing is known as retesting that is used to verify the bug that has been removed or not.
Domain Testing: Domain Testing is a kind of functional testing. It is performed by selecting a small number of test cases from group of test cases.
Breadth Testing: It is used to test all the functionality of the application and program but not in detail way.
Therefore, option D is correct.
-
Question 13 of 30
13. Question
Which should be the first test case for the login screen of the website?
Correct
Incorrect
-
Question 14 of 30
14. Question
STLC is related to which model?
Correct
Incorrect
-
Question 15 of 30
15. Question
SIT is related to:
Correct
SIT: SIT stands for System Integration testing and System implementation testing.
System Integration testing is a high level process that is done after unit testing to ensure that all modules are integrated successfully.
System implementation testing is used to analyze the software or application is working fine in the actual environment and also to determine the compatibility with other subsystem.
Therefore, all of these are correct.
Incorrect
SIT: SIT stands for System Integration testing and System implementation testing.
System Integration testing is a high level process that is done after unit testing to ensure that all modules are integrated successfully.
System implementation testing is used to analyze the software or application is working fine in the actual environment and also to determine the compatibility with other subsystem.
Therefore, all of these are correct.
-
Question 16 of 30
16. Question
Minimum of four test data are available in this:
Correct
Equivalence class partitioning: It is a black box testing technique which divides a set of test conditions into groups that can be considered the same equivalence class.
Boundary Value Analysis: It is also a black box testing in which we calculate the minimum and maximum boundary values from the each partition like Minimum -1 , minimum , maximum, maximum +1
Therefore, Boundary Value analysis is a correct answer.
Incorrect
Equivalence class partitioning: It is a black box testing technique which divides a set of test conditions into groups that can be considered the same equivalence class.
Boundary Value Analysis: It is also a black box testing in which we calculate the minimum and maximum boundary values from the each partition like Minimum -1 , minimum , maximum, maximum +1
Therefore, Boundary Value analysis is a correct answer.
-
Question 17 of 30
17. Question
____________ is done by suddenly increasing the load for a small period of time and observing the behavior of the system.
Correct
Incorrect
-
Question 18 of 30
18. Question
Which is performed first?
Correct
Black Box testing: It is done by the tester to verify the functionality of the system or application by executing test cases. It is performed after the white box testing.
White box testing: It is done by developer to verify the internal source code of the module. It is performed after developing unit modules.
Dynamic Testing: It is a Testing technique that is used to verify the system by executing the application. It is performed after developing system.
Static Testing: Static testing is performed by the developer to verify or checking the code, document or algorithm. Static testing is performed first.
Therefore, option D is correct.Incorrect
Black Box testing: It is done by the tester to verify the functionality of the system or application by executing test cases. It is performed after the white box testing.
White box testing: It is done by developer to verify the internal source code of the module. It is performed after developing unit modules.
Dynamic Testing: It is a Testing technique that is used to verify the system by executing the application. It is performed after developing system.
Static Testing: Static testing is performed by the developer to verify or checking the code, document or algorithm. Static testing is performed first.
Therefore, option D is correct. -
Question 19 of 30
19. Question
Which of the following is true regarding catastrophic defect?
Correct
Incorrect
-
Question 20 of 30
20. Question
Which is not true regarding Spiral model?
Correct
Incorrect
-
Question 21 of 30
21. Question
Which is not the functional test case of the pencil?
Correct
because the option you chosen the pencil should not be sharpened is part of negative functional test scenario, acc to me the most close one is option A because acc to info given there is no mention of a pencil with attached eraser rest of the options are related to operational functionality of the subject like length and breadth, sharpening or not.
Incorrect
because the option you chosen the pencil should not be sharpened is part of negative functional test scenario, acc to me the most close one is option A because acc to info given there is no mention of a pencil with attached eraser rest of the options are related to operational functionality of the subject like length and breadth, sharpening or not.
-
Question 22 of 30
22. Question
Which is the odd one out?
Correct
Incorrect
-
Question 23 of 30
23. Question
When an expected result is not specified in test case template then:
Correct
Expected Result is the component of the test cases, it is predefined value of the output. It is used to identify the test cases are pass or fail on the basis of comparing actual results with the expected result.
Therefore, Option C is correct.Incorrect
Expected Result is the component of the test cases, it is predefined value of the output. It is used to identify the test cases are pass or fail on the basis of comparing actual results with the expected result.
Therefore, Option C is correct. -
Question 24 of 30
24. Question
Which is the odd one out?
Correct
Walkthrough, Data flow analysis and Inspection are static analysis technique that is used to verify or analysis the requirement or code of the application without executing system.
Error Guessing is a black box testing technique that is used to test the system or application based on the tester’s experience.
Therefore, Error Guessing is a correct answer.Incorrect
Walkthrough, Data flow analysis and Inspection are static analysis technique that is used to verify or analysis the requirement or code of the application without executing system.
Error Guessing is a black box testing technique that is used to test the system or application based on the tester’s experience.
Therefore, Error Guessing is a correct answer. -
Question 25 of 30
25. Question
Control Structure includes:
Correct
Incorrect
-
Question 26 of 30
26. Question
Test plans are based on:
Correct
Test Plan: A Test Plan is a document that describes the testing scope, activities and approaches used in Software testing process. In the test planning phase the QA team has created a test plan document on the basis of the project plan.
Therefore, Project plan is the correct answer.Incorrect
Test Plan: A Test Plan is a document that describes the testing scope, activities and approaches used in Software testing process. In the test planning phase the QA team has created a test plan document on the basis of the project plan.
Therefore, Project plan is the correct answer. -
Question 27 of 30
27. Question
________ calls the function and passes it test data.
Correct
Test Stub: It is a dummy model of a sub module in integration testing that act as temporary replacement for a called module.
Test Driver: It is a dummy model of main module in integration testing that is used to call the function and for passing test data value.
Proxy: It is a server that is not used for calling a function.
Therefore, test driver is a correct answer.Incorrect
Test Stub: It is a dummy model of a sub module in integration testing that act as temporary replacement for a called module.
Test Driver: It is a dummy model of main module in integration testing that is used to call the function and for passing test data value.
Proxy: It is a server that is not used for calling a function.
Therefore, test driver is a correct answer. -
Question 28 of 30
28. Question
Confidence testing refers to:
Correct
Smoke testing is also known as normal health checkup or confidence testing. It is done to verify wheather the main and critical functionality are working fine or not.
Retesting: Retesting is also known as confirmation testing. It is performed by the tester to verify that the defect or bug has been successfully removed or not.
Regression Testing: Regression testing is performed after fixing defects, to ensure the change code has not affected the unchanged area of build.
Therefore, Option A is correct.Incorrect
Smoke testing is also known as normal health checkup or confidence testing. It is done to verify wheather the main and critical functionality are working fine or not.
Retesting: Retesting is also known as confirmation testing. It is performed by the tester to verify that the defect or bug has been successfully removed or not.
Regression Testing: Regression testing is performed after fixing defects, to ensure the change code has not affected the unchanged area of build.
Therefore, Option A is correct. -
Question 29 of 30
29. Question
In which phase we create the test case?
Correct
Test Planning: In the Test Planning phase, we create or update the test plans document which includes what needs to be tested, how the testing will be done, test strategy, test environment, test methodologies etc.
Test Requirement: In the Test Requirement phase, we analysis and validate the client or system requirement.
Test Specification: In the test specification phase, we create or update the test cases on the basis of the Client requirement.
Test Configuration: Test configuration phase is when we setup the system configuration for required system or product.
Therefore, Test Specification is a correct answer.Incorrect
Test Planning: In the Test Planning phase, we create or update the test plans document which includes what needs to be tested, how the testing will be done, test strategy, test environment, test methodologies etc.
Test Requirement: In the Test Requirement phase, we analysis and validate the client or system requirement.
Test Specification: In the test specification phase, we create or update the test cases on the basis of the Client requirement.
Test Configuration: Test configuration phase is when we setup the system configuration for required system or product.
Therefore, Test Specification is a correct answer. -
Question 30 of 30
30. Question
Assertion Testing:
Correct
Incorrect