PLZZZ HELPPPP
Which list can be sorted with a bubble sort?



(4, 5, 6, 7)


('dog', 'cat', 'fish')


['dog', 'cat', 'fish', 'bird']


[2, 5, 'dog', 'cat']

Answers

Answer 1

Answer:

dog cat fish bird

Explanation:

Answer 2

Answer:

dog cat fish bird

Explanation:

i got it right


Related Questions

Where would you go to access frequently used icons?

File explorer
File manager
Toolbar
Web browser

Answers

Answer:

b

Explanation:

Answer:

C.) Toolbar

Explanation:

The toolbar is a strip of icons that are frequently used.

Which options are qualities of all good requirements documents?
Consistent
llustrated
verifiable
printed
scholarly
feasible

Answers

consistent
feasible
scholarly
verifiable

HELP PLZ AM TIMED!!!~~~

In which view of PowerPoint is the Annotation tools menu available?

Slide Show
Normal
Slide Sorter
Notes

Answers

Answer:

im pretty sure its slide show

Answer:

slide sorter notes

Explanation:

because you're giving a PowerPoint presentation you may want to make some notes on the slides such as circling a word or underlining a phrase or highlight a key concept

help plz

1. Write a function to return the larger of two numbers entered from two user inputted values, where the user inputs are entered after the displays of “First Entry =” and “Second Entry = ”. The numbers should be decimal values (not just integers).



2. Write a function to return the word that is first alphabetically from two user inputted text entries, where the user inputs that text by entering their own words after the displays of “First Entry =“ and “Second Entry =“. Remember that you can use the operators with strings. (You can assume that the user only inputs lower case words.)

Answers

1.

first = float(input("First Entry = "))

second = float(input("Second Entry = "))

def func(num1, num2):

   return max(num1, num2)

print(func(first, second))

2.

first = input("First Entry = ")

second = input("Second Entry = ")

def func(word1, word2):

   return sorted([word1,word2])[0]

print(func(first, second))

I hope this helps!

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

The code can be found in the attached image.

That way, to find it more easily we have the code like:

First code:

first = float(input("First Entry = "))

second = float(input("Second Entry = "))

def func(num1, num2):

  return max(num1, num2)

print(func(first, second))

Second code:

first = input("First Entry = ")

second = input("Second Entry = ")

def func(word1, word2):

  return sorted([word1,word2])[0]

print(func(first, second))

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


Staying at home and working using computers and telecommunications equipment is called

Answers

Answer:

telecommuting

Explanation:

12r3393938

Which type of game is based on doing the best you can with a random setup, emphasizing flexible planning and risk-
taking?
A:card games
B:board games
C:dice games
D:all games
PLSSS PLSSS HELP MEEE

Answers

Answer:

Card Games

You get completely random cards, so you have to plan as you go.

Answer:

A. card games

Consider the following code:

if (90 < = x <= 100)
It should be rewritten as:


if (90 < = x <= 100):

if (90 < = x and <= 100):

if (90 < = x and x <= 100):

Nothing, the if statement is correct

Answers

I’m not sure which one it would be

The code statement if (90 < = x <= 100) should be rewritten as if (90 < = x and <= 100):

How to determine the new statement?

The code statement is given as:

if (90 < = x <= 100)

The above code is wrong, and it would result in a compile error.

The syntax of an if statement that has 2 conditions in Python is:

if (condition-1 logical_operator condition-2):

So, the appropriate statement is if (90 < = x and <= 100):

Hence, the code statement if (90 < = x <= 100) should be rewritten as if (90 < = x and <= 100):

Read more about Python codes at:

https://brainly.com/question/24833629

#SPJ2

The pins on the temperature sensor are connected to;

Answers

A temperature sensor creates a changing voltage signal depending on the temperature it senses. It has three pins: one that connects to ground, another that connects to 5 volts, and a third that outputs a variable voltage to your Arduino, similar to the analog signal from a potentiometer.

True or false. The PIC is an inter grated circuit in which the microprocessor architecture, along with read only memory (ROM) and random access memory (RAM), are all placed into one integrated circuit that may be reprogrammed; the microprocessor cannot.

Answers

Answer:

your partner in crime can not ROM around without a RAM.

Explanation:

so it would be false.

What is the process to correct a single spelling mistake that has been indicated by the spelling checker in PowerPoint Online?


Select the word, then double click.

Select the word, then left select.

Select the word, then right select.

Select the word, then single click.


YOU WILL GET BRAINLIEST FIRST PERSON IF RIGHT

Answers

I’m not to sure what this is asking, if by selecting word- it means the word is already left-click selected, so it would be option 3. If not, then it would be option 2 I believe

Answer:

C!

Mark me as brainliest!!

Help
SOS
Quick




Hurry

Answers

this should be a justified indent

Explain the process of creating a switch statement to replace an if-then-else statement in Java.

Answers

Answer:

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

Explanation:

Let look at an if the else statement

if (condition1) {

 //some code if condition 1 is true

} else if (condition2) {

 // some code if condition 2 is true

} else {

 // some code if condition 3 is true

}

No let look at switch statement

switch(expression) {

 case x:

   // code block

   break;

 case y:

   // code block

   break;

 default:

   // code block

Now let look at your answer.

if then else should be replaced with switch if conditions are fixed.

in the process of replacing

write your condition of if statement  in the case area of swatch

Answer:

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

Explanation:

Let look at an if the else statement

if (condition1) {

//some code if condition 1 is true

} else if (condition2) {

// some code if condition 2 is true

} else {

// some code if condition 3 is true

}

No let look at switch statement

switch(expression) {

case x:

  // code block

  break;

case y:

  // code block

  break;

default:

  // code block

Now let look at your answer.

if then else should be replaced with switch if conditions are fixed.

in the process of replacing

write your condition of if statement  in the case area of swatch

Complete the following sentence.
Some manufactured dams produce BLANK power in addition to retaining water.

Answers

Answer:

Some dams produce renewable hydroelectric power  

Explanation:

hydroelectric is power from water

Answer:

hydroelectric

Explanation:

The correct answer is hydroelectric. Dams are structures created to serve as a barrier and to retain water. Some dams are also used to produce hydroelectric power.

When code is compiled it
A) is read directly from the program.
B)is made into a smaller version.
C) runs slower.
D) is converted into binary code.

Answers

Answer:

A compiler takes the program code (source code) and converts the source code to a machine language module (called an object file). Another specialized program, called a linker, combines this object file with other previously compiled object files (in particular run-time modules) to create an executable file. In short, it's A or D.

Answer:

D - is coverted to binary code

Explanation:

A compiler takes the program code (source code) and converts the source code to a machine language module (called an object file). Another specialized program, called a linker, combines this object file with other previously compiled object files (in particular run-time modules) to create an executable file.

What color line appears under a word that is spelled incorrectly in power point

Answers

Answer:a wavy red line

Explanation:

Hope this helps

Can I have brainliest pls

Answer:

ReD

Explanation:

BeCaUsE

need help asap plzz can you take advantage of the information on social media sites related to careers you are interested in

Answers

Answer:

(The social media site which lets you earn money) lets you post any contents as long as it follow the rules. The advantage information about (The socia media mentioned earlier)is that you can earn money, for making what you want.

Explanation:

fill in the blanks

What will happen when you run this program?

num = 10
while num > 0:
print (num)

a Syntax Error
b Logical fallicy
c Infinite loop
d Definite loop

Answers

Answer:

C. Infinite loop

Explanation:

num will be printed continuously since it will always be bigger than [tex]0[/tex] ([tex]10[/tex] is greater than [tex]0[/tex], satisfying the condition num > 0) making it an infinite loop since it will go on forever.

Hope this helps :)

why did the chicken cross the road wrong answers only lol

Answers

Answer:

to find the store his dad went to for the milk

Explanation:

trust bro trust

Answer:

becuase he weird

Explanation:

What does "&&" mean?

Answers

Answer:

And

Explanation:

& is a simplified version of and

"&&" means "and"

did i get it right

Mandy is writing a paragraph about her favorite basketball team. She wants to explain that the team is so successful because the players work together. What would be the best type of evidence to illustrate Mandy’s proposed topic? a few examples of how the players successfully scored points a brief history of the game of basketball a quotation from the coach about the players a comparison of current players with past successful members of the team

Answers

Answer:

A ) a few examples of how the players successfully scored points

edge 2021 :)

Answer: (A)

Explanation: Just got it right.

How do cybercriminals use JavaScript maliciously?

Answers

Answer:

Explanation:

Formjacking has evolved and become stealthier in the last couple of months, where attackers are now injecting malicious codes into websites to steal more than just credit card information. As a continuation from Symantec’s ISTR 24 report, Symantec has launched an in-depth analysis on formjacking attacks that are frequently in the news highlighting how websites and consumers have been affected in the last one year.

“Each month we discover thousands of formjacking infected websites, which generate millions of dollars for the cyber criminals” warned Candid Wueest, Principal Threat Researcher at cyber security company Symantec.

Before formjacking became popular, cyber criminals were already targeting e-commerce platforms. However, they were mainly attacking the e-commerce or payment systems directly to steal stored transactions, or they used phishing attacks to redirect customers to fake websites. Formjacking is not just about payment card data but it also is used to steal passwords and other personal data from websites.

What is not a way to lower your risk of drowsy driving?

Answers

Answer:

Taking a night time medicince (such as benedryl), or drinking alcohol beofre drviving.

Explanation:

Brainliest please :)

The Danger zone around a robot is?

Answers

maybe a EMP. tell me if im right

Answer:

the area the robot can reach or the work envelope and where all the robots tasks takes place. ... OSHA, the system had an E-stop on it to shut down the robot if needed

WILL GIVE BRAINLIEST!! 20 PNTS!!!

What will be the output of these lines of code:

for i in range (1, 5):

print(i)

A. IndentationError

B. PrintError


C. 1 2 3 4


D. 1 2 3 4 5

Answers

Answer:

C 1,2,3,4

Explanation:

This means I want to count from 0-4 and set it o the current loop I am currently on.

for i in range(0, 5):

 print("i currently equals: ", i)

The result will be

i currently equals: 0

i currently equals: 1

i currently equals: 2

i currently equals: 3

i currently equals: 4

Answer:

c. 1 2 3 4

Explanation:

i got it right on edge

what are the difference between of panchayat and multi party system​

Answers

Answer:

The parties in a multi-party system can control government separately or as a coalition; in a two-party system, however, coalition governments rarely form.

Traditionally Panchayats consisted of elderly and wise people chosen by the local community, who used to settle disputes between individuals and villages. The leader of the panchayat used to be called as Mukhiyas or Sarpanch.

Explanation:

Daniel would like to send a letter to more than one hundred people. He should type each letter separately.


False

True
plz hurry i need it now

Answers

False is the answer to your question
Um False??????????????????????????

An internet layer is a quantity of data that is transmitted on a netowrk without concern for whether it is accurate or whether it arrives at its destination?

True
False

Answers

Answer:

False

Explanation:

The statement being made here is a False statement. An internet layer is not necessarily a quantity of data but instead, it is a group of various different codes, programs, and protocols that allow from the data to travel safely from one endpoint to the other. This is what allows one user from one side of the world to send information to someone else who can receive it from the other side of the world through the internet.

music sites through schools wifi 2020 What is one thing a person should do to stay safe when exercising? 100 pts.!

Answers

Answer:

They should stay away from others (keep workout short or at home)

always do The exercise right-properly

Explanation:

Answer:

they should stay at home and do workouts or they can start a fitness program in a safe area.

pls help IM BEGGING U ITS 10 POINTS PLS

For months, Aida and her three closest friends hod been waiting for a new movie to come out. The movie was
based on one of their fovorite books, ond they promised they would see it all together and then go out fpr
plzza. On the movie's opening weekend, Aida had a lost minute emergency ond wasn't able to go. The others
decided to go anyway becouse they had really been looking forwad to it. That night they posted costantly
about their fun ond new inside jokes. Aida wonted to keep connected, but seeing the constant posts bummed
her out. She felt like no one even cared that she had missed out on their plans.


Imagine: Imagine how the situation could be handled. Come up with as many ideas as
possible: There's no one "right" answer! Then, highlight which option might lead to the most
positive outcome, where most people feel good or taken care of.

Answers

Answer:

It's your Opinion/Decision.

Explanation:

In general, her group of friends could've been considerate people, and should have remembered that she couldn't go and NOT posted about it, and tell her about it the next time they met up.

Which is an example,of an input devices? Choose the answer.

printer

speaker

microphone

monitor

Answers

Answer:

microphone

Explanation:

You have to plug in microphones, and if you plug it in, it is considered an input.

Other Questions
Can someone pls help me need help ASAP , midterm- 60 points 1 1/3 divided by 3/4 1. Sheena and her friends want to form a team to play recreational soccer. They want a combination of males and females for the soccer team. They want to have no more than 7 players on their team.Part A: Write an inequality to represent the situation. Part B: Graph the inequality and shade the area where the possible solutions wouldlie. Part C: What is the difference between the ordered pairs that fall on the line andthe ones that fall in the unshaded area?Part D: Determine whether these combinations of males, m, and females, f, can bepresent. The alliance systems of Europe were based on: a.The agreement of one country to defend another in case of attack b.Equal trading for all countries c.The size of each country's military d.Equal land size to all European countries Is Octane a mIxture?? Use the above facts and rules to answer the following questions. Also provide the Prolog query that would resolve the answer. What swims? Do lizards have scales? What eats fish? What do things with scales eat? Add the following rules to the program: Reptiles are things with scales that slither or crawl. Fish are things with scales that swim and eat fish. Insects fly and are eaten by reptiles and bugs. what is 1 plus 2???????????? 2. In Parallelogram TRIK, what is the mzt?RT5x2(x + 30KII Julie went to the 10%off store and bought 3candy bars for $1.30 each,a loaf of bread for $2.90,and 2 cases of Dr. Pepperfor $6.50 each. Howmuch will she save withthe 10% discount?HELLP pls answer my other questions need help with this question please 1. La hijastra de mis padres esespaola.2. Soy Clarita. Soycostarricense.3. La maestra estadounidensetiene treinta estudiantes enla clase.4. Eres Pablo y tu padre esCastro. Ustedes sondominicanos What do ALL members of an ETHNIC group have in common? Read the sentence and choose the option with the correct number which matches the sentence. (2 points) El escritorio cuesta seiscientos dlares. a 6.000 b 500 c 600 d 5.000 Help PLzzz This narrative element involves how the problem in the story is solved -- the main character may have won or lost, but the problem has been settled. aconflict resolution bconflict cdialogue dclimax Help ASAP !Help ASAP !Help ASAP !Help ASAP ! Which statement is true about the graphs shown? solve please. brjdndjnd 2x + 6y - 3z + 5 - 11(4x - 8y) + 6z - 1 Which of the following reform measures could voters use against a mayor they oppose?a recallan impeachmenta referenduman initiative