i need an quote for a ad im using gatorade

Answers

Answer 1

Answer

Want the best aid for after a game, then try some Gatorade!

Explanation:

Hope this helps lol! plz mark as brainliest!


Related Questions

Implement the function printTwoLargest that inputs an arbitrary number of positive numbers from the user. The input of numbers stops when the first negative or zero value is entered by the user. The function then prints the two largest values entered by the user. If fewer than two distinct positive numbers are entered a message to that effect is printed instead of printing any numbers. Hint: Duplicates will cause problems. Try to make sure that you find a way to ignore them.

Answers

Answer:

The function in Python is as follows:

def printTwoLargest():

   chk = 0

   list1 = []

   num = int(input("Enter: "))

   while num > 0:

       for i in list1:

           if i == num:

               chk+=1

               break;

       if chk == 0:

           list1.append(num)

       chk = 0

       num = int(input("Enter: "))

   list1.sort()

   if len(list1) >= 2:

       print("Largest:", list1[-1])

       print("Second:", list1[-2])

   else:

       print("Length of list must be at least 2")

Explanation:

This defines the function

def printTwoLargest():

This initializes a check variable to 0

   chk = 0

This initializes an empty list

   list1 = []

This prompts the user for input

   num = int(input("Enter: "))

The following loop is repeated until input is 0 or negative

   while num > 0:

The following for loop checks for duplicate

       for i in list1:

           if i == num: If duplicate is found

               chk+=1 The check variable is set to 1

               break; And the for loop is exited

The input is appended to the list if the check variable is 0 (i.e. no duplicate)

       if chk == 0:

           list1.append(num)

This sets the check variable back to 0, for another input

       chk = 0

This prompts the user for another input

       num = int(input("Enter: "))

This sorts the list

   list1.sort()

This prints the two largest if valid user input is 2 or more

   if len(list1) >= 2:

       print("Largest:", list1[-1])

       print("Second:", list1[-2])

if otherwise, this prints that the length must be at least 2

   else:

       print("Length of list must be at least 2")

How many slides would be in a PowerPoint presentation based on the formatting of the Word outline?
A. two
B. Three
C. Eight
D. Eleven

Answers

Answer:

A. two

Explanation:

can i have brainliest please

Answer:

Explanation:

It depends on how the presentation is organized.  If there is one slide for each major section, then the answer is B. Three as there are 3 sections.

But if each outline has its own slide, then there will be D. Eleven slides.

Explain benefits and disadvantages of using BNC over F-Type connectors on coaxial cables

Answers

Answer:

The benefits and disadvantages of using BNC over F-Type connectors on coaxial cables are;

The benefits of the BNC includes;

1) Easy connect and disconnect for a more rapid connection unlike the F-Type connector which is a screw connector

2) Reduction on stress on the termination of the coaxial cable

3) Appropriate in systems that see frequent reconfiguration unlike te F-Type connector that is permanently attached

4) Prevent unwanted disconnection ensuring image consistency by locking into place

5) Can extend to 300 ft.

The disadvantages of the BNC connectors are;

1) A separate power supply for the cable is required

2) Is used only for video transmission

3) Cannot be used for audio

4) The center wire is not easily visible like those of the F-Type connector which serves as a pin

5) The BNC connector is not watertight like the F-Type connectors

6) There are no provision for properly and securely attaching the cable to the camera for field work such that it can be easily disconnected while in use unlike the F-Type connectors

7) It is not as easy to manufacture like the F-Type connector and it is more expensive

8) The installation of the BNC connector on a coaxial cable is more intricate and the center cable is hidden from view after the BNC is attached thereby making it not possible to see if there is an error in installation which is unlike the F-type connector that takes less than 30 seconds to be attached to a cable

9) The F-Type connector provides more cost savings during installation than the BNC connector

Explanation:

The BNC connector is a type of bayonet connector used more frequently on CCTV systems. The benefits of the BNC includes;

The F-Type connectors are usable on SATV, CATV, and Digital TV where they are used together with RG6 or RG11 cables

why do computer architects prefer memory dump to be in base 16​

Answers

Answer:

We use hexadecimal numbers primarily because they provide a more human-friendly representation and it is much easier to express binary number representations in hex than in any other base number system.

Explanation:

someone, please answer this.

This lesson showed you the general form of the syntax for a for loop in JavaScript:for

(initialize counter; condition; update counter) {code block;}

What does each part do, and why is it necessary?

Answers

Answer: A loop will continue running until the defined condition returns false . ... You can type js for , js while or js do while to get more info on any of these. ... initialization - Run before the first execution on the loop. ... But it can be used to decrement a counter too. statement - Code to be repeated in the loop.

Explanation:

Which of the statements below describe how to print a document?

Click on the Print icon at the tip of the screen.

Click on Print in the system tray.

Select Print from the Start menu.

Select Print from the File menu.


(On the picture above is what I have plz let me know if I’m wrong)

Answers

I pretty sure it’s the first one also I don’t think that you pick two answers because it does not say to do so

HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP

Answers

Answer:

I should be C! :D

Answer:

B

Explanation:

Using the drop-down menus, correctly complete the sentences.
A(n)
vis a set of step-by-step instructions that tell a computer exactly what to do.
The first step in creating a computer program is defining a(n)
the next step is creating a(n)
v problem that can be solved by a computer program.
A person writing a computer program is called a(n)

Answers

Answer:

It is  computer program , Problem, Logic, Programmer

Explanation:

on edge

Input a list of positive numbers, terminated by 0, into an array Numbers[]. Then display the array and the largest and smallest number in it.

Answers

Answer:

hope this helps and mark my ans brainliest if it helped.

Explanation:

def main():

Numbers = []

n = input("Enter the number: ")

while n != 0:

Numbers.append(n)

n = input("Enter the number: ")

if len(Numbers) > 0:

max = Numbers[0]

min = Numbers[0]

for i in range(0, len(Numbers)):

if max < Numbers[i]:

max = Numbers[i]

if min > Numbers[i]:

min = Numbers[i]

print Numbers

print "Largest: ", max

print "Smallest: ",min

  

main();

which operating systems have both workstation and server editions?
-ios
-android
-ubuntu
-windows

Answers

Answer:

WINDOWS

Explanation:

The operating system that have both workstation and server editions is windows. The correct option is D.

What is an operating system?

The operating system (OS) controls all of the computer's software and hardware. It basically manages files, memory, as well as processes, handles input along with output, and controls peripheral devices such as disk drives and printers.

The most chief software that runs on a computer is the operating system. It is in charge of the computer's memory, processes, as well as all software and hardware.

Several computer programs typically run concurrently, all of which require access to the computer's processor (CPU), memory, and storage.

Operating systems now use networks to connect to one another as well as to servers for access to file systems and print servers. MS-DOS, Microsoft Windows, and UNIX are the three most popular operating systems.

Thus, the correct option is D.

For more details regarding operating system, visit:

https://brainly.com/question/6689423

#SPJ2

Other Questions
Tommorow I am doing a give away for 50 points winner is who ever answers the most question on my page correctly A food web shows all energy transfer interactions within a sample of organisms. A food web diagram is provided.The role of the snapper turtle is bestdefined by which of the following? To break down waste products made by producers, such as algae Top consumer that receives its energy from other consumers Converts light energy from the sun and transfers it to consumers Provides energy to the sunfish, snails, and bass A model of a house is created by putting a square pyramid on a cube. The resulting figure has a surface area of 165 square inches 5 in. What is the height of one of the triangular faces? O 2 inches O 4 inches O 5 inches O 6 inches which equation has no real solutions?a. -2x^2=-168b. 4x^2+76=32c. 25x^2=1d. 43-x^2=12 help me find the answer 100 point if u help iron is ...... useful metal limited resources on the galapagos islands result in? 12-14. You roll a cube with the numbers 13, 16, 18, 20, 22, and 24 on it. You then spin a spinner which has 6 sections. The letters on the spinner are E, B, G, K, D, and H. Find each probability. Show all work. P(rolling a 2, spinning an A) _________ 6. P(rolling an even number, spinning a vowel) _________ 7. P(rolling a number less than 3, spinning a consonant) _________ Mutated DNA what is the correct answer HAVE A WONDERFUL DAY! Dnde est el restaurante?1. Son 20 euros.2. Cerca de la playa.3. Es muy moderno. Give the equation for the new circle obtained by translating the circle (x+2)^2 + (y-1)^2 = 25 by 3 units to the right and 2 units down After World War I, problems among nations had been resolved and relations were pretty good.truefalse Question 2Which of the following is studied in environmental scienceinteractions between living organisms and their nonliving environmentimpact of humans on the environmentinteractions between organismsa of the aboveQuestion 3huary words. What song is this and who is the Artist?Steady callin' my phoneI done told you before that it's over, leave me 'loneKnow it's hurtin' you to see me goneDark clouds, you gon' see me stormI won't go backBut trust me, you're gon' hold thatHold that (mmh, mmh)Get you off my mind nowI can't get you off my mind nowI can't get you off my mind nowI can't get you off my mind now (mmh, mmh)I can't get you off my mind nowI can't get you off my mind nowI can't get you off my mind nowI can't get you off my mind now (mmh, mmh)I ain't tryna play these game no moreI don't wanna be textin' your name no moreI ain't tryna feel this pain no moreAnd I'm sorry but my feelings ain't the same no more (no)Used to be my homie, you ain't gang no more (no)I am not a n*gga you could claim you no more Convert:2 tons 15,000 ounces = ounces who painted the monalisa The puppy was____ lacking enthusiasm for our walk. -protracted -conspiracy -gibberish -silhouette solve the equation 20d+2=0 PLEASE HELP!!!! Erika wants to buy a new chair for her living room. She has found one she likes at two different stores.The chair at The Sitting Store has a list price of $150.00, and she has a coupon for 35% off.The chair at The Dining Depot has a list price of $132.95, and she has a $25 rebate.Which company offers the better price if she wants to pay the least amount for the chair? What is that price?