Type the correct answer in the box. Spell all words correctly.
What does Clara create that programmers can use to write code?
Clara works in a software development company. Her boss identifies that she has strong problem-solving skills. Clara’s boss places her on the planning team to create____ for programmers.
This is for Edmentum final! thanks

Answers

Answer 1

Answer:

design documents

Explanation:

Usually, in a software development company or information technology (IT) department, software is developed through a team effort. Such teams have programmers and various other professionals, such as software developers and engineers. These professionals perform parts of the entire software development process. For example, the programmer is not the only person in a team who can formulate a solution to a problem. Many times, software developers and system analysts do this. They create design documents for the programmer to follow. Based on these design documents, a programmer writes the code for the program.


Related Questions

Edhesive unit 2 lesson 5 coding activity 1 Write code which creates three regular polygons with 11, 14 and 19 sides respectively. All side lengths should be 1.0. The code should then print the three shapes, one on each line, in the order given (i.E. The one with 11 sides first and the one with 19 sides last). Sample run: regular hendecagon with side length 1.0 regular tetrakaidecagon with side length 1.0 regular enneadecagon with side length 1.0

Answers

Answer:

public class Polygon {

   private String name;

   private int sides;

   private double sideLength;

   public Polygon(String name, int sides, double sideLength) {

       if (sideLength <= 0) throw new IllegalArgumentException("Length cannot be zero or negative.");

       if (sides <= 0) throw new IllegalArgumentException("Sides cannot be zero or negative.");

       this.name = name;

       this.sides = sides;

       this.sideLength = sideLength;

   }

   public String getName() {

       return name;

   }

   public void setName(String name) {

       this.name = name;

   }

   public double getSideLength() {

       return sideLength;

   }

   public void setSideLength(double sideLength) {

       if (sideLength <= 0) throw new IllegalArgumentException("Length cannot be zero or negative.");

       this.sideLength = sideLength;

   }

   public int getSides() {

       return sides;

   }

   public void setSides(int sides) {

       this.sides = sides;

   }

   (use the at sign here)Override

   public String toString() {

       return "regular " + name + " with side length " + String.format("%.1f", sideLength);

   }

}

public class TestPolygon {

   public static void main(String[] args) {

       Polygon sides11 = new Polygon("hendecagon", 11, 1);

       Polygon sides14 = new Polygon("tetrakaidecagon", 14, 1);

       Polygon sides19 = new Polygon("enneadecagon", 19, 1);

       System. out. println(sides11);

       System. out. println(sides14);

       System. out. println(sides19);

   }

}

Explanation:

This java source code defines a class that creates a regular polygon based on the number of sides given to it.

Below is a screenshot of the program code and output.

The image below shows an encoding for a black and white pixel image. The first two
bytes of the data (circled in red) are used to encode the width and height of the
image. What is the best term for this type of "data about the data"? Explain why it is
necessary to include this data in the encoding.

Answers

Answer:

where is the image i need the image

Explanation:

Can you see the processing step yes or no

Answers

Answer:

I cannot see anything on my screen

Explanation:

I can't see anything............................

Sending the same messages to a large number of users is called​

Answers

Answer:

Can you give me the options

Please please help what kind of device. is this​

Answers

Answer:

uuuummmmm im pretty sure that is some type of tablet

Explanation:

sorry im not much help.........

Answer:

It's a Hard drive. It's on your pc

Explanation:

WILL GIVE BRAINLIEST! The command simplify is used if you only want the first two digits of a decimal to appear in the interpreter.

true

false

Answers

Answer:

falsee?

Explanation:

Answer:

Yes its false i believe

Explanation:

this is very simple i just need someone to type out this for me

Answers

Answer:

#27

2i , -2i, i, -i            i^2 = -1

1(x - 2i)(x + 2i) 1(x-i)(x+i)

x^2 +2x-2x -4.2i x^2 -xi-xi -i

(x^2 + 4)      x^4 + 1

x^2 +x^2 +11x

x^4 +5x^2 +4

+4+2+2+-1

*This was not simple for me

Which line of code will cause the loop to execute exactly one time?

for b in range(12, 12):
for b in range(12, 13):
for b in range(13, 13):
for b in range():

Answers

for b in range (12, 13)?

Your friend told you that your favorite celebrity couple split. What is the best media form to use?
a
Wiki
b
Social Network
c
Infotainment site
d
Forum

Answers

Answer:

b

Explanation:

I think social network is the first source of every update of reality even wiki gets info from social network

Answer:a)wiki

kalo salah maaf ya

What is the output?
class car:
model = "
age = 20
myCar = car()
myCar.age= myCarage + 10
print(myCarage)
Output:

Answers

Answer:

Following are the modified code to this question:

class car:#defining a class car  

   model = ""#defining a class

   age = 20#defining an integer variable that hold a value

myCar = car()#creating reference of class

myCar.age= myCar.age+ 10#Use reference to add value in age variable

print(myCar.age)#print age value

Output:

30

Explanation:

In the above code class care is defined, inside the car a string variable "model", and an integer variable "age" is defined that hold a value, in the next step, class reference myCar is defined, that used to add value in age variable an at the last we use print method to print age variable value.

Dora has inserted a text box into a Word document that she is formatting. Which strategy will not format text boxes? Create a link between two text boxes. Set the height and width of the text box. Add background images to the text box. Link the text box to another document.​

Answers

Answer:

D. Link the text box to another document.​

Explanation:

A text box is an object that you may add to your page that allows you to place and enter text wherever in it. The correct option is D.

What is a text box?

A text box is an object that you may add to your page that allows you to place and enter text wherever in it. Content boxes may be handy for attracting attention to a certain text and also for moving text about in your document.

Dora has inserted a text box into a Word document that she is formatting. Therefore, the strategy that will not format text boxes is strategy will not format text boxes.

Hence, the correct option is D.

Learn more about Text Box:

https://brainly.com/question/13812028

#SPJ2

How many bit make a byte .​

Answers

Answer:

It is easy .8 bits.You have to note this

Answer: 8

1 byte = 8 bit

Which of the following is an example of data an Earth-observing satellite would collect?
studying ocean and land changes

monitoring the movement of ships

tracking signals between different points on Earth

studying weather patterns

Answers

Answer:

A

Explanation:

Hopefully this helps

With _________, users will receive recommendations for items liked by similar users.

Answers

Answer:

Collaborative filtering

Explanation:

Collaborative filtering is an algorithms family in which there are various ways to determine the same users or items also there are various ways to determine the rating depending upon the same users rating

Therefore as per the given situation, the above is the answer

Hence, the same is to be considered

Other Questions
What is the name of this leaf Which graph represents y=3vx hello, can you please help me :)How do environmental factors and heredity affect personal health? Thanks plz helplppppppppppppppppppppppp solve this plzz hurry plaese big points brainliest Find the equation of the line that passes through the given points. Write the equation in slope-intercept form.(-2,-4) and (-4,-3) PLEASE HELP!!!! WILL GIVE BRAIN I PROMISE. A struggle between opposing forces or characters is called theO resolution.O conflict.O narrative.O structure. What polygons have at least 4 sides? Given a mean of 80 and a standard deviation of 3, label the normal curve below. Determine whether the ordered pair is a solution of the linear inequality. x 3; (2, 6) Why is Vietnam fighting over the South China Sea? G is the centroid of AABC, FC = 35, AG = 42, BF = 57, and DG = 14. Find BG. WHICH TASK BEST FITS THE ROLE OF A DESIGN ENGINEER ? Evaluate the following expression. Enter your answer in simplest form 1 4/2 + 2^2 A well-defined road map to achieving a career goal is a/an: Which detail most affected the historical point of view of The Pillow Book?It was written without any sense of bias.It was written based on facts rather than opinions.lt was written during the time in which the events occurred.It was written about the people living in the same country as the author. In a recent school newspaper survey, 3,000 randomly selected teenagers were asked to cite their primary transportation method to school. Fifteen of 20 teenagers said they use their own car to get to school. A 90% confidence interval to estimate the true proportion of teenagers who drive their own car to school is found to be (0.5907, 0.9093). Which of the following is a correct interpretation of the confidence level?Ninety percent of the time, the procedure used to generate this interval will capture the true proportion of teenagers who drive their own car to school.Ninety percent of all samples of this size would yield a confidence interval of (0.5907, 0.9093). (not correct)There is a 90% chance that the true proportion of teenagers who drive their own car to school will be (0.5907, 0.9093).Ninety percent of all the samples of size 3,000 lie in the confidence interval (0.5907, 0.9093).There is a 90% chance that randomly selected teenagers will be part of the 75% who drive their own car to school. Match each type of mass movement to its description.the rapid downhill flow of a mixture of rock,soil, and waterslumpmudflowthe slow downhill movement of rock and soilcreepthe rapid downhill movement of a mass ofrock, debris, or soillandslidea loosely connected mass of rock and soilthat moves a short distance Plz help Fill in the blank with the correct observation from the simulation. As the days go on, the distance that the moon is from the sun in the night skyA. Stays the sameB. DecreasesC. Increases