please tell me what I did incorrect

40 points

please

i really need it

Please Tell Me What I Did Incorrect40 Points Please I Really Need It

Answers

Answer 1

you put a semi colon in your inputs

if you liked this response, please rate thanks and award brainliest

hope this helped :)


Related Questions

6. You should make sure your computer is located in a place where airflow is not restricted.
True
O False

Answers

the answer would be true

Answer:

Explanation:

Computers generate a lot of heat, especially the desktops. You want to make sure the air currents take the heat away.

The statement is true.

Codehs 4. 5 Circle movement- Need help. Here's the problem:


Create two variables x and y and set x = get_width()/2 and y=get_height()/2. Create a circle at position x,y with radius 45. Used the keydown method to move the circle up, down, left and right with the w,s,a,d keys. If you finish create more key movements with diagonals q,e,z,c and increase and decrease size with r,f and change to a random color with x

Answers

Using the knowledge of computational language in python  it is possible to write a code that used the keydown method to move the circle up, down.

Writting the code:

x = Mouse.x-Circle1.x

dy = Mouse.y-Circle1.y

length = sqrt(dx*dx+dy*dy)

if (length > Circle.radius)

 ratio = Circle1.radius/length

 Circle2.x = Circle1.x + dx*ratio

 Circle2.y = Circle1.y + dy*ratio

else

 Circle2.x = Mouse.x

 Circle2.y = Mouse.y

end

See more about python at brainly.com/question/18502436

#SPJ1

Which boot option is a part of the unified extensible firmware interface (uefi) standard that enables a client to retrieve the necessary boot loader and system files from a server over the network?

Answers

The boot option that is a part of the unified extensible firmware interface standard and enables a client to retrieve the necessary boot loader and system files from a server over the network is known as the Preboot Execution Environment (PXE).

What is Booting?

Booting may be defined as the strategy of initiating a computer as started via hardware such as a button or by a software command. This process generally powers the computer and starts the operating system effectively.

Preboot Execution Environment (PXE) is a cluster of standards that permits a computer to load a specific operating system through a network connection. This strategy is utilized in order to install an operating system quickly.

Therefore, the preboot execution Environment (PXE) is the boot option that is a part of the unified extensible firmware interface standard and enables a client to retrieve the necessary boot loader and system files.

To learn more about the Booting process, refer to the link:

https://brainly.com/question/27773523

#SPJ1

What is responsible for maintaining and administering computer networks and related computing environments including systems software, applications software, hardware, and configurations. a.network administrator/network engineer b.network security analyst c.systems engineer d.network consultant

Answers

Answer:Network Administrator/ Network Engineer

Explanation:

How can I design a digital prototype from a paper prototype?

2 Sentences!!

Answers

To get a digital prototype from a paper prototype, the designer should endeavor to:

Note the design that they want to test and draw them with the use of markers. Then, they can convert these to digital form and run them.

How can a digital prototype be created?

A digital prototype can be created by first understanding the design that is to be created. Designers can either choose to have a digital or paper prototype. The problem with the paper prototype is the fact that it does not allow for user interaction. However, it is still a good way to understand things like color schemes.

So, when a designer gets an idea, he or she can note this on paper and even make some colorings that will allow for a better understanding of the material. Next, they can create the digital form of the design and test run this on a system. When they follow all these steps, they will e able to obtain a better result.

Learn more about prototypes here:

https://brainly.com/question/7509258

#SPJ1

Veronica and doug devised a scheme to defraud by sending a message via e-mail to thousands of computer users, hoping to get rich from those who responded. This is their first attempt at this scheme. They may have violated:

Answers

The act of Veronica and doug devising a scheme to defraud by sending a message via e-mail to thousands of computer users, hoping to get rich from those who responded, is a violation of computer security policies. It’s called email phishing.

It’s an email attack in which the attacker sends a large number of malicious emails to a broad audience. It is the most prevalent kind of email attack. Phishing attacks can include any malicious email that tries to fool you into clicking a link, opening a file, or performing any other harmful action.

Learn more on phishing attacks here: https://brainly.com/question/2547147#

#SPJ4

PLEASE HELP!! This is a question. Please answer using python. Only if you have experience. I will give the first person brainliest!

Answers

Answer:

what question is this ?? can you be more specific i need more details on the question

Explanation:

The program written in Python programming language that performs the required computations is:

n = int(input("n: "))

while n != 1:

   if n%2 == 0:

       n = int(n/2)

   else:

       n = int(3 * n + 1)

   print(n)

How to write the program in Python programming language?

The program written in Python programming language, where comments are used to explain each line is as follows:

#This gets input for n

n = int(input("n: "))

#The following loop is repeated until the value of n is 1

while n != 1:

#This checks if n is an even number; n is halved, if this condition is true

   if n%2 == 0:

       n = int(n/2)

#If n is an odd number; n is tripled and increased by 1

   else:

       n = int(3 * n + 1)

#This prints the sequence of numbers generated

   print(n)

The above program generates the sequence of numbers for n

Read more about python programs at

https://brainly.com/question/26497128

#SPJ1

note: this is a multi-part question. once an answer is submitted, you will be unable to return to this part. consider the following propositions: l: the file system is locked. q: new messages will be queued. n: the system is functioning normally. b: new messages will be sent to the message buffer. the goal of this exercise is to determine whether the following system specifications are consistent: if the file system is not locked, then new messages will be queued. if the file system is not locked, then the system is functioning normally, and conversely. if new messages are not queued, then they will be sent to the message buffer. if the file system is not locked, then new messages will be sent to the message buffer. new messages will not be sent to the message buffer.

Answers

Based on the multi-part question, if we consider the following propositions:

l: the file system is locked.

q: new messages will be queued.

n: the system is functioning normally.

b: new messages will be sent to the message buffer.

The goal of this exercise is to determine whether the following system specifications are consistent and the answer is given below:

This system is consistent.

Explanations

We use L,Q,N, and B to stand for the basic propositions here,

“The filesystem is locked,” “New messages will be queued,” “The system is functioning normally,” “Newmessages will be sent to the message buffer,”  

Then the given specifications are

¬L?Q,¬L?N, ¬Q?B, ¬L?B, and ¬B.

If we want consistency, then we had better have B false in order that¬B be true.

This requires that both L and Q be true, by the two conditional statements that have B false in order that ¬B be true

Read more about propositions here:

https://brainly.com/question/13263750

#SPJ1

What does else do in an if/else statment?
O Gives the if statement a command to run if the condition is false
O Runs a command regardless of whether the condition is tru or false
O Determines whether the condition is true or false
O Tells the condition which code to run

Answers

Answer:

Gives the if statement a command to run if the condition is false

6) What is a folder?​

Answers

Answer: a folder is a folding cover or holder, typically made of stiff paper or cardboard, for storing loose papers.

Explanation:

A folder is a directory or a location where electronic documents are stored for reference purposes

Aspects of the social context that a person grew up in and is now functioning in (macro level context) include:_____

Answers

Aspects of the social context that a person grew up in and is now functioning in (macro level context) include option C) Prejudice and discrimination.

How are prejudice and discrimination related?

Discrimination is known to be a term that tends to influence people in regards to opportunities as well as their well-being.

Note that consistent exposure to issues of discrimination can be a factor that lead people to internalize the  issues or topic of prejudice or stigma that is known to be linked or directed against them, showing in shame, low self-esteem, fear and others.

Therefore, Aspects of the social context that a person grew up in and is now functioning in (macro level context) include option C) Prejudice and discrimination.

Learn more about discrimination from

https://brainly.com/question/1084594
#SPJ1

Aspects of the social context that a person grew up in and is now functioning in (macro level context) include:

A)Religious group

B)Social class

C)Prejudice and discrimination

D)Family values

12. What is a benefit of online backup services?
Even if your computer is lost or stolen, you will still have your data.
The service is always free.
The service is always very fast.
O The service does not require an Internet connection.

Answers

Answer: Even if your computer is lost or stolen, you will still have your data.

Explanation:

1. 2. 3 Units

Assuming an optical disk has a capacity

of 25GB, how many 60 minute HD videos

of 3. 9GB each could be stored on the

disk?

Answers

Approximately 6 videos, each has 60 minutes duration and 3.9 GB capacity can be stored on a 25GB optical disk.

In this question, it is asked to calculate how many videos can be stored on a 25 GB optical disk. So, the calculation is given below:

The optical disk has a capacity of 25GB.

Each video's required storage is 3.9 GB which has 60 minutes in duration.

First, we calculate how many videos can be stored on an optical disk that has 25 GB capacity.

For this purpose, we need to divide the capacity of each video by the total capacity of an optical disk which is 25 GB.

So,

25/3.9 = 6.410 number of videos (~ 6 videos)

Therefore, 6 videos of 60 HD minutes can be stored on the 25 GB optical disk.

You can learn more about optical disk at

https://brainly.com/question/28066311

#SPJ4

consider a mail order database in which employees take orders for parts from customers. the data requirements are summarized as follows: the mail order company has employees, each identified by a unique employee number, first and last name, and zip code. each customer of the company is identified by a unique customer number, first and last name, and zip code. each part sold by the company is identified by a unique part number, a part name, price, and quantity in stock. each order placed by a customer is taken by an employee and is given a unique order number. each order contains specified quantities of one or more parts. each order has a date of receipt as well as an expected ship date. the actual ship date is also recorded. draw an er using class notation with all cardinality constraints.

Answers

An ER diagram has three parts: Entities are things that exist in the real world and can include people, places, and even concepts.

What is an ER diagram?An entity relationship diagram (ERD), often referred to as an entity-relationship model, is a graphic representation that shows the connections between individuals, things, locations, concepts, or events within an information technology (IT) system. An ER diagram has three parts: Entities are things that exist in the real world and can include people, places, and even concepts. An example of an entity in a school management system is a department. Other examples include courses, teachers, students, buildings, and administration. A database's data must be modeled using an entity-relationship diagram, or ER diagram. It serves as the foundation upon which a database is constructed. ER diagrams outline the entities and their attributes, which are the types of data we will store.

To learn more about ER diagram, refer to:

https://brainly.com/question/13266919

#SPJ4

_____is a type of ai often broadly defined as software with the ability to learn or improve without being explicitly programmed.

Answers

Machine learning would be the answer

What do you think are the importance of learning the components of motherboard?

Answers

Answer:

A motherboard, also known as the "main board," is the central circuit hub that allows connection between all components attached to the computer.

Explanation:

​you must have a for every variable you intend to use in a program. a. purpose b. variable definition c. memory space d. literal value e. none of these

Answers

Answer:a

Explanation:

Which of the following is equivalent to a subroutine depending on the programming language?(1 point)

function


model

accessor


mutator

Answers

Mutator and Accessor are equivalent to a subroutine, depending on the programming language. Thus, options B and D are correct.

What is a programming language?

Programming languages are a type of electronic medium that includes strings, graphical designs, and other visual components. They are essentially machine outputs that a person may use.

Immediate access to personal parameters including their mutator and accessor methods are available.

Attributes need to guarantee comprehensive security of the information essential to provide a class its initial meaning, which would need a person to back up the data with the help of a programming language. Therefore, option  B and D is the correct option.

Learn more about Programming languages, here:

https://brainly.com/question/13563563

#SPJ1

If you have a computer with three hard disks, what type of raid fault-tolerant configuration will make best use of them?

Answers

Answer:

RAID 1 or RAID 5

Explanation:

RAID 1 mirrors data across all disks, if you lose 1 disk, you still have 2 copies of that disk.

RAID 5 spreads data evenly across all disks with parity, if you lose 1 disk then lost data can be reconstructed. If you lose 2 disks then all data is most likely lost.

RAID 1 is ideal for important information. RAID 5 is ideal for storage efficiency and security.

In older languages, you could leave a selection or loop before it was complete by using a ____ statement. group of answer choices

Answers

In older languages, you could leave a selection or loop before it was complete by using a goto statement. The correct option is D.

What is a go to statement?

The goto statement is also referred to as the jump statement. It is used to pass control to another section of the program.

It always jumps to the specified label. It can be used to pass control from a deeply nested loop or switch case label to another.

The machine code produced by goto will be a direct jump. And it will most likely be faster than a function call.

Thus, the correct option is D.

For more details regarding goto statement, visit:

https://brainly.com/question/12975443

#SPJ1

Your question seems incomplete, the missing options are:

A) next

B) go next

C) loop

D) go to

PROJECT: SLIDE SHOW: NETWORKING LAYERS (100 points please help)
Create a slide show with six slides containing pictures and text. The slide show is about one of TCP/IP networking layers. Choose the transport, Internet, or network access layer for your slides. The slides should cover:

- Title Slide: Give, as a minimum, the name of the layer you are presenting and your own name.
- The Main Use of the Layer: Give at least two examples of how the layer is used.
- Diagram: Include a diagram (using squares, circles, arrows, etc.) showing the relationship between the end points and the intervening network at this layer.
- Protocols: Name and briefly describe at least two protocols used at this layer.
- Supporting Protocols: Name and describe at least two protocols that support the protocols in your layer. (If there are none, explain why that is the case.)
- Supported Protocols: Name and describe at least two protocols supported by the protocols in your layer. ( SEE PICTURE ↓ )

Answers

Answer:

Do you want an ppt or like an explanation on how to make a good ppt

Which of the following describes pattern or figure of something to be made and is an example of a data abstraction?(1 point)

function

procedure


model


method

Answers

The option that best describes pattern or figure of something that need to be made and is an example of a data abstraction is option a: function.

Is a function an example of abstraction?

A function is known to be called the names a set of one statements, so one can say that function as it is, is an example of abstraction.

In regards to programming, the term abstractions is known to be one that can make as well as  break productivity and this is the reason that a lot of times, there are found to be commonly used functions which are known to be collected into libraries where they can be reused by others.

Therefore, The option that best describes pattern or figure of something that need to be made and is an example of a data abstraction is option a: function.

Learn more about data abstraction from

https://brainly.com/question/14578704
#SPJ1

Answer: function

Explanation: got it right on edgen

In the ____ letter style, the date, complimentary close, and signature block are positioned approximately one-half inch to the right of center or at the right margin.

Answers

In the modified block letter style, the date, complimentary close, and signature block are positioned approximately one-half inch to the right of center or at the right margin.

There are certain ways in which a business letter should be written and following of the correct protocol for writing business letters is important.

Among the various letter types is the modified block letter style in which there is a single space in between the body, and the addresses of both the recipient and the sender. A single space accounts for approximately one-half inch to the right of center or at the right margin in such type of letter.

Modified block letter styles are similar to full-block business letters with only a few changes.

To learn more about modified block, click here:

https://brainly.com/question/15210922

#SPJ4

1. Which is NOT a type of file that InDesign cannot use.

a. Graphics

b. Text Files

c. InDesign Files

d. None of the above

2. You cannot resize a graphic once you put an image in InDesign.

true or false

Answers

Answer: 1. InDesign 2. False

Explanation:

A type of file that InDesign cannot use is known as InDesign File. Thus, the correct option for this question is C.

The statement "You cannot resize a graphic once you put an image in InDesign" is absolutely false.

What do you mean by an InDesign file?

An InDesign file may be defined as a type of desktop publishing software application that is significantly utilized for creating flyers, brochures, magazines, newspapers, books, and other publications.

The types of files that InDesign can remarkably use for operating its well-known function of constructing literary works like magazines, newspapers, books, etc. are graphics, text files, editing files, animation files, etc.

In the InDesign application software, you can generally resize or modify a graphic once you put an image in InDesign. This is facilitated by a tool known as an editing tool.

Therefore, both the questions given above are well described.

To learn more about InDesign application software, refer to the link:

https://brainly.com/question/14478872

#SPJ2

the program reads in variables totalbudget and productcost from input. assign numproducts with the maximum number of products that can be made with a budget of totalbudget, if each product costs productcost to make. ex: if input is 13 4, the output is:

Answers

The costs interested in creating a development are called Product Costs. These costs include fabrics, labor, presentation supplies, and plant aloft.

What does the product cost?The direct expenses incurred in creating a product are called product costs. Direct labor, for instance, would be one of a manufacturer's product expenses, bare essentials, industrial supplies. When a company produces a good or offers a service, it incurs production expenses, which are sometimes referred to as product costs. Formula for Product Cost Per Unit: (Total Product Cost) / Number of Produced Units. The sales price must be more than or equal to the product's unit cost in order to prevent losses. In a case when the sale price is equal, there is no profit or loss and the sales price covers the cost per unit.

To learn more about product cost, refer to:

https://brainly.com/question/27468665

#SPJ4

a computer program consists of two blocks written independently by two different pro- grammers. the first block has an error with probability 0.2. the second block has an error with probability 0.3. if the program returns an error, what is the probability that there is an error in both blocks?

Answers

Using the probability of independent events, it is found that there is a 0.06 = 6% probability that there is an error in both blocks.

What is probability?Mathematical representations of the likelihood of an event occurring or of a proposition being true are dealt with in the area of probability.The probability of an event is a number between 0 and 1, where 1 denotes certainty and 0 normally denotes impossibility.Gonna determine how likely something is to occur, use probability. Many things are hard to predict with 100% certainty.We can only forecast how likely an event is to occur using it, or how likely it is to occur.P (E) = Number of positive results and The formula for determining an event's probability uses the total number of possible outcomes. Probability is hence the possibility that a random occurrence will take place.

If two occasions, A and B, are separated, the probability of both happening is the expansion of the probability of each ensuing, that is:

P(A ∩B)= P(A)P(B)

In this problem, the possibilities are:

Event A: Error on the first block, with 0.2 probability, hence

P(A)=0.2

Event B: Error on the second block, with 0.3 probability, hence

P(B)=0.3

The probability that there is an error in both blocks is:

P(A ∩B)= P(A)P(B)= 0.2(0.3)=0.06

0.06 = 6% probability that there is an error in both blocks.

To learn more about probability, refer to:

https://brainly.com/question/24756209

#SPJ4

_____ is a system in which a finite set of words can be combined to generate an infinite number of sentences.

Answers

Generativity is a system in which a finite set of words can be combined to generate an infinite number of sentences.

What is a sentence?

A sentence is a grouping of words, phrases, or clauses that convey meaning to us. An object or a subject can be found in a sentence. These help the person to communicate with one another.

Generativity can be defined as the way to weigh A grammar or a sentence being spoken for. It is defined as a found set of the whole with is defined, usually made with a finite number, to create an infinite number of sentences or words combined.

Learn more about sentences, here:

https://brainly.com/question/12684453

#SPJ1

The term _________________ refers to two or more computers that are connected together in order to share hardware, software, and/or data.

Answers

The term network refers to two or more computers that are connected to share hardware, software, and/or data.

What are hardware and software?The physical, observable components of computers, such as the monitor, keyboard, and speakers, are referred to as hardware. The software consists of the operating systems and applications that must be installed. The Processor, Memory Devices, Monitor, Printer, Keyboard, Mouse, and Central Processing Unit are a few examples of hardware in a computer. Computer programs: A computer system's software is made up of a variety of instructions, processes, and documentation. Software refers to the processes and programs that enable a computer or other electrical device to function. Software like Excel, Windows, or iTunes is examples. A computer system's input, processing, storage, output, and communication devices are its five basic hardware constituents.

To learn more about hardware and software, refer to:

https://brainly.com/question/23904741

#SPJ4

(q017) documentaries that explore - and sometimes critique - the documentary form itself are known as _____________ documentaries.

Answers

The documentaries that explore  and sometimes critique, the documentary form itself are known as reflexive documentaries.

Check more about  Reflexive Documentary below.

What Is Reflexive Documentary?

The reflexive documentary is known to be a kind of a documentaries that is known to be based on the association that tends to exist between the filmmaker as well as the audience.

It is known to be one that is often pushing viewers to be able to depict them based on their perceptions as well as re-analyze their ideas of truth.

Since there are different kinds of  documentaries , therefore one can say that the documentaries that explore  and sometimes critique, the documentary form itself are known as reflexive documentaries.

Learn more about documentaries from

https://brainly.com/question/3452395
#SPJ1

Early opera was originally designed to reflect the manner in which seventeenth-century aristocrats sung their conversations to each other on a daily basis. True or false?.

Answers

False because you can’t I already sloved it
Other Questions
Alan ran for president of the chess club and he received 27 votes there were 60 members in the club what percentage of the club members voted for Alan Suppose a 0.1M solution of a monosaccharide contains 1000 monosaccharidemolecules. How many monosaccharide molecules would be in a 0.1 Msolution of a disaccharide? In this project, you will apply what you've learned about types of written Standard English.Here is your goal for this assignment:Write Standard English texts for a variety of real-life situations.Select one of the options below for a writing assignment of 250-500 words in which you apply what you have learned about varieties of written Standard English.Option A: Create your own collection of written Standard English texts. Research and locate a technical text, an informational text, and a literary text. Explain how and why your choices fit each of the categories.Option B: One of the ways in which Benjamin Franklin mastered English was to "translate" a text by first paraphrasing it, writing it again as a poem, and then moving it back to prose. By this method, he made sure that he understood everything a text was saying by saying it in his own words. Imitate Benjamin Franklin by selecting a news story on a current event. Translate it into a brief short story (add characters, suspense, etc.) or a poem. Then reflect on and write about how form influences the outcome of your text.Option C: Locate a legal document (terms of use agreement, etc.). "Translate" it into ordinary English. Then reflect on and write about what you had to do to successfully accomplish the task.For each of these options, remember to document your source(s) properly, using MLA format (click here to review the Style Guide). Josh is looking for the best deal on a refrigerator that has a wholesale price of $549. Help him compare the price of the refrigerator at two different stores by completing the following.a) Josh goes to the super store that marks up the refrigerators wholesale price 50%. Ignoring tax, how much would he pay for the refrigerator at this store?b) Josh then looks at the refrigerator in a department store that marks up the refrigerators wholesale price 60%. But because of customer loyalty program, he would receive a 10% discount off the in-store price. Ignoring the tax, how much would he pay for the refrigerator at this store?pls help i hope this makes sense!! What are the social and physical obstacles that you encounter and have to overcome to exercise regularly?. Victor walked 6.4 kilometers on Sunday, and he will also walk to school a few times thisweek. Each round trip is 1.9 kilometers long. If Victor walks to school 3 days this week, whatwill be his total walking distance for the week?Write and solve an equation to find the answer.kilometers 0.05 multiply blank = 0.5 the maximum horizontal distance a boy can throw a ball is 45 m. assume he can throw with the seam initial speed at all angles. how high does he throw the ball when he throws it straigth upward One half + four fifths vertical Solve by factoring. Check your answers. 4 x=-8 x+5 please help!!! I'll mark brainliest2. Evaluate how each of the following affects your personal physical fitness and dietary practices. a. Your school b. Your communityc. Your family and cultured. Your friends e. Any media and advertising you see f. Your emotions Some rocks are pushed deeper into the earth. As these rocks experience greater heat and pressure, what type of rock will they turn into if they do not melt?. whats another word for hoy Consider the diagram and proof below.Given: WXYZ is a parallelogram, ZX WYProve: WXYZ is a rectangleParallelogram W X Y Z with diagonals is shown.StatementReason1.WXYZ is a ; ZX WY1.given2.ZY WX2.opp. sides of are 3.YX YX3.reflexive4.ZYX WXY4.SSS thm.5.ZYX WXY5.CPCTC6.mZYX mWXY6.def. of 7.mZYX + mWXY = 1807.?8.mZYX + mZYX = 1808.substitution9.2(mZYX) = 1809.simplification10.mZYX = 9010.div. prop. of equality11.WXYZ is a rectangle11.rectangle thm.What is the missing reason in Step 7? triangle angle sum theoremquadrilateral angle sum theoremdefinition of complementaryconsecutive s in a are supplementary how do you simplify this expression? can you explain it step step by step (01.06 MC) The gas carbon dioxide is a pure substance. Which of the following is true about carbon dioxide?Group of answer choicesA:Carbon and oxygen are chemically bonded in it.B:Carbon and oxygen retain their original identity in it.C:It can be separated into carbon and oxygen using physical methods.D:The proportion of carbon and oxygen is different in different samples of the gas. dylan has made two different chemical batteries for a physics project. he is measuring how much voltage the batteries each produce. the first battery produces 3.12 volts and the second battery produces 2.8 volts. using the correct number of significant figures how much greater was the voltage produced by the first battery compared to the second?0.320 volts 0.3 volts 0.32 volts 0.3200 volts In choosing among alternatives to qualify a solution, a person is focusing on ______ if he or she considers such things as ethical implications, personal values, profits, and/or company reputation What did most state constitution makers emphasize in writing those documents?A) Managing intercolonial relationsB) Ensuring separation of church and stateC) Preventing tyranny Which reason refutes the theory that asia is the original home of the first americans?