Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

1.) Match the following testing terms to their definition. 123456 Describes how a system will be tested. 123456 Tests performed by giving certain inputs and

1.)

Match the following testing terms to their definition.

123456

Describes how a system will be tested.

123456

Tests performed by giving certain inputs and examining the outputs against expected outputs.

123456

Tests a complete software system to verify that it meets requirements.

123456

Describes a particular test to be performed in order to determine whether the item under test works correctly for a given set of conditions (e.g., inputs).

123456

Tests in which the internal implementation of the item being tested is not known to the tester.

123456

Tests the smallest unit of a program, such as a single module.

1.

Unit tests

2.

System tests

3.

Black box tests

4.

Functional tests

5.

Test plan

6.

Test case

2.) The order (sequence) of statements in a program is:

Never important.

Always important.

Sometimes important.

.)True or False: For any integer value of temperature, the following two pieces of pseudocode always return the same results.

Hint: What output will be produced for the following values of temperature: 59; 60; 61? Are these outputs the same for both versions of the pseudocode?

Pseudocode A:

If temperature < 60 Then If wearing == "coat" Then Display "Aren't you a little warm?" Else Display "Brr!" End If Else Display "Seems like a nice day!" End If

Pseudocode B:

If temperature > 60 Then Display "Seems like a nice day!" Else If wearing == "coat" Then Display "Aren't you a little warm?" Else Display "Brr!" End If

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions

Question

Define Management or What is Management?

Answered: 1 week ago

Question

What do you understand by MBO?

Answered: 1 week ago