Answers

Answer 1

Answer: It probably will cost a lot of money

Explanation:


Related Questions


8.10 Code Practice Question 1

Write code that takes in two words from user input and stores them in the variables x and y respectively. Then, the programs the values in x and y, and print x and y).

Note: The variable names x and y are required for this question

Answers

x = input("Enter a word: ")

y = input("Enter a word: ")

x,y = y, x

print(x)

print(y)

I hope this helps

Since we need to perform some coding functions such as:

Asking for the input of a numberStoring them as individual variablesPrinting/Displaying the values independently.

First thing we need to do is to declare the unknown variables as x and y

Next would be to write the input this way:

x= input ("Put a word:")

y= input ("Put a second word:")

x,y = y, x

Print(x0

Print(Y)

Read more about programming here:

https://brainly.com/question/18900609

Define watcher block

Answers

Answer:

Happens when you are watching a series / film / drama / etc. but can not retain the attention span to watch for long periods of time. As well as the shortened viewing time, the ability to retain what has been viewed is impaired.

Explanation:

The Block Watcher puts the power of a microprocessor to work analyzing the current feed to the rails. This detector has been designed to eliminate many of the installation problems associated with the installation of signal systems. ... Then connect the detector output switch to your signal system.

What routing protocol is the most popular distance-vector routing algorithm used to determine the best routes within a network

Answers

Answer:

RIP

Explanation:

RIP is a routing protocol that stands for Routing Information Protocol. It is a distance-vector routing algorithm which uses a hop count for routing its metric. RIP is the most popular and frequently used on internet. RIP uses hop count, which means it goes from low hop count to high hop count.

Therefore, it is the Routing Infomation Protocol which is the most popular distance-vector routing algorithm used to determine the best routes within a network.

Write 5-7 sentences about your own personal observations in which you have been part of a "filter". You might have experienced this is in your Twitter feed, specific advertisements, or your search engine results. Be specific.

Answers

Answer:

Answered below.

Explanation:

I made a search for a product on an online grocery store. The search results came in and I bought the product. On subsequent visits to the grocery store website or on browsing other sites, I had special advertisements pop up. These advertisements were suggesting products to me similar to the one I bought on the grocery store. It was a targeted advertisement that had been sent based on my recent searches and purchases on the site. So I knew that was a filter.

Categorize each memory card as based on new or old technology. PLEASE HELP.

Answers

Answer:

SD Cards and XDQ Cards are new XD Cards and CF Cards are old.

Explanation:

Hope this helps.

What is the purpose of slicing?

a. To combine characters in order to form a single string
b. To combine two or more strings into one big string
c. To pull out a group of characters from a string
d. To pull out one specific character from a string

Answers

Answer:

C

Explanation:

Because a and b are talking about combining and when you slice you don't combine when you slice and when you slice something its into 2 or more parts, unlike what d says

The type of medium used to hide data in steganography is referred to as __________. This may be a photo, video, sound file, or Voice over IP, for example.

Answers

Answer:

:L

Explanation:

Answer:

symmetric cryptography

Explanation:

how do you take a picture on an apple computers

Answers

Answer:

You go to the launcher, then find Photo Booth. Photo Booth allows you to take photos. You can only take photos on the side where the screen is, since there isn't a camera on the back. I recommend taking a picture with a phone instead. For a screenshot, press command-shift-3.

Hope this helps!

hey plz help, and thanks

Answers

Answer:D im pretty sure

Explanation:im sorry if get it wrong So sorry ok just sorry

D maybe??? Sorry if it’s wrong

What kinds of circumstances would lead you to writing a function versus using a loop? please explain in simple terms

Answers

Answer:

1. You want to use parameters

2. You don't want your program to run multiple times

3. You want to call that snippet of code throughout your program

hope this helped :D

Write a program that inputs a text file. The program should print the unique words in the file in alphabetical order. Uppercase words should take precedence over lowercase words. For example, 'Z' comes before 'a'. I am stuck on this python assignment. Don't need the answer asap, just some explaining of how to write code to do that. I know about the built in sort function

Answers

Answer:

Read the file and save it to a variable as a string, split the string variable and cast it to a set object using the set function to get the unique words in the file. Then use the max function with the key attribute to use regular expression module "re" to compare the first letter of each item to return in a list comprehension or append to a list.

Explanation:

The open function is used to import a file in python, the split string method splits the string to a list of items and the set function removes any duplicates of a word or item.

Using the for loop statement, iterate over the items and compare and return the items in alphabetical order with the 're' search method getting the item with uppercase letters with higher precedence than lowercase.

Which statements are true? Select 4 options.

A class variable can be a different type of class.

A class variable can be a list of instances of a different class.

An instance of a class cannot be changed after it is created.

Functions defined in a class are called methods.

Variables defined in the constructor of a class can be accessed by the main program that uses instances of the class.

Answers

Answer: All of the answers are correct EXCEPT "An instance of a class cannot be changed after it is created.

Explanation: I've done the problem. Also, if you have an instance of a class, you can no longer change it. It is frozen in time as that one instance. If had a class defining pets and you made an instance dogA where the pet was a brown medium sized dog, dogA would always be a brown medium sized dog. I think, at least.

Answer: A class variable can be a different type of class.

A class variable can be a list of instances of a different class.

Functions defined in a class are called methods.

Variables defined in the constructor of a class can be accessed by the main program that uses instances of the class.

Explanation:

got it right on edgen

help plz (will give brainliest)

Answers

Answer:

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

Explanation:

This is the python program in the question that is:

def sum(n1,n2):

n=n1+n2

return n

The question is: write a function CALL that displays the return value on the screen.

So, the correct program is written below:

*********************************************************************  

def sum(n1,n2):# it is function that define sum

 n=n1+n2 # variable n that store the result of n1 and n2

 return n # return the result

print(sum(3,5))# call the sum function with parameter 3 and 5 , it will print 8

print(sum(4,101))

# call the sum function with parameter 4 and 101 it will print 105

********************************************************************************

you can also store the sum result into another variable, because this function return the sum. So, you can store that return value into another vairable and using the print function, to print the value of this variable such as:

*****************************************************************************

def sum(n1,n2):# it is function that define sum

n=n1+n2 # variable n that store the result of n1 and n2

return n # return the result

result= sum(6,9) # store the sum result into another variable i.e result

print(result)# print the result variable value

*****************************************************************************

WILL GIVE BRAINLIEST!! If a flowchart has a diamond with the words “yes” and “no” to the sides of it, then it is representing a program that is a sequence.
true
false

Answers

Answer:

false

Explanation:

a flowchart with a diamond and with the words “yes” and “no” to the sides of it, then it is representing a program with branches.

it represents branch, like an if , else statement.

It is not in sequence.

Answer:

True

Explanation:

What are the most common forms of information?

Answers

Answer: web search

Explanation:

Which of the following is an object-oriented language?

A. C
B. C++
C. BASIC
D. COBOL

Answers

Answer:

C++

Explanation:

Significant object-oriented languages include: (list order based on TIOBE index) Java, C++, C#, Python, R, PHP, Visual Basic.NET, JavaScript, Ruby, Perl, Object Pascal, Objective-C, Dart, Swift, Scala, Kotlin, Common Lisp, MATLAB, and Smalltalk.

The programs' structure is made obvious via OOP. OOP makes the C++ code easier to maintain, alter, and debug by encouraging “Don't Repeat Yourself” (DRY) programming practices. OOP allows for quicker development times and less code needed to create fully reusable apps. Thus, option B is correct.

What role of C++ as an object-oriented language?

The following are several justifications for calling C++ a partial or semi-object oriented language. The primary action is not a class action.

Object-oriented programming is supported by C++, but it is not a feature of the language itself. You don't even need to use an object once to construct a legitimate, well-coded, and brilliantly styled C++ program.

Therefore, Object-oriented programming can be implemented using C++'s core features. It contains classes and objects as well as the OOP principles of inheritance, encapsulation, abstraction, and polymorphism. It also has access to specifiers.

Learn more about language here:

https://brainly.com/question/29751978

#SPJ2

What is a resistor?
O A switch
O A light bulb
O A battery

Answers

Answer:

A Battery would be the correct awncer

How does entertainment relate to coding?

Answers

Answer:

not sure if this is the type of answer you're looking for but: Entertainment can relate to coding because in TV shows and movies, there is lots of editing. Especially with cartoons. Inorder to make these, we have to use coding. This can even relate to real life plays and preformenses depending on how much technology you use to preform them.

Which of these purchases is most likely to be paid for with a credit card
A. Soda
B. Lotto ticket
C. Parking fee
D. Plane ticket

Answers

Answer:

plane ticket?

Explanation:

What is the answer to 4.9 Code Practice: Question 2

Answers

Answer:

sum = 0

for i in range(20, 100, 10):

sum = sum + i

Print(sum)

Explanation:

The answer to 4.9 Code Practice: Question 2 is 200  of the total output.

What is the output?

An output record that a laptop sends. Computers best paintings with virtual information. Any entry that a laptop gets have to be digitised. Often records must be transformed and returned to an analogue layout whilst it is output, as an instance the sound from a laptop's speakers.

The answer to 4.9 Code Practice: Question 2 is 200 output of all the total outputs this is the answer.

Read more about the Code :

https://brainly.com/question/3653791

#SPJ2

anybody wanna be friends?

Answers

i wouldn't mind......

yes Avacado?????????????????????

Complete the following sentence.
The definition of the ________ was changed in order to be based on something more stable.

Answers

Answer:

The person above is so wrong!

Explanation:

The definition of the resilience was changed in order to be based on something more stable.

What resilience really implies?

Resilience is known to be the way or ability of a person to bee able to stand against any form of  adversity and still be able to bounce up from any difficult life issue.

Conclusively, Note that the act of being resilient means is too strong but  resilience was changed in order to be based on something more stable.

Learn more about stable from

https://brainly.com/question/1348241

Can someone tell me how to fix the keyboard on ipad?- its in the middle of my screen andd i dont know how to do it

Answers

Answer:

Here

Explanation:

To move keyboard to bottom of screen, you just need to tap and hold the keyboard icon at the bottom-right corner of the keyboard, choose Dock option. To fix iPad keyboard in middle of screen, please tap and hold the keyboard icon, then choose Dock.Nov 5, 2020

Jose would like to have text with predefined styles that can flow around an image in a variety of shapes and sizes
Which object should he insert into his document?

WordArt

SmartArt

shapes

images

Answers

Answer:

A) WordArt

Explanation:

WordArt can be set to the predefined styles within Word and can be set to flow and wrap around images in word.

Answer:

Word art

Explanation:

Do saving and loans associations have different categories?

Answers

Answer:

No

Explanation:

Because Savings and loan associations (S&Ls) are one of four types of "banks", there only one of four, not two of four

plzz help me with this question.........

Write a program to input a number find the sum of digits and the number of digits. Display the output also.......

sample input - 7359
sample digits - 24
number of digits - 4​

Answers

Answer:

please mark as brainliest!!

Explanation:

public class SumOfDigits{ public static void main(String args[]) { Scanner sc = new Scanner(System.in); System.out.println("Please enter a number to calculate sum of digits"); int number = sc.nextInt(); // Remember number/10 reduces one digit from number // and number%10 gives you last digit int sum = 0; int input = number; while (input != 0) { int lastdigit = input % 10; sum += lastdigit; input /= 10; } System.out.printf("Sum of digits of number %d is %d", number, sum); // closing Scanner to prevent resource leak sc.close(); } }

Write a program that prints the numbers 1 - 50. If the number is even print the word 'EVEN!' next to it. If the number is odd print the word 'ODD!' next to it.

Answers

In python 3.8:

for x in range(1,51):

   print(str(x)+" EVEN!" if x %2==0 else str(x)+" ODD!")

This works for me. Best of luck.

Hyperlinks can only point to webpages.

True or False

Answers

Answer:

I believe thats false

Can you please help me with the AP Computer Science Fill in the blank. What goes on number 5 8 and 18. I don’t understand this I need help programming.

Answers

Answer:

you can probably just delete them. what programming language is this?

what is wrong with this picture?????

Answers

“you got a tight little-“

uhm y’know everything is wrong with it terrifying really is uhm but yeah.

oh god that leg tho

Other Questions
Kenia rotated Triangle ABC 90 counterclockwise to create Triangle ABC. If Kenia performed this transformation correctly, what is the measure of angle B'? What is the measure of angle A and C. Number value only. URGENT 9) The process of photosynthesis uses the carbon incarbon dioxide molecules as building blocks forwhich type of molecule? (Think (H1706) Which expression is equivalent to 15x + 3? 15(1x + 1) 5(3x + 1) 3(5x + 1) 2(15x + 3) which statement describes a self-feeder have to stand correctly for brainliest Geometry Question:Find the value of x that makes N the incenter of the triangle (See attached) During a chemical or physical change, energy may be...a. created into another formb. destroyed and reinvented into another formc. converted into another formd. disappeared Settlers in early Texas learned many new skills Why does Annie decide to go over Niagara Falls in a barrel?A It is a chance to prove she is stronger than she appears.B Annie wants to be the first person to try the stunt.C It gives her a reason to visit a favorite vacation spot.D Annie believes it will help her make money. please help ill give that brainliest thing if you give a correct answer i have a time limit please hurry It can be easier to learn medical terminology if students first study medical mathematics. Greek and Latin words and phrases. anatomy and physiology. bioengineering techniques and methods. 1: A man owns 50 shares of stock worth $30 each. The corporation declared a dividend of 6% payable in stock. How many shares did he then own? which of the following does the author state is the cause of the flooding in Nubia Which of the tables represents a function?Table AInput Output5 35 24 1Table BInput Output1 23 25 3Table CInput Output0 01 21 3Table DInput Output4 24 34 4 Table A Table B Table C Table D Neurons transmit signals to the central nervous system. The brain processes this information to initiate a response. Two neurons communicate with each other through the . The is released at the site to initiate action potential and carry the signal through the body. can someone explain PLEASE I really need help with this question!!!!!!!!!! It all began with Effie's getting something in her eye. It hurt very much indeed, and it felt something like a red-hot sparkonly it seemed to have legs as well, and wings like a fly. Effie rubbed and criednot real crying, but the kind your eye does all by itself without your being miserable inside your mindand then she went to her father to have the thing in her eye taken out. Effie's father was a doctor, so of course he knew how to take things out of eyes.When he had gotten the thing out, he said: "This is very curious." Effie had often got things in her eye before, and her father had always seemed to think it was naturalrather tiresome and naughty perhaps, but still natural. He had never before thought it curious.Effie stood holding her handkerchief to her eye, and said: "I don't believe it's out." People always say this when they have had something in their eyes."Oh, yesit's out," said the doctor. "Here it is, on the brush. This is very interesting."Effie had never heard her father say that about anything that she had any share in. She said: "What?"The doctor carried the brush very carefully across the room, and held the point of it under his microscopethen he twisted the brass screws of the microscope, and looked through the top with one eye."Dear me," he said. "Dear, dear me! Four well-developed limbs; a long caudal appendage; five toes, unequal in lengths, almost like one of the Lacertidae, yet there are traces of wings." The creature under his eye wriggled a little in the castor oil, and he went on: "Yes; a bat-like wing. A new specimen, undoubtedly. Effie, run round to the professor and ask him to be kind enough to step in for a few minutes.""You might give me sixpence, Daddy," said Effie, "because I did bring you the new specimen. I took great care of it inside my eye, and my eye does hurt."The doctor was so pleased with the new specimen that he gave Effie a shilling, and presently the professor stepped round. He stayed to lunch, and he and the doctor quarreled very happily all the afternoon about the name and the family of the thing that had come out of Effie's eye.But at teatime another thing happened. Effie's brother Harry fished something out of his tea, which he thought at first was an earwig. He was just getting ready to drop it on the floor, and end its life in the usual way, when it shook itself in the spoonspread two wet wings, and flopped onto the tablecloth. There it sat, stroking itself with its feet and stretching its wings, and Harry said: "Why, it's a tiny newt!"The professor leaned forward before the doctor could say a word. "I'll give you half a crown for it, Harry, my lad," he said, speaking very fast; and then he picked it up carefully on his handkerchief."It is a new specimen," he said, "and finer than yours, Doctor."It was a tiny lizard, about half an inch longwith scales and wings.So now the doctor and the professor each had a specimen, and they were both very pleased. But before long these specimens began to seem less valuable. For the next morning, when the knife-boy was cleaning the doctor's boots, he suddenly dropped the brushes and the boot and the blacking, and screamed out that he was burnt.And from inside the boot came crawling a lizard as big as a kitten, with large, shiny wings."Why," said Effie, "I know what it is. It is a dragon like the one St. George killed."And Effie was right. That afternoon Towser was bitten in the garden by a dragon about the size of a rabbit, which he had tried to chase, and the next morning all the papers were full of the wonderful "winged lizards" that were appearing all over the country. The papers would not call them dragons, because, of course, no one believes in dragons nowadaysand at any rate the papers were not going to be so silly as to believe in fairy stories. At first there were only a few, but in a week or two the country was simply running alive with dragons of all sizes, and in the air you could sometimes see them as thick as a swarm of bees. They all looked alike except as to size. They were green with scales, and they had four legs and a long tail and great wings like bats' wings, only the wings were a pale, half-transparent yellow, like the gear-boxes on bicycles.Based on the rising action in the bolded paragraphs, what do we know about Daddy? He is calm and curious. He is angry and upset. He is hysterical. He is uninterested and bored. 1) How many moles are in 4.0x10^24 atoms? Hace mucho calor en _____.1. el verano2. la primavera3. el invierno4. el otoo