Jack is part of the software quality assurance team in a company. Which activity should Jack perform as a part of software quality assurance?
A.
billing
B.
recruiting
C.
testing
D.
installing
E.
accounting

Answers

Answer 1

Answer:

C - testing

Explanation:

quality assurance is another name for verifying something. so when you verify software, you test the software.


Related Questions

PLZZ HELP HELP EL
SMMSNSM

Answers

Answer:

jfhhdbdbfjdjdvebbebzbdbd

Insert the following formula into Excel sheet. Cos A+ |23|​

Answers

=cos(A1)+abs(23)

Thank you hope this helps


Question 12 of 30
In Alienware systems, errors are indicated via the tricolor Power Button LED.
True
False

Answers

Answer:

False.

Explanation:

Bought the latest Alienware 15 r3 with i7 7th gen, 1060gtx, etc. Next day laptop wont post, turns on, reboots, then does the same thing, meanwhile the power led button blinks 6 times. So making a little research and its seems like a video card is kaput, dont know if its the intel or the nvidia. Aynway, I bought this laptop from a company in Canada, and it seems it was alredy registered so I cand procced with a transfership ownership.

Answer:

I think the answer

is true.

The method removeDupes is intended to remove duplicates from array a, returning n, the number of elements in a after duplicates have been removed. For example, if array a has the values {4, 7, 11, 4, 9, 5, 11, 7, 3, 5} before removeDupes is called, then after duplicates are removed, a will be {4, 7, 11, 5, 9, 3} and 6 will be returned.Consider the following three implementations of RemoveDupes. I. public static int removeDupes (int [ 1 a) int n-a.length; for (int i-0, icn; i+M int current- a [il: int j i+1; while (jcn)K if (currentaulK alil aln-1) return n; Il. public static int removeDupes (int [] a)t int n-a.length; for (int i-0; ikn; i++ int current a [il for (int j-0; j

Answers

Answer:

public int removeDupes(int[]a){

int n =0;

for(int x =0;x<a.length;x++){

for(int y=0;y<a.length;y++){

if(a[x]==a[y]){

n++;

}

}

int left = a.length-n;

return left;

}

}

Explanation:

The base class Pet has private fields petName, and petAge. The derived class Dog extends the Pet class and includes a private field for dogBreed. Complete main() to:
• create a generic pet and print information using printInfo()
• create a Dog pet, use printInfo() to print information, and add a statement to print the dog's breed using the getBreed() method.
Ex. If the input is:
Dobby
2
Kreacher
3
German
Schnauzer
the output is:
Pet Information:
Name: Dobby
Age: 2
Pet Information:
Name: Kreacher
Age: 3
Breed: German Schnauzer

Answers

Answer:

Explanation:

The following code is written in Java and creates the needed code within the main method in order to get the desired output as shown in the example. It also added The proper questions so that the user can know what type of information they should type in.

import java.util.Scanner;

public class PetInformation {

   public static void main(String[] args) {

       Scanner scnr = new Scanner(System.in);

       String petName, dogName;

       String dogBreed = "null";

       int petAge, dogAge;

       Pet myPet = new Pet();

       System.out.println("Enter Pet Name:");

       petName = scnr.nextLine();

       System.out.println("Enter Pet Age:");

       petAge = scnr.nextInt();

       Dog myDog = new Dog();

       System.out.println("Enter Dog Name:");

       dogName = scnr.next();

       System.out.println("Enter Dog Age:");

       dogAge = scnr.nextInt();

       scnr.nextLine();

       System.out.println("Enter Dog Breed:");

       dogBreed = scnr.nextLine();

       System.out.println(" ");

       myPet.setName(petName);

       myPet.setAge(petAge);

       myPet.printInfo();

       myDog.setName(dogName);

       myDog.setAge(dogAge);

       myDog.setBreed(dogBreed);

       myDog.printInfo();

       System.out.println(" Breed: " + myDog.getBreed());

   }

}

class Pet {

   protected String petName;

   protected int petAge;

   public void setName(String userName) {

       petName = userName;

   }

   public String getName() {

       return petName;

   }

   public void setAge(int userAge) {

       petAge = userAge;

   }

   public int getAge() {

       return petAge;

   }

   public void printInfo() {

       System.out.println("Pet Information: ");

       System.out.println(" Name: " + petName);

       System.out.println(" Age: " + petAge);

   }

}

class Dog extends Pet {

   private String dogBreed;

   public void setBreed(String userBreed) {

       dogBreed = userBreed;

   }

   public String getBreed() {

       return dogBreed;

   }

}

Where should a photographer place lights for a headshot? Headshot lighting is more important with darker backgrounds. The light should be at a 45-degree angle from the subject. The light should be in front of the subject. The third light should be the subject to form a ring of light around the subject’s hair.

Answers

Answer:

Headshot lighting is more important with darker backgrounds. The  

(key)  light should be at a 45-degree angle from the subject. The  

(fill)  light should be in front of the subject. The third light should be  

(behind) the subject to form a ring of light around the subject’s hair.

Explanation:

i searched it up individually and thats what i got

king(a. has eaten b.ate c.had eaten) when Airah called​

Answers

Answer:

c

Explanation:

king had eaten when Airah called

Why must a mobile application be easily customized and personalized?

Answers

Answer:

Explanation:

An app is a way to bring your consumer closer to your products or services. It allows customers to easily interact and make transactions without physical limitations. To have positive results, it's important that the app has a focus on user usability and navigability.

Answer:

I don't know Roxy -w-

Explanation:

is the trust necessary to use an emerging technology platform? why?​

Answers

Answer:

Emerging technologies can provide improved accuracy, better quality and cost efficiencies for businesses in every sector. They can enhance trust in the organization's operations and financial processes, which is crucial for sustainable success.

Emerging technologies included a range of technology like education, IT, nanotechnology, biotech, computer neuroscience, robotic devices, and artifact intellectual ability.

It could working capital in all sectors with better accuracy, quality, and cost-efficiency.It can build confidence in the accounting and business processes of the organization, which is critical for sustainable success.

Therefore, these technical innovations represent the progressives of competitive advantage converging technologies, that in some ways represent bigger and more powerful interconnections and similar goals.

Learn more:

brainly.com/question/1144539

When it comes to paying bills at restaurants, Wallace always leaves a 15% tip based on the pretax price. However, Wallace is tired of computing tips every time, please construct a function total_bill, which takes a numerical argument pretax and returns the total bill by 1) calculating the tip, 2) the after-tax price, and 3) adding the tip to the after-tax price. Assume the sale tax is 9%. Below is how the function would be used:
pretax = 15
print('The total bill is ${}'.format(total_bill(pretax)))
The output should be:
The total bill is $18.6

Answers

Answer:

where are the answers.

Explanation:

What can you think of as a box or container that holds a value and has a label?
a conditional
b variable
c algorithm
d paradigm​

Answers

Answer:

I think its B

Explanation:

none of the answers make that much sense to me but i did the quiz and that was what it was.

Answer:its b

Explanation:

Create two functions (with appropriate names) that produce the output below. Both functions must use a prototype. All that should be present in main() is the call to these two functions and a blank line of output between the function calls. This is a very easy exercise. Focus on the fundamentals. Make sure you review my solution file to make sure your syntax and name choice is good. Output: This is the first part of my program. It was created with a function. <-- These two lines are output by the first function This is the second part of my program. It was created with a different function. <-- These two lines are output by the second function

Answers

Answer:

In C++:

#include <iostream>

using namespace std;

void function1(); void function2();

int main(){

   function1();    function2();

   return 0;}

void function1(){

   cout<<"This is the first part of my program."<<endl<<"It was created with a function"<<endl;}

void function2(){

   cout<<"This is the second part of my program."<<endl<<"It was created with a different function.";}

Explanation:

This defines the function prototypes

void function1(); void function2();

The main begins here

int main(){

This calls the two functions from main

   function1();    function2();

   return 0;}

This calls function1()

void function1(){

   cout<<"This is the first part of my program."<<endl<<"It was created with a function"<<endl;}

This calls function2()

void function2(){

   cout<<"This is the second part of my program."<<endl<<"It was created with a different function.";}

Read the scenario and then choose which type of report it describes.

A salesperson searches the inventory list to find out whether a specific product is in stock.

customer list

market-research report

product list

sales-volume report

Answers

Answer:

C) product list

Explanation:

i read the coments above XD

plus im takeing the test rn

Answer:

Next one D

Explanation:

Which one is better AMD Ryzen 5 Or Nvidia Gtx 2080 ti

Answers

Answer:

The NVIDIA GTX 2030 Ti

Explanation:

The AMD Ryzen 5 is good for a starting gaming PC, but if you are looking for a gaming PC that could run a lot more games, use the NVIDIA GTX 2080 Ti.

If you get your foot stuck in a cloud how many colors can you smell with you ears

Answers

Answer: 42 is the answer to everything and just remember, Don,t panic.

For i am the hitch hikers guide to the galaxy.

 

Explanation:

The Binary Search algorithm works by testing a mid-point, then eliminating half of the list.

a. True
b. False

Answers

Answer:

a. True

Explanation:

The Binary Search algorithm works by testing a mid-point, then eliminating half of the list.

A restaurant recorded the ages of customers on two separate days. You are going to write a program to compare the number of customers in their twenties (ages 20 to 29). What is the missing line of code to count the number of customers in their twenties? customerAges = [13, 3, 11, 24, 35, 25, 15, 18, 1] count20s = 0 if 20 <= item <= 29: count20s = count20s + 1

Answers

Answer:

You will need to implement a for loop ( I am assuming this is java)

Explanation:

int count20s = 0;

for(int x =0; x< customerAges.length;x++){

if(20 <= customerAges[x] && customerAges[x] <= 29){

     count20s++;

}

In JavaScript what is the resulting value of answer for answer = 5 + 3 * 2? Explain why the answer is not 16.

Answers

Answer:

with this type of math , you actually multiply first before you add

Explanation:

2×3 =6.

6+5=11.

JavaScript is the resulting in the value are the of answer for answer = 5 + 3 × 2 = 11. It was not the 16.

What is JavaScript?

The word JavaScript refers to a text-based programming language, and the server-side is what allows users to make web pages interactive. HTML and CSS are two programming languages that are used to make web pages dynamic.

According to the JavaScript, are the resulting the values, and they define are the answer.

As per the rule of the bod mas rule.

5 + 3 × 2 = ?

3 × 2 = 6

5 + 6 = 11

As a result, the JavaScript are the based on the resulting in the value 5 + 3 × 2 = 11.

Learn more about on JavaScript, here:

https://brainly.com/question/28448181

#SPJ2

29. Write a program in a script file that calculates the cost of renting a car according to the following price schedule: The program asks the user to enter the type of car (sedan or SUV), the number of days, and the number of miles driven. The program then displays the cost (rounded to cents) for the rent. Run the program three times for the following cases: (a) Sedan, 10 days, 769 miles. (b) SUV, 32 days, 4,056 miles. (c) Sedan, 3 days, 511 miles.

Answers

Answer:The price for renting a car at a car rental company is according to the following schedule: Write a MATLAB program in a script file that calculates the cost of renting a car based on the shown price schedule. The program must ask the user to enter the type of car (Sedan or SUV), the number of days, and the number of miles driven. The program then displays the cost (rounded to cents) for the rent in a sentence that reads: "The cost of the rent is XXX $." where XXX is the cost value in $. Run the program three times for the following cases: Sedan, 10 days, 769 miles. SUV, 32 days, 4, 056 miles. Sedan, 3 days, 511 miles. Use fprintf () to display the text and data. The data should be displayed in f format with two decimal digits.

Explanation:


Please help meeee , you will get 20 points

Answers

Answer:

true

Explanation:

true trueee 3uehehehdgeyeyehhehehegegegrhrtggrevegrgrhehehru

I THINK IT FALSE

#Carry on learning

3.5.6 Introduce Yourself, Part 2


please hellllpp it keeps saying the code is wrong

Answers

Answer:

In Python:

name = "Arthur"

age = "62"

print("Hi! My name is "+name+" and I am "+age+" years old")

Explanation:

Given

See attachment

Required

Write a code to introduce yourself

Initialize name

name = "Arthur"

Initialize age

age = "62"

Print introduction

print("Hi! My name is "+name+" and I am "+age+" years old")

During what stage of problem solving is information gathered in order to see if the plan produced the intended outcome?
A. implement the solution
B. Define the problem
C. Identify solutions
D. evaluate results ​

Answers

Identify solutions is  to see if the plan produced the intended outcome.

Hence, option C is correct answer.

What is problem solving?

Diagnose the circumstance to keep your attention on the issue and not merely its symptoms. Use cause-and-effect diagrams to establish and examine root causes, and flowcharts to show the anticipated steps of a process while solving problems.

Key problem-solving steps are explained in the sections that follow. These actions encourage the participation of interested parties, the use of factual information, the comparison of expectations with reality, and the concentration on a problem's underlying causes. You ought to start by:

reviewing and capturing the functioning of current processes (i.e., who does what, with what information, using what tools, communicating with what organisations and individuals, in what time frame, using what format).

assessing the potential effects of new resources and updated regulations on the creation of your "what should be"

Read more about problem solving:

https://brainly.com/question/23945932

#SPJ1

.
T
Which of the following objects are not contained within
an Access database?
Select one:
a Tables and forms,
b. Queries and reports.
c. Macros and Modules
d. Web sites and worksheets​

Answers

Answer:

17 38 ay

Explanation:

a

An administrative assistant is responsible for scheduling appointments at a doctor’s office. Which component would allow the administrative assistant to enter each patient’s name, date of birth, doctor’s name, and appointment date and time?

Answers

Answer: Form

Explanation:

Answer:

A on edge

Explanation:

How do most benchmark tests measure the performance of a graphic card​

Answers

Answer:

Using Frame Rate

Explanation:

Most benchmark tests measure the performance of a graphic card​ by using "Frame Rate"

This is because using Frame Rate assesses and then measures the number of images a GPU (graphic processing unit) can render and at the same time the number of images that are being shown on a monitor or screen per second.

Hence, in this case, the correct answer is "Frame Rate"

Write Inheritance program for the following scenario. Employee is super class where as Manager and Regular are the sub class. Partial Employee class is created, you have to complete the Employee class and implement Manager and Regular class. The main is class is given that creates objects of all classes and displays the output.
• The subclasses uses super keyword in the constructor to assigned the data.
• All the classes implements toString() method.

Answers

Answer:

Explanation:

public class Employee{

//Existing employee code

public String getName(){

return Name;

}

public double getSalary(){

return salary;

}

public int getId(){

return id;

}

public void setName(String name){

this.name = name;

}

//Manager Class

public class Manager extends Employee{

private double bonus;

public Manager(int id,String name,double salary,double bonus){

super(id,name,salary);

this.bonus = bonus;

}

public void setBonus(double bonus){

this.bonus = bonus;

}

public double getBonus(){

return bonus;

}

}

//Regular Class

public class Regular extends Employee{

private double overtime;

public Manager(int id,String name,double salary,double overtime){

super(id,name,salary);

this.overtime = overtime;

}

public void setOvertime(double overtime){

this.overtime = overtime;

}

public double getOvertime(){

return overtime;

}

}

Select the correct word to complete the sentence.
Bandwidth represents the _____ of a connection.

capacity
speed
distance
security

Answers

Distance is the answer!

Answer:

Capacity

Explanation:

i got it wrong and it showed this to be the answer on edge

please help
Consider the following code segment.

int a = 0;
int b = 3;

while ((b != 0) && ((a / b) >= 0)
{
a = a + 2;
b = b - 1;
}
What are the values of a and b after the while loop completes its execution?

a = 4, b = 1
a = 0, b = 3
a = 6, b = 0
a = 8, b = -1

Answers

Answer:

a = 6, b = 0

Explanation:

The loop ran 3 times before b == 0. The statement "while ((b != 0)" is essentially saying: 'While b is not equal to 0, do what's in my loop'. Same general thing with "&& ((a / b) >= 0)". The "&&" is specifying that there should be another loop condition. The final part of the while loop states: 'as long as a ÷ b is greater than 0, do what's in my loop'. If all of these conditions are met, the loop will run. It will continue to run until at least one of the conditions are not met.

Side note: I can't help but notice you posted the same question a while ago, so I just copied and pasted my previous response with some tweaking here and there. Hope this helps you! :)

See the picture and answer the coding question

Answers

Answer:

Actually I don't know computer so I can't help you sorry bro

Take a better picture please

what is the perpose of the boolean variable swaps in this buble sort algorithm

Answers

Answer:

“Bubble Up” algorithm will move largest

value to its correct location (to the

right/end of array)

• Repeat “Bubble Up” until all elements are

correctly placed:

– Maximum of N-1 times

– Can finish early if no swapping occurs

• We reduce the number of elements we

compare each time one is correctly placed

Other Questions
German troops could have entered France by going through Switzerland. Use what you know about both political and physical geography to explain why it made sense for them to go through Belgium Suppose lightning strikes at an average of 1.4 strikes per minute during a particular storm. You play the following game: if the next strike occurs within the next minute, you win 3 dollars, if the next strike occurs between 1 minute and 2 minutes from now, you win 5 dollars, and if the next strike occurs more than 2 minutes from now, you win 1 dollar. How much should someone be charged to play this game, to make it a "fair game?" 2x2 what is the answer Which statement is true?O Gravity can both push and pull objects.O Only celestial objects exert a gravitational force.O Only Earth exerts a gravitational force.All objects with mass exert a gravitational force. Petra invested $6,000 at 6.5% simple interest for 3 years. Martin invested $6,000 at5% for 42 months. Who had more money at the end of their investments and by how much? HELPPPPi need it done right away Given ab and (a^2 - b^2) / (a + b ) = 12, find a - b. Decrease R1400 in the Ratio 7:3 briefly explain Five ways in which the influence of sport and games can lead to nation building and national unity UNIT 16: INFORMATIVE ESSAYLESSON 1: FEATURES OF AN INFORMATIVE ESSAYDIRECTIONS: Identify whether each statement about informative essay is TRUE or FALSE1. It contains a thesis statement to establish its main point.2. It is meant to present an idea or concept towards an audience.3. It uses rhetorical questions to arouse the minds of the audience.4. It does not persuade the audience to go with the writer's belief or position as written inhis/her essay5. Writer's opinions on the topic are more than enough to support the points raised by thewriter in his/her essay. Please help me and write an essay for me about this !! i will give u 100 points 6. The Cold War was the ideological, political, and economic conflict between the United States and the Soviet Union following World War II. During the Cold War, each country tried to limit the other country's influence around the world by building nuclear weapons, supplying weapons and money to other countries to gain their support, and spreading false information about the other. While the two countries never came into direct, open conflict with each other, they did come into indirect conflict numerous times. This included the Cuban Missile Crisis, when the world seemed on the edge of a nuclear war.A historian has made the claim that too much is being made of the Cold War and that it was never a significant threat to world peace, as proven by the fact that the United States and the Soviet Union never went to war. Read these excerpts from speeches given by Nikita Khrushchev, Fidel Castro, and John F. Kennedy during the Cold War. Use the information from the three passages to write a historical essay that responds to the historian's claim. Be sure to include an introduction paragraph with a thesis, body paragraphs with at least three pieces of evidence supporting your thesis, a counterclaim to your thesis, and a refutation of that counterclaim. Finally, include a conclusion paragraph restating your thesis and the evidence supporting it. Passage 1: Soviet premier Nikita Khrushchev addressed the UN Assembly in 1960 after U.S. military aircraft allegedly entered Soviet airspace.We saw a dangerous manifestation of the work of these forces last spring when the aircraft of one of the largest States Members of the United Nations, the United States of America, treacherously invaded the air space of the Soviet Union and that of other States. What is more, the United States has elevated such violations of international law into a principle of deliberate State policy. The aggressive intrusion into our country by a United States aircraft and the whole course of the United States Government's subsequent behaviour showed the peoples that they were dealing with a calculated policy on the part of the United States Government, which was trying to substitute brigandage for international law and treachery for honest negotiations between sovereign and equal States.3Passage 2: Cuban prime minister Fidel Castro made a speech in 1961 after the United States sponsored the failed Bay of Pigs invasion of Cuba, a Soviet ally.Our position is that we will fight to the last man, but we do not want direct aggression. We do not wish to suffer the destruction that aggression would bring. If the aggression comes, it will meet the total resistance of our people.. . . They are the ones who are bringing the world to the brink of war through their warlike spirit, their own contradictions, and their economic problems which cause them to provoke a series of crises in order to maintain their war economy. Their factories run only when they are building war material. Their regime is marching toward a crisis. It is not like our economy, which is perfectly planned.4Passage 3: U.S. president John F. Kennedy addressed the United States after it was discovered that the Soviet Union had placed nuclear weapons in Cuba, just 70 miles from the U.S. border. I want to take this opportunity to report on the conclusions which this Government has reached on the basis of yesterday's aerial photographs which will be made available tomorrow, as well as other indications, namely, that the Soviet missile bases in Cuba are being dismantled, their missiles and related equipment are being crated, and the fixed installations at these sites are being destroyed. I need help on this question When a nonmetal gains electrons, it becomes this type of ion. What is the Society of Jesus?a group of Protestant settlers who were forced from Europea charter that was created for missionaries in the Americasan American Indian group that was friendly to settlersan order of Catholic priests who were early missionaries Simply the expression 6x + 1 - ( 3x -1 ) Simplify the expressions by combining like terms-3d + 8d - 5d What type of art did Pablo Picasso help to create?PointillismCubismGeometric artHistory art Please help me!!!!!! What is the side lengths, in inches, of a cube with a volume of 11 cubic inch? From the top of a building 42 feet high, the angle of depression to a car stopped on the ground it is 27. What is the distance from the car to the base of the building?