ログイン

(Finals) Application Development Mocktest BSIT 505
62問 • 1ヶ月前
  • Xai Alexandrei Delos Reyes
  • 通報

    問題一覧

  • 1

    It is the activity of executing a system or component under specified conditions, observing or recording the results, and evaluating some of the aspects of the system or component.

    Software testing

  • 2

    Which are the Direct Objectives?

    To identify and reveal as many errors as possible in the tested software, To bring the tested software to an acceptable level of quality after correcting the identified errors and retesting – This means that a certain percentage of bugs tolerable to users will remain unidentified upon installation of the software. , To perform the required tests efficiently and effectively and within the budgetary and scheduling limitations , To establish with a degree of confidence that the software package is ready for delivery or installment at customer premises

  • 3

    Which statement BEST DESCRIBES Indirect Objectives

    To compile a record of software errors for use in software process improvement by corrective and preventive actions and for decision-making

  • 4

    This is performed by the developer on the completed unit or module of the software and before its integration with other modules.

    Unit Testing

  • 5

    The project team performs this type of testing on the integrated systems once all of the individual units work correctly in isolation.

    Integration Testing

  • 6

    This tests the functionality of an entire system together with interdependencies between system components.

    System Testing

  • 7

    The objective of this testing is to ensure that the performance of the system is within the bounds specified by the non-functional requirements.

    Performance Testing

  • 8

    System users or customers perform this testing before accepting the product.

    Acceptance Testing

  • 9

    Which statement is NOT TRUE about Unit Testing?

    The project team performs this type of testing on the integrated systems once all of the individual units work correctly in isolation.

  • 10

    Which statement is NOT TRUE About Integration Testing?

    This tests the functionality of an entire system together with interdependencies between system components.

  • 11

    Which statement is NOT TRUE about System Testing?

    The objective of this testing is to ensure that the performance of the system is within the bounds specified by the non-functional requirements.

  • 12

    Which statement is NOT TRUE about Performance Testing?

    System users or customers perform this testing before accepting the product.

  • 13

    Which statement is NOT TRUE about Acceptance Testing?

    The objective of this testing is to ensure that the performance of the system is within the bounds specified by the non-functional requirements.

  • 14

    Which phase in Test Process is being described? "The objective of testing in this phase is to evaluate the gathered requirements."

    Requirements analysis and specification

  • 15

    Which phase in Test Process is being described? "This phase partitions the requirements into hardware or software systems and builds the overall system architecture."

    System and software design

  • 16

    Which phase in Test Process is being described? "In this phase, the software system is broken into components and then classes are associated with each component."

    Intermediate design

  • 17

    Which phase in Test Process is being described? "In this phase, the developers start writing and compiling classes and methods."

    Implementation design

  • 18

    Which phase in Test Process is being described? "This is the process of delivering a completed software product to clients."

    System deployment

  • 19

    Which statement is NOT TRUE about Requirements analysis and specification?

    This phase partitions the requirements into hardware or software systems and builds the overall system architecture.

  • 20

    Which statement is NOT TRUE about System and software design?

    In this phase, the software system is broken into components and then classes are associated with each component.

  • 21

    Which statement is NOT TRUE about Intermediate design?

    In this phase, the developers start writing and compiling classes and methods.

  • 22

    Which statement is NOT TRUE about Implementation design?

    This is the process of delivering a completed software product to clients.

  • 23

    Which statement is NOT TRUE about System deployment?

    The objective of testing in this phase is to evaluate the gathered requirements.

  • 24

    It is a software artifact with a set of test inputs, execution conditions, and expected results developed for a particular objective, such as to exercise a particular program path to verify compliance with a specific requirement and as documentation for a test item. before its integration with other modules.

    Test Case

  • 25

    What is the othe term for Test Case?

    Test Scenario

  • 26

    Which statement is NOT TRUE about Test Case Or Test Scenario?

    This is the process of delivering a completed software product to clients. The testing activities in this phase is to perform system testing, acceptance testing, and usability testing.

  • 27

    It is a name and number to identify a test case

    Test Case ID

  • 28

    the reason for the test (this may include the type of test)

    Objective/Description

  • 29

    the activities or steps required on the part of the tester to carry out the test

    Test Procedure

  • 30

    the data to enter the system (made up of valid and invalid sets of test data)

    Test data

  • 31

    the expected results of the test

    Expected results

  • 32

    a placeholder for recording the actual result as the test case gets executed.

    Actual results

  • 33

    determines whether the test was a Pass or Fail. It can also be Not Executed.

    Status

  • 34

    any comments on the test case or execution

    Remarks

  • 35

    may include the name of the tester carrying out the tests, date of execution of the test, the environment in which the test was executed such as hardware and software.

    Administrative details

  • 36

    It is the activity of writing code that tests other codes. This test focuses on a single unit of the software system, which can be modules such as methods, class, and interface.

    Unit testing

  • 37

    This testing approach is used to verify the internal logic and program statements of components or software.

    White-Box Testing

  • 38

    In this testing, the tester derives tests from external descriptions of the software, including specifications, requirements, and design.

    Black-Box Testing

  • 39

    These are open-source unit testing frameworks designed for Java programming language.

    JUnit and TestNG

  • 40

    This is an open-source unit testing framework for all .NET languages.

    NUnit

  • 41

    It is an iterative process where tests for the code are written before writing the code. This approach forces the developer to write testable code.

    Test-driven Development

  • 42

    Which statement is NOT TRUE about Unit Testing?

    This testing approach is used to verify the internal logic and program statements of components or software.

  • 43

    which statement is NOT TRUE about White-Box Testing?

    In this testing, the tester derives tests from external descriptions of the software, including specifications, requirements, and design.

  • 44

    which statement is NOT TRUE about Black-Box Testing?

    This testing approach is used to verify the internal logic and program statements of components or software.

  • 45

    Which statement is NOT TRUE about test-driven development (TDD)?

    In this testing, the tester derives tests from external descriptions of the software, including specifications, requirements, and design.

  • 46

    What is the 1st step in the a test-driven development process?

    Write a unit test that tests the functionality to satisfy a given requirement. Run the test, but it will not even compile because there is no supporting code yet.

  • 47

    What is the 2nd step in the a test-driven development process?

    Write just enough code to compile the test successfully.

  • 48

    What is the 3rd step in the a test-driven development process?

    Run the test but it will fail because no functionality has been put in the code.

  • 49

    What is the 4th step in the a test-driven development process?

    Write just enough code to satisfy the test.

  • 50

    What is the 5th step in the a test-driven development process?

    Run the test. It should now pass

  • 51

    What is the 6th step in the a test-driven development process?

    Refactor the code as necessary, verifying with tests. Refactoring is a process of improving the code without changing its external behavior

  • 52

    What is the 7th step in the a test-driven development process?

    Repeat all the steps by writing another test and until all requirements are coded and testable.

  • 53

    It is the process of delivering a completed software product to clients. This involves packaging, testing, distributing, and installing the software product. Software files can be deployed manually or through automated deployment tools.

    Software deployment

  • 54

    These are used to automate deployment tasks

    Software Deployment Tools

  • 55

    This eliminates the manual tasks of deploying software products. These tools perform tasks such as bug detection, patch protection, performance testing, and code analyzing.

    Automation

  • 56

    It manages the permission settings of users and groups who can access the information in the software.

    Security

  • 57

    These automate system updates, scan vulnerabilities, and practice regular patch management of latest software versions across applications. Software patching involves acquiring, testing, and installing the code – known as a patch – into an executable program to provide an update, fix, or improved version of the program or its supporting data.

    Updates

  • 58

    It monitors and analyzes the activities and interactions of the software users. This helps in optimizing the performance and eliminates issues in the software before they spread in the entire network.

    Monitoring

  • 59

    It is a self-contained, open-source automation server that can be used to automate all activities related to building, testing, and delivering or deploying software. This can be installed through native system packages, Docker, or even run standalone by any machine with a Java Runtime Environment (JRE) installed. It's’ functionalities can be extended through the installation of plugins in IDEs.

    Jenkins

  • 60

    This automated deployment tool is compatible with ASP.Net, Java, Node.js, and Windows services, as well as various script languages and database types. This is designed to automate application deployments in the cloud, corporate data center, and on-site.

    Octopus Deploy

  • 61

    This offers support for the delivery aspect of continuous delivery. Deployment projects automate the releasing into each environment while letting the project team control the flow with per-environment permissions. This supports real-time monitoring across all tools and flag errors of software as soon as they occur.

    Bamboo

  • 62

    This is an automated patch management software for Microsoft servers, workstations, and third-party applications. This facilitates easier patching, reporting, and information gathering for servers and workstations, and allows the project team to manage patch deployments with advanced scheduling and rebooting across servers and workstations.

    SolarWinds Patch Manager

  • The Contemporary World Mock test (Prelims)

    The Contemporary World Mock test (Prelims)

    Xai Alexandrei Delos Reyes · 58問 · 2年前

    The Contemporary World Mock test (Prelims)

    The Contemporary World Mock test (Prelims)

    58問 • 2年前
    Xai Alexandrei Delos Reyes

    Computing Mock test (Prelims)

    Computing Mock test (Prelims)

    Xai Alexandrei Delos Reyes · 67問 · 2年前

    Computing Mock test (Prelims)

    Computing Mock test (Prelims)

    67問 • 2年前
    Xai Alexandrei Delos Reyes

    Programming Mock Test (Prelims)

    Programming Mock Test (Prelims)

    Xai Alexandrei Delos Reyes · 64問 · 2年前

    Programming Mock Test (Prelims)

    Programming Mock Test (Prelims)

    64問 • 2年前
    Xai Alexandrei Delos Reyes

    Entrepreneurship Mock Test (Prelims)

    Entrepreneurship Mock Test (Prelims)

    Xai Alexandrei Delos Reyes · 23問 · 2年前

    Entrepreneurship Mock Test (Prelims)

    Entrepreneurship Mock Test (Prelims)

    23問 • 2年前
    Xai Alexandrei Delos Reyes

    Computing Mock Test (Midterms) BSIT 107

    Computing Mock Test (Midterms) BSIT 107

    Xai Alexandrei Delos Reyes · 76問 · 2年前

    Computing Mock Test (Midterms) BSIT 107

    Computing Mock Test (Midterms) BSIT 107

    76問 • 2年前
    Xai Alexandrei Delos Reyes

    Math Mock Test (Prelims)

    Math Mock Test (Prelims)

    Xai Alexandrei Delos Reyes · 48問 · 2年前

    Math Mock Test (Prelims)

    Math Mock Test (Prelims)

    48問 • 2年前
    Xai Alexandrei Delos Reyes

    Programming Mock Test (Midterms) BSIT 107

    Programming Mock Test (Midterms) BSIT 107

    Xai Alexandrei Delos Reyes · 52問 · 2年前

    Programming Mock Test (Midterms) BSIT 107

    Programming Mock Test (Midterms) BSIT 107

    52問 • 2年前
    Xai Alexandrei Delos Reyes

    UTS Mock Test (Midterms) BSIT107

    UTS Mock Test (Midterms) BSIT107

    Xai Alexandrei Delos Reyes · 40問 · 2年前

    UTS Mock Test (Midterms) BSIT107

    UTS Mock Test (Midterms) BSIT107

    40問 • 2年前
    Xai Alexandrei Delos Reyes

    Entrepreneurship Mock Test (Midterms) BSIT 107

    Entrepreneurship Mock Test (Midterms) BSIT 107

    Xai Alexandrei Delos Reyes · 38問 · 2年前

    Entrepreneurship Mock Test (Midterms) BSIT 107

    Entrepreneurship Mock Test (Midterms) BSIT 107

    38問 • 2年前
    Xai Alexandrei Delos Reyes

    Contemporary World Mock Test (Midterms) BSIT 107

    Contemporary World Mock Test (Midterms) BSIT 107

    Xai Alexandrei Delos Reyes · 28問 · 2年前

    Contemporary World Mock Test (Midterms) BSIT 107

    Contemporary World Mock Test (Midterms) BSIT 107

    28問 • 2年前
    Xai Alexandrei Delos Reyes

    Math Mocktest (Midterms) BSIT 107

    Math Mocktest (Midterms) BSIT 107

    Xai Alexandrei Delos Reyes · 24問 · 2年前

    Math Mocktest (Midterms) BSIT 107

    Math Mocktest (Midterms) BSIT 107

    24問 • 2年前
    Xai Alexandrei Delos Reyes

    Computer Programming Mocktest (Pre-finals)

    Computer Programming Mocktest (Pre-finals)

    Xai Alexandrei Delos Reyes · 26問 · 2年前

    Computer Programming Mocktest (Pre-finals)

    Computer Programming Mocktest (Pre-finals)

    26問 • 2年前
    Xai Alexandrei Delos Reyes

    Math Mocktest (Pre-Finals)

    Math Mocktest (Pre-Finals)

    Xai Alexandrei Delos Reyes · 19問 · 2年前

    Math Mocktest (Pre-Finals)

    Math Mocktest (Pre-Finals)

    19問 • 2年前
    Xai Alexandrei Delos Reyes

    Computing Mock Test (Pre-finals)

    Computing Mock Test (Pre-finals)

    Xai Alexandrei Delos Reyes · 36問 · 2年前

    Computing Mock Test (Pre-finals)

    Computing Mock Test (Pre-finals)

    36問 • 2年前
    Xai Alexandrei Delos Reyes

    Computing Mock Test Finals

    Computing Mock Test Finals

    Xai Alexandrei Delos Reyes · 26問 · 2年前

    Computing Mock Test Finals

    Computing Mock Test Finals

    26問 • 2年前
    Xai Alexandrei Delos Reyes

    Comprog 2nd sem (prelims) BSIT 205

    Comprog 2nd sem (prelims) BSIT 205

    Xai Alexandrei Delos Reyes · 63問 · 1年前

    Comprog 2nd sem (prelims) BSIT 205

    Comprog 2nd sem (prelims) BSIT 205

    63問 • 1年前
    Xai Alexandrei Delos Reyes

    Discrete Math 2nd sem (prelims) BSIT 205

    Discrete Math 2nd sem (prelims) BSIT 205

    Xai Alexandrei Delos Reyes · 36問 · 1年前

    Discrete Math 2nd sem (prelims) BSIT 205

    Discrete Math 2nd sem (prelims) BSIT 205

    36問 • 1年前
    Xai Alexandrei Delos Reyes

    Art Appreciation (Prelim) BSIT 205

    Art Appreciation (Prelim) BSIT 205

    Xai Alexandrei Delos Reyes · 56問 · 1年前

    Art Appreciation (Prelim) BSIT 205

    Art Appreciation (Prelim) BSIT 205

    56問 • 1年前
    Xai Alexandrei Delos Reyes

    Ethics 2nd sem (Prelims) BSIT 205

    Ethics 2nd sem (Prelims) BSIT 205

    Xai Alexandrei Delos Reyes · 45問 · 1年前

    Ethics 2nd sem (Prelims) BSIT 205

    Ethics 2nd sem (Prelims) BSIT 205

    45問 • 1年前
    Xai Alexandrei Delos Reyes

    STS 2nd Sem (Prelim) BSIT 205

    STS 2nd Sem (Prelim) BSIT 205

    Xai Alexandrei Delos Reyes · 40問 · 1年前

    STS 2nd Sem (Prelim) BSIT 205

    STS 2nd Sem (Prelim) BSIT 205

    40問 • 1年前
    Xai Alexandrei Delos Reyes

    問題一覧

  • 1

    It is the activity of executing a system or component under specified conditions, observing or recording the results, and evaluating some of the aspects of the system or component.

    Software testing

  • 2

    Which are the Direct Objectives?

    To identify and reveal as many errors as possible in the tested software, To bring the tested software to an acceptable level of quality after correcting the identified errors and retesting – This means that a certain percentage of bugs tolerable to users will remain unidentified upon installation of the software. , To perform the required tests efficiently and effectively and within the budgetary and scheduling limitations , To establish with a degree of confidence that the software package is ready for delivery or installment at customer premises

  • 3

    Which statement BEST DESCRIBES Indirect Objectives

    To compile a record of software errors for use in software process improvement by corrective and preventive actions and for decision-making

  • 4

    This is performed by the developer on the completed unit or module of the software and before its integration with other modules.

    Unit Testing

  • 5

    The project team performs this type of testing on the integrated systems once all of the individual units work correctly in isolation.

    Integration Testing

  • 6

    This tests the functionality of an entire system together with interdependencies between system components.

    System Testing

  • 7

    The objective of this testing is to ensure that the performance of the system is within the bounds specified by the non-functional requirements.

    Performance Testing

  • 8

    System users or customers perform this testing before accepting the product.

    Acceptance Testing

  • 9

    Which statement is NOT TRUE about Unit Testing?

    The project team performs this type of testing on the integrated systems once all of the individual units work correctly in isolation.

  • 10

    Which statement is NOT TRUE About Integration Testing?

    This tests the functionality of an entire system together with interdependencies between system components.

  • 11

    Which statement is NOT TRUE about System Testing?

    The objective of this testing is to ensure that the performance of the system is within the bounds specified by the non-functional requirements.

  • 12

    Which statement is NOT TRUE about Performance Testing?

    System users or customers perform this testing before accepting the product.

  • 13

    Which statement is NOT TRUE about Acceptance Testing?

    The objective of this testing is to ensure that the performance of the system is within the bounds specified by the non-functional requirements.

  • 14

    Which phase in Test Process is being described? "The objective of testing in this phase is to evaluate the gathered requirements."

    Requirements analysis and specification

  • 15

    Which phase in Test Process is being described? "This phase partitions the requirements into hardware or software systems and builds the overall system architecture."

    System and software design

  • 16

    Which phase in Test Process is being described? "In this phase, the software system is broken into components and then classes are associated with each component."

    Intermediate design

  • 17

    Which phase in Test Process is being described? "In this phase, the developers start writing and compiling classes and methods."

    Implementation design

  • 18

    Which phase in Test Process is being described? "This is the process of delivering a completed software product to clients."

    System deployment

  • 19

    Which statement is NOT TRUE about Requirements analysis and specification?

    This phase partitions the requirements into hardware or software systems and builds the overall system architecture.

  • 20

    Which statement is NOT TRUE about System and software design?

    In this phase, the software system is broken into components and then classes are associated with each component.

  • 21

    Which statement is NOT TRUE about Intermediate design?

    In this phase, the developers start writing and compiling classes and methods.

  • 22

    Which statement is NOT TRUE about Implementation design?

    This is the process of delivering a completed software product to clients.

  • 23

    Which statement is NOT TRUE about System deployment?

    The objective of testing in this phase is to evaluate the gathered requirements.

  • 24

    It is a software artifact with a set of test inputs, execution conditions, and expected results developed for a particular objective, such as to exercise a particular program path to verify compliance with a specific requirement and as documentation for a test item. before its integration with other modules.

    Test Case

  • 25

    What is the othe term for Test Case?

    Test Scenario

  • 26

    Which statement is NOT TRUE about Test Case Or Test Scenario?

    This is the process of delivering a completed software product to clients. The testing activities in this phase is to perform system testing, acceptance testing, and usability testing.

  • 27

    It is a name and number to identify a test case

    Test Case ID

  • 28

    the reason for the test (this may include the type of test)

    Objective/Description

  • 29

    the activities or steps required on the part of the tester to carry out the test

    Test Procedure

  • 30

    the data to enter the system (made up of valid and invalid sets of test data)

    Test data

  • 31

    the expected results of the test

    Expected results

  • 32

    a placeholder for recording the actual result as the test case gets executed.

    Actual results

  • 33

    determines whether the test was a Pass or Fail. It can also be Not Executed.

    Status

  • 34

    any comments on the test case or execution

    Remarks

  • 35

    may include the name of the tester carrying out the tests, date of execution of the test, the environment in which the test was executed such as hardware and software.

    Administrative details

  • 36

    It is the activity of writing code that tests other codes. This test focuses on a single unit of the software system, which can be modules such as methods, class, and interface.

    Unit testing

  • 37

    This testing approach is used to verify the internal logic and program statements of components or software.

    White-Box Testing

  • 38

    In this testing, the tester derives tests from external descriptions of the software, including specifications, requirements, and design.

    Black-Box Testing

  • 39

    These are open-source unit testing frameworks designed for Java programming language.

    JUnit and TestNG

  • 40

    This is an open-source unit testing framework for all .NET languages.

    NUnit

  • 41

    It is an iterative process where tests for the code are written before writing the code. This approach forces the developer to write testable code.

    Test-driven Development

  • 42

    Which statement is NOT TRUE about Unit Testing?

    This testing approach is used to verify the internal logic and program statements of components or software.

  • 43

    which statement is NOT TRUE about White-Box Testing?

    In this testing, the tester derives tests from external descriptions of the software, including specifications, requirements, and design.

  • 44

    which statement is NOT TRUE about Black-Box Testing?

    This testing approach is used to verify the internal logic and program statements of components or software.

  • 45

    Which statement is NOT TRUE about test-driven development (TDD)?

    In this testing, the tester derives tests from external descriptions of the software, including specifications, requirements, and design.

  • 46

    What is the 1st step in the a test-driven development process?

    Write a unit test that tests the functionality to satisfy a given requirement. Run the test, but it will not even compile because there is no supporting code yet.

  • 47

    What is the 2nd step in the a test-driven development process?

    Write just enough code to compile the test successfully.

  • 48

    What is the 3rd step in the a test-driven development process?

    Run the test but it will fail because no functionality has been put in the code.

  • 49

    What is the 4th step in the a test-driven development process?

    Write just enough code to satisfy the test.

  • 50

    What is the 5th step in the a test-driven development process?

    Run the test. It should now pass

  • 51

    What is the 6th step in the a test-driven development process?

    Refactor the code as necessary, verifying with tests. Refactoring is a process of improving the code without changing its external behavior

  • 52

    What is the 7th step in the a test-driven development process?

    Repeat all the steps by writing another test and until all requirements are coded and testable.

  • 53

    It is the process of delivering a completed software product to clients. This involves packaging, testing, distributing, and installing the software product. Software files can be deployed manually or through automated deployment tools.

    Software deployment

  • 54

    These are used to automate deployment tasks

    Software Deployment Tools

  • 55

    This eliminates the manual tasks of deploying software products. These tools perform tasks such as bug detection, patch protection, performance testing, and code analyzing.

    Automation

  • 56

    It manages the permission settings of users and groups who can access the information in the software.

    Security

  • 57

    These automate system updates, scan vulnerabilities, and practice regular patch management of latest software versions across applications. Software patching involves acquiring, testing, and installing the code – known as a patch – into an executable program to provide an update, fix, or improved version of the program or its supporting data.

    Updates

  • 58

    It monitors and analyzes the activities and interactions of the software users. This helps in optimizing the performance and eliminates issues in the software before they spread in the entire network.

    Monitoring

  • 59

    It is a self-contained, open-source automation server that can be used to automate all activities related to building, testing, and delivering or deploying software. This can be installed through native system packages, Docker, or even run standalone by any machine with a Java Runtime Environment (JRE) installed. It's’ functionalities can be extended through the installation of plugins in IDEs.

    Jenkins

  • 60

    This automated deployment tool is compatible with ASP.Net, Java, Node.js, and Windows services, as well as various script languages and database types. This is designed to automate application deployments in the cloud, corporate data center, and on-site.

    Octopus Deploy

  • 61

    This offers support for the delivery aspect of continuous delivery. Deployment projects automate the releasing into each environment while letting the project team control the flow with per-environment permissions. This supports real-time monitoring across all tools and flag errors of software as soon as they occur.

    Bamboo

  • 62

    This is an automated patch management software for Microsoft servers, workstations, and third-party applications. This facilitates easier patching, reporting, and information gathering for servers and workstations, and allows the project team to manage patch deployments with advanced scheduling and rebooting across servers and workstations.

    SolarWinds Patch Manager