Questions
The objective of this assignment is to look at two aspects of testing, one is an...

The objective of this assignment is to look at two aspects of testing, one is an exploration of the theory of testing, the second is the exploration of a practical software tool.

You should pick a specific topic in software testing and explore it in a bit of detail, issues you could look at include: Functional testing, Compatibility testing, Static testing, Dynamic testing, White box testing, Black box testing, Grey box testing, Visual testing, Unit testing, Integration testing, Regression testing, Alpha testing, Beta testing, Usability testing, Certification, etc. or whatever you want.

Write between one page and one and a half pages on the topic, and include at least four references you use - this can be websites, papers, videos or books. Use the six thinking hats as a model for the structure of the article you write so do an Introduction Section (blue hat), some facts and details about the topic (white hat), the benefits of this topic (yellow hat), the shortcomings around this topic (black hat), the alternatives or interesting facts or examples about this topic (green hat), your views and reflections on this topic (red hat), and a conclusion at the end (another blue hat). Additionally include a simple MindMap about the topic.

In: Computer Science

Write the code for following problem. [6 marks] The class Movie is started below. An instance...

Write the code for following problem. [6 marks] The class Movie is started below. An instance of class Movie represents a film. This class has the following three class variables:  title, which is a String representing the title of the movie  studio, which is a String representing the studio that made the movie  rating, which is a String representing the rating of the movie (i.e. PG13, R, etc) public class Movie { private String title; private String studio; private String rating; // your code goes here } a) Write a constructor for the class Movie, which takes a String representing the title of the movie, a String representing the studio, and a String representing the rating as its arguments, and sets the respective class variables to these values. b) Write a second constructor for the class Movie, which takes a String representing the title of the movie and a String representing the studio as its arguments, and sets the respective class variables to these values, while the class variable rating is set to "PG". c) Write a method get PG, which takes an array of base type Movie as its argument, and returns a new array of only those movies in the input array with a rating of "PG". You may assume the input array is full of Movie instances. The returned array need not be full. d) Write a piece of code that creates an instance of the class Movie with the title “XYZ Royale”, the studio “ABC Productions”, and the rating “PG13”.

In: Computer Science

Explain the key differences between using if statements to check for null values and using Optional...

Explain the key differences between using if statements to check for null values and using Optional types and why we might prefer that latter.

In: Computer Science

Please examine and make an financial assessment on Ford over the last 5 years compared to...

Please examine and make an financial assessment on Ford over the last 5 years compared to the auto industury? [200 words or more][Will give thumbs up]

In: Economics

How does Adler perceive the relationship between the mind and the body. what do he see...

How does Adler perceive the relationship between the mind and the body.

what do he see as the primary goal of humans?

when does Adler believe people hav formed the basis for their adult personality? What can someone do to change it after that?

what does Adler mean by his term style of life and how hoes this relate to personality?

In: Psychology

You are performing an initial health history of a 58-year-old Hispanic male who is a new...

You are performing an initial health history of a 58-year-old Hispanic male who is a new patient at the clinic. His wife is with him in the examination room. He has a persistent cough and this morning noticed that he had specks of blood when he coughed. He says he has always had a bit of a cough, but it seemed to get worse about a year ago, but he never really worried about it, because he thought it was just bronchitis-like he had a couple of years ago. He is a long-time smoker since he was 16 years of age and smokes a little less than two packs of cigarettes per day. His wife states that he seems to be getting thinner and he is definitely more short of breath while playing baseball with the grandchildren. His wife is very concerned that her husband has developed lung cancer.

How might this patient have developed lung cancer?

In: Nursing

1. Read the Netflix Challenge Preview the document – datacenter edition paper to understand the relationship...

1. Read the Netflix Challenge Preview the document – datacenter edition paper to understand the relationship between the Netflix challenge and the cluster resource allocation problem.

2. Quasar Preview the document classifies resource allocation for scale-up, scale-out, heterogeneity, and interference. Why are classification criteria important, and how are they applied?

3. What are stragglers and how does Quasar deal with them?

In: Computer Science

Why a company would consider going public? What are some of the advantages and disadvantages?Please answer...

Why a company would consider going public? What are some of the advantages and disadvantages?Please answer in the form of paragraph, no bullet points or numerical and I will rate. Thank you in advance!

In: Operations Management

Organizational structures provide a foundation for the organization in terms of communication, decision making, power distribution,...

Organizational structures provide a foundation for the organization in terms of communication, decision making, power distribution, etc. At the end of the day organizations fall into one of three major categories in terms of their formal organizational structure: functional, divisional, matrix. For this assignment, you will utilize the organization you are currently or have worked for to answer the following questions:

1. List an organization in which you have or are currently working.

2. What organizational structure does the organization embody? Justify this answer.

3. Describe the benefits of the organizational structure in terms of your experience in the organization.

4. Describe the drawbacks of the organizational structure in terms of your experience in the organization.

5. Would the organization benefit from a change in structure? Why or why not?

6. How does the organizational structure support the organization's culture? Explain thoroughly.

In: Operations Management

Green Vehicle​ Inc., manufactures electric cars and small delivery trucks. It has just opened a new...

Green Vehicle​ Inc., manufactures electric cars and small delivery trucks. It has just opened a new factory where the C1 car and the T1 truck can both be manufactured. To make either​ vehicle, processing in the assembly shop and in the paint shop are required. It takes 1/25 of a day and ​1/75 of a day to paint a truck of type T1 and a car of type C1 in the paint​ shop, respectively. It takes 1/45 of a day to assemble either type of vehicle in the assembly shop. A T1 truck and a C1 car yield profits of $325 and $225​, respectively, per vehicle sold.

Formulate the linear program that provides the combination of T1 and C1 that maximizes yield, clearly specifying (a) variables, (b) objective function and (c) constraints.

In: Operations Management

Using Jeliot, execute the following tree algorithm:      import Prog1Tools.IOTools;           class Node {          ...

Using Jeliot, execute the following tree algorithm:

     import Prog1Tools.IOTools;
    
     class Node {
          Node left;
          Node right;
          int value;

public Node(int value) {
              this.value = value;
          }
     }

     public class GeneralTreeTest {
       public static void main(String[] args) {

// build a simple tree add 5 nodes to the tree
          Node root = new Node(5);
          System.out.println("Tree Example");
          System.out.println("Building tree with root value " + root.value);
          insert(root, 1);
          insert(root, 8);
          insert(root, 6);
          insert(root, 3);
          insert(root, 9);
          System.out.println("Traversing tree ");
          printOrder(root);

}

     public static void insert(Node node, int value) {
          if (value < node.value) {
            if (node.left != null) {
              insert(node.left, value);
            } else {
              System.out.println(" Inserted " + value + " to left of "
                  + node.value);
              node.left = new Node(value);
            }
         } else if (value > node.value) {
            if (node.right != null) {
              insert(node.right, value);
            } else {

System.out.println(" Inserted " + value + " to right of "
                      + node.value);
                 node.right = new Node(value);
             }
          }
     }

     public static void printOrder(Node node) {
        if (node != null) {
           printOrder(node.left);
           System.out.println(" Traversed " + node.value);
           printOrder(node.right);
        }
     }
}

This algorithm first inserts five nodes into a tree structure and then traverses the tree. Using the Jeliot environment, load, compile and execute this java algorithm to understand its operation. Determine the kind of tree structure that is being created and determine what kind of traversal the algorithm is conducting.

Finally, conduct an Asymptotic analysis for the provided algorithm and report your analysis including Big O, Big Omega, or Big Theta as appropriate. Post your findings to the discussion forum and review and respond to the postings of your peers.

If you have arrived at a different answer or analysis than your peers, discuss your findings with your peers and attempt to determine whose analysis is most accurate.

In: Computer Science

A furniture store has maintained monthly sales records for the past 20​ months, with the results...

A furniture store has maintained monthly sales records for the past 20​ months, with the results shown below.

Month

Sales

1

2360

2

1820

3

1760

4

1560

5

1950

6

1950

7

3360

8

1740

9

3780

10

2400

11

2160

12

2760

13

3570

14

2820

15

2800

16

1890

17

2500

18

3630

19

2530

20

3270

Assume you have determined there is NO SEASONALITY in this time series.​ Therefore, you want to fit a linear trend model​ (that is, trend​ only) to the data.

Calculate the linear trend equation.​ (Round coefficients to the nearest whole​ number.)

y Subscript t Baseline equalsyt=nothing​+

nothing​*t

What are the test statistic and​ p-value to test for a significant trend. Round both to two decimal places.

T​ = nothing

​p-value = nothing

Is the trend significant using a​ 10% significance​ level?

Yes

No

What is the value of​ R-squared? (Round to two​ decimals.)

nothing

Forecast the sales for the next month​ (t =​ 21). (Round to the nearest whole​ number.)

Upper F 21 equalsF21=nothing

Based on the​ R-squared value, how confident are you in this​ forecast? (That​ is, how accurate do you think the forecasts will​ be?)

A.

Not confident at all because the​ R-squared value is so low

B.

Very confident because the​ R-squared value is high

C.

Somewhat confident because the​ R-squared value is moderate​ (not extremely high but not extemely​ low)

In: Math

x=61,y=73 compute x+y and x-y in8-bit 2's complement system, then convert the answer to decimal

x=61,y=73 compute x+y and x-y in8-bit 2's complement system, then convert the answer to decimal

In: Computer Science

Design specifications for an arrow are that they each weigh 100 ± 10 grams. The process...

Design specifications for an arrow are that they each weigh 100 ± 10 grams. The process to make the arrows has a standard deviation of four units.


a. What is the process capability index? Assume that the process is centered with respect to specifications. Round your intermediate and final answers to 4 decimal places (e.g., .12345 would be rounded as .1235, not .1234).

Process capability index ?

b. Suppose the process average shifts to 92. Calculate the new process capability index. Round your intermediate and final answers to 4 decimal places (e.g., .12345 would be rounded as .1235, not .1234).

New process capability index ?


c. What is the probability of defective output after the process shift? Round "z" values to 2 decimal places. Round probabilities to 4 decimal places (so a probability of .12345 would be entered as .1235, not .1234 or 12.345% or something else).

Probability of defective output ?

In: Operations Management

On Franco’s first day of work as an entry-level account manager at an advertising firm, he...

On Franco’s first day of work as an entry-level account manager at an advertising firm, he had lunch with three women who also were entry-level account managers at the firm. During lunch, the three women made comments to Franco that they appreciated how “fit” he was and that they were glad to have a male colleague who was “easy on the eyes” and “probably great in the sack.” Franco is very conservative about sexuality and these comments made him feel very uncomfortable. Franco quit his new job immediately after lunch and filed a sexual harassment suit against the advertising firm claiming that he experienced a hostile work environment.

Using the legal rule for determining whether a hostile work environment exists, identify two reasons why Franco is unlikely to win his lawsuit.

In: Operations Management