Why should you be chosen over someone else? *

Answers

Answer 1

Answer:

free points

Explanation:

Answer 2

Answer:

i shouldnt i dont deserve it

Explanation:


Related Questions

• Comments are blank which can be blank entered into documents


. Can be blank by clicking on Previous and blank icons in the blank group


electronically

notes

Comments

Next

navigated ​

Answers

Answer:

"can be blank by clicking on previous and blank icons in the blank group...

navigated

Explanation:

Been a while since i learned this this is a edu guess.

which monitor will you prefer in your school crt or fpd and why?​

Answers

Answer: CRT

Explanation: because just because

Write down 7 example of modern motherboard

Answers

1. ATX
2. Nano-ITX
3. Micro-ATX
4. EATX
5. WATX
6. Mobile-ATX
7. Pico-ATX
Hope this helps and mark branliest or give thanks plssss!!!

Read the following scenario:

A theatrical production is in rehearsal for a revival of a classic Tony Award-winning drama. The director, wanting to make the best production possible, has spared no expense. Unfortunately, the production is over budget. The director does not want to eliminate any of the design elements or special effects he has incorporated into the production. Which of the following would a production manager most likely do to get the production back on budget?

A. work with the costume designer to minimize costume changes and use cheaper materials
B. work with the lighting designer to create the effects the director wants using a minimal amount of equipment and personnel
C. eliminate some of the supporting roles
D. offer to take a pay cut

Answers

B is the answer to the question

4.7 Code Practice: Question 2

Answers

for x in range(56, 71):

   print(x, end=" ")

I hope this helps!

The code is in Java.

It uses for loop that iterates from 56 to 70 (inclusive) and prints the number in that range.

Recall that loops are used when there is a repetition. The repetition here is incrementing the number and printing it.

Comments are used to explain each line of code.

You may see the output in the attachment.

//Main.java

public class Main

{

public static void main(String[] args) {

   

    //create a for loop that iterates starting from 56 through 70

    //print the numbers in that interval

       for(int number = 56; number <= 70; number++)

           System.out.print(number + " ");

}

}

You may read more about the loops in the following link:

brainly.com/question/14577420

When locating and correcting accessibility issues for a document, you would click what first?

A.Insert
B.View
C.Home
D.File

Answers

D:file because if you need important info you need to look in someone’s file for info.

Please help!!!
What does the Turtle Graphics Module in Python allow programmers to do?
Display strings on screen
Draw on the screen or create images
Evaluate mathematical equations
Sort a list of information

Answers

Answer:  its Draw on the screen or create images

Explanation: i just to the test and got it right

Importing code to draw on the screen and From the naming of the module itself, Python's Turtle Graphics Module, one can see that the objective of the module is to let python users handle graphics which could be a dot, lines, images or shapes (rectangle, triangle, etc.)

What are the applications of the module?

There are several applications of this module, one of which is: it is useful in designing games. To import the module in your python program, you make use of the following syntax import turtle.

Graphics are defined as a visual representations or patterns on a surface, such as a stone, paper, canvas, wall, or screen, for the sake of education, entertainment, or information. Line, shape, color, texture, type, space, and image are the seven foundational components of graphic design.

Turtle Graphics has been defined as the Python module that is already installed and gives users a virtual canvas on which to draw shapes and images. A fantastic technique just to expose children to coding just through turtle visuals. Little ones may construct and change while learning using quick programs that only have five to ten lines of code.

Therefore,  Python's Turtle Graphics Module, one can see that the objective of the module is to let python users handle graphics.

Learn more about graphics on:

https://brainly.com/question/14191900

#SPJ3

I need help. My teachers use this website to teach us, instead of them teaching, and there is new videos and assignments every week. I haven't done it in quite some time, and am now several weeks behind. is there any tips to help me catch up and stay on track?? please give long and helpful answers​

Answers

Answer:

Try your best. Try to do as much as you can each week. Try to manage your time by dedicating a certain amount of days and hours so you can catch up. Also, if you need help, just come to brainly and ask questions and people can help you.

Good Luck!

On what basis computer can be classified into different categories?

Please answer these question and you will get 16 points​

Answers

Computers are classified into 4 different sizes:

- Mini Computers

- Micro Computers

- Super Computers

- Mainframe Computers

Micro Computers are small computers that are usually called PCs, or personal computers. They complete general purpose tasks and can be from $400 home computers to $15000 workstations. These are the most common types of computers, and most people have them in the forms of desktop computers to laptop computers. Even phones and tablets are considered micro computers because they meet the basic criteria of having local storage, a processor, a graphics coprocessor, and a compatible operating system.

Mini Computers are smaller than Micro Computers and are usually thin clients (which are computers that have a neural connection to a server / mainframe). They are usually employed by businesses becuase they are cheap and they have the processing power to tackle word processing, spreadsheet production, and presentation creation. Mainframe computers are in charge of providing this data at extremely high speeds through cloud networking, or through running an ethernet cable for speeds exceeding 50 GBps.

Super Computers are the fastest computer on the planet, and are usually lined up in rows that take up large rooms. These computers are usually stored like servers: on racks where they link up to other servers in order to quantify large amounts of data at extremely high speeds. These have lots of storage, but since storage isn't their primary use case, it isn't as much as a minframe computer, whose sole purpose is in fact storage and data networking.

Mainframe Computers are servers, and they hold data that is utilized by thin clients and and personnel at a business, or they are used to store massive amounts of data. Servers also act as a checkpoint, espeically networking / internet servers, where if you want to access a website, the website's servers need to access the search request for the specific URL and send you the output (the webpage). Mainframe computers do not have as much processing power as Super Computers, but they provide massive data storage options, which is their main purpose.

Answer:

computers can be classified into 4 types

mainframecomputer

minicomputer

supercomputer

microcomputer

Write a for loop to print all the even numbers from 200 to 300.

Expected Output
200
202
204
206
208
210
212
214
216
218
220
222
224
226
228
230
232
234
236
238
240
242
244
246
248
250
252
254
256
258
260
262
264
266
268
270
272
274
276
278
280
282
284
286
288
290
292
294
296
298
300

Answers

for x in range(200, 301, 2):

   print(x)

I hope this helps!

Two types of are desktop computers and notebook computer

Answers

Answer:

personal computer is the correct answer.

Two types of personal computer are desktop computers and notebook computer. Thus, option A is correct.

Today personal computer is changed to laptop mode. Personal computer is made of CPU, monitor, keyboard, printer and mouse. All input device and output device connected with wire or without wire.

Personal computers are also called as desktop or workstation. These days all become compatible device which is called as laptop. Basically all input devices and output device are fixed in laptop so end user can carry the laptop and used anywhere.

Laptop is charged and used, whereas desktop or workstation just fixed in the table and used it.

Learn more about computer on:

https://brainly.com/question/32297638

#SPJ2

Using the Insert tab, you can convert text into a table and a table into text.

True
or
False

Answers

The Answer is True Not false

love me love me say that u love me fool me fool me go on and fool me : ) answer the question thx

Answers

Answer:

fido

Explanation:

i think sorry if wrong

Answer:

fidooo

Explanation:

Please Help Me
If you had an acer chrombook and it was family linked you had two accounts on it. (The administrater which is the family linked account and a school account) and you forgot the original password to the account how do you completely reboot the computer and start all over again.Like completely reboot like its new.

Answers

Answer:

Sign out of your Chromebook.

Press and hold Ctrl + Alt + Shift + r.

Select Restart.

In the box that appears, select Powerwash. Continue.

Follow the steps that appear and sign in with your Google Account. ...

Once you've reset your Chromebook:

Explanation:

Hope this helps. :)

What does this loop that uses a range function do? for i in range(7, 15): print("goodbye") It prints "goodbye" 8 times, numbered from 7 through 14. It prints "goodbye" 9 times, numbered from 7 through 15. It prints "goodbye" 9 times. It prints "goodbye" 8 times.

Answers

Answer:

It prints "goodbye" 8 times.

Explanation:

The loop being described in this scenario would print "goodbye" 8 times. It would not include numbers detailing the range since the loop instructions only state for the system to print("goodbye") and nothing else. Also, it would only print it 8 times because in a range the endpoint is not included, this is mainly because in programming data structures tend to run on 0-based indexing.

Answer:

8 times is right

Explanation:

There is a feature that allows you to lock the document, to avoid others making changes. True or False

Answers

Answer:

yes there is

Explanation:

1. What is a digital networking app?

Answers

Digital networking is building relationships through social media. Just like traditional networking is an ongoing thing, in the digital world, you read people's posts, comment and share them. You interact and again and again.

Answer:

Digital Networking is a web based and mobile app that makes networking today easy and meaningful.

Explanation:

CA U ANSWER IN 5min. well lets find out ANSWER HERE. :)

Answers

Answer:

Both are True

I hope this helps!

Answer:

Explanation:

12 is 1

and 13 is false but i aint so sure

You want to be a computer engineer in your future. What subjects do you need to be good in?​

Answers

technology and livelihood education

WILL GIVE BRAINLIEST!!!!!!!!
Advantage - Gaining Devices in a technological power system create and add more power than they actually use.


True

False

Answers

Answer:

True

Explanation:

The Quran says that Allah is the God of the Biblical prophets, so He must be. The Quran says that Muslims and Christians worship the same God, so it must be the same God. Ultimately, this is the reasoning of those who believe, as I once did, that Muslims and Christians worship the same God, and it is flawed.

Answer:

True

Explanation:


What are some ways to assess the credibility and accuracy of
an internet source?


A. Determine it’s purpose

B. Check the domain suffix

C. Make sure the author is credible

D. Make sure the site is up to date

Answers

Answer:

B, C, and D

Explanation:

All are ways to assess the credibility and accuracy.

derek is working with photo editing software what guidline should he follow A change the composition of the image B change the lighting in the image C work directly on the original image D work on layers if possible​

Answers

Answer:

A

Explanation:

Answer:

D - work on layers if possible

Explanation:

Adding layers will make sure that if you mess up you can delete the layer instead of having to restart. Also I took the same test and got it correct.

which of the following is least likely to be a scientific experiment

Answers

Answer:

what causes gravity to have a amount of force on one object but not another

Explanation:

Phil wants to make a dark themed superhero movie. What could be his target demographic

Answers

Answer:

d

Explanation:

i think, because it makes the most sense to me.

Answer: Male, aged 18-25

Tricia is managing tasks that have been assigned to her. She needs to enter mileage information in relation to a project which command must she use to access this option?​

Answers

Answer:

well she is doing a task

Explanation:

Answer:

task

Explanation:

7.4 Code Practice 1

Write a program that prompts the user to input a letter grade in either capital or lowercase.
Your program should then output the correct
number of the GPA. See the table below for possible inputs and expected outputs. Your program should define at least one function named
GPACalc that is called from your main program.

The GPACalc function should take exactly one parameter-a string for the letter grade as lower or upper case. It will return either an
integer for the GPA value or a string Invalid, if the letter grade parameter is invalid.

Can someone please help me with this quickly cause I feel like I’m overthinking this

Answers

In python 3.8

def GPAcalc(grade):

   if grade.lower() == "a":

       return 4

   elif grade.lower() == "b":

       return 3

   elif grade.lower() == "c":

       return 2

   elif grade.lower() == "d":

       return 1

   elif grade.lower() == "f":

       return 0

   else:

       return "Invalid"

print(GPAcalc(input("Input a letter grade: ")))

I hope this helps!

The program illustrates the use of conditional statements.

Conditional statements are statements whose execution depends on the truth value of the condition.

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

#This defines the GPAcalc function

def GPAcalc(grade):

   #This converts grade to lower case

   grade = grade.lower()

   #The following if conditions returns the GPA value depending on the letter grade

   if grade == "a":

       return 4

   elif grade == "b":

       return 3

   elif grade == "c":

       return 2

   elif grade == "d":

       return 1

   elif grade == "f":

       return 0

   #If the letter grade is Invalid, then the function returns Invalid

   else:

       return "Invalid"

#This gets input for grade

grade = input("Letter Grade: ")

#This prints the corresponding GPA value

print("GPA value:",GPAcalc(grade))

At the end of the program, the corresponding GPA value is printed

Read more about similar program at:

https://brainly.com/question/20318287

How do you create multiple columns in Word?


A.Click Home>Paragraph, Alignment


B.Click Page Layout > Columns, Click the column layout you want


C.Select the text or click in the section you want to change, Click Page Layout > Columns, Click the column layout you want.

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

The correct answer to this question is B. if you are changing the whole document in a column layout, however, if you want to change the specific text into column layout then option C is correct.

However, according to this question that how do you create multiple columns in word then option B is correct.

That is the document that you want to change its layout into the columns, you need to go and click on Page Layout tab > Columns, Click the column layout you want.

Othe options are not correct because:

Option A is not correct to change the document layout into columns and option C only true when you want a specific text will be changed in the columns layout.  

4.9 Code Practice: Question 4

Answers

Answer:

sum = 0

r = 0

while r < 10:

   p = float(input("Enter Temperature: "))

   sum += p

   r += 1

print("Sum = " + str(sum))

Explanation:

You can change the variables if you like.

In this exercise we have to use the knowledge of computational language in python to write the code.

This code can be found in the attached image.

To make it simpler the code is described as:

sum = 0

r = 0

while r < 10:

  p = float(input("Enter Temperature: "))

  sum += p

  r += 1

print("Sum = " + str(sum))

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


Sam wanted to send a document quickly to an individual 300 miles away. Sam used a
motherboard
fax machine
scanner
O hard drive

Answers

Answer:

Fax Machine its faster and digital

How buffers are used when stream a video or a music from the internet to your computer.

Please give short answers i dont need that much explanation.

Answers

Answer:

A buffer ensures you have a constant data rate even when your internet connection has hickups.

So your buffer sits on your computer and always has the next bits of video or audio available so your video or music keeps playing when the connection fails for a short while.

Other Questions
Which equation represents a line that is perpendicular to line MN? A:y=-1/4x+9B:y=1/4x+6C:y=-4x-7D:y=4x-6 The surgical removal of the larynx is called a The eastern part of the United States and much of western Europe have similar abiotic factors. Do you think the two regionshave similar plant and animal life? Explain why or why not. Regardless of cost, which biomass fuel provides the most energy? help asapIf we compare photosynthesis and cellular respiration in terms of energy conversions involved, we observe that in ______________. acellular respiration, carbon dioxide is used to produce energy. bphotosynthesis, glucose is used to produce carbon dioxide. cphotosynthesis, radiant energy is used to produce glucose and oxygen. dcellular respiration, energy is used to produce oxygen. Evaluate 8j -k+148jk+148, j, minus, k, plus, 14 when j=0.25j=0.25j, equals, 0, point, 25 and k=1k=1k, equals, 1. Are yall a Furry like me, if so what is you fursoina Find the volume of a cone with the radius of 6 height of 8 and length of 10 5 divided by 1/2 is the same as 5 multiplied by _MARKING BRIANLIEST help Evaluate when x=3.12x + 1.5x Which addition does the model below represent?3 + (negative 1)3 + 43 + (negative 4)3 + 1 how would you find the displacement from t = 0.3 to t = 0.33 under this graph? would it be measured on the time axis? Find the area. Simplify your answer. length= 3x+2height= 2x+2 how does an increase in income increase tax revenue Which of these activities occurs during the revision stage?Writing a first draftRearranging sections and paragraphsCreating an outlineCorrecting spelling and grammar mistakes WHY DID BEAT POETRY EMERGE FROM THE NEED TO AMEND SOCIAL INJUISTES IN SOCIETY? *HURYYYYYYYY*Which organizational aids work best for a paper written in chronological order? Check all that apply.sequence charts timelinesVenn diagramsoutlinesweb diagramsblock charts PLEASE HELP I WILL GIVE BRAINLIESTThe chemical equation for a chemical reaction begins as shown. AgNO3 + NaBr _[blank]_?What is the most likely result of the chemical reaction represented by this equation?A. AgBr+NO3B. AgBr+ NaNO3C. NaBr+ CO3D. NaBr+ NaNO3 Marcel claims that the graph below represents a function.State whether Marcel is correct. Justify your answer. Who was the dictator who wanted to conquer all of Europe during World War 11?