What came after the Phonograph

Answers

Answer 1

Answer:

Gramophone

Explanation:

Answer 2
the gramophone !!!!!

Related Questions

An author is preparing to send their book to a publisher as an email attachment. The file on their computer is 1000 bytes. When they attach the file to their email, it shows a 750 bytes. The author gets very upset because they are concerned that part of their book has been deleted by the email address
If you could talk to this author, how could you explain what is happening to their book?

Answers

Answer:

See explanation

Explanation:

My explanation to the author is that:

The reduction in size of the attachment doesn't mean that some parts of the book (i.e. the attachment) has been deleted.

I'll also made him understand that the book will retain its original size and contents after downloading by the recipient of the mail.

According to the Bureau of Labor Statistics, how many new technical positions will be created in the IT field by 2020?
A. One thousand
B. Ten thousand
C. One million
D. One billion

Answers

Answer:

One million

Explanation:

because I get correct

PLEASE HELP, True or False: The term whitespace speaks to the design of a website

Answers

Answer:

true!

Explanation:

Answer:

True

Explanation:

Instructions
Write the code to input a number and print the square root. Use the absolute value function to make sure that if the user enters a
negative number, the program does not crash.

Answers

Answer:

*** Python Code ***

from math import sqrt

def squareRoot(x):

   print(sqrt(abs(x)))

squareRoot(float(input("Square-root of this number: ")))

*** Sample Input ***

Square-root of this number: 4

*** Sample Output ***

2.0

Explanation:

For this problem, we will simply use the python built-in methods for finding the square root and taking the absolute value of a number.

Line 1:  from math import sqrt

This line of code imports the square root method from the math module so we can compute the square root of our number

Line 2: def squareRoot(x):

This line of code is a function definition of a method we are creating called "sqareRoot" in which it takes a single argument x

Line 3:  print(sqrt(abs(x)))

This line of code takes the absolute value of the function argument x, takes the square root of that number, and then prints the result to the console

Line 4:  squareRoot(float(input("Square-root of this number: ")))

This line of code takes in a user input number, converts the string to a float, and then passes the number as the argument to our user defined function squareRoot

Cheers.

what is tuple and attribute of a relation​

Answers

Answer:

An attribute value is an attribute name paired with an element of that attribute's domain, and a tuple is a set of attribute values in which no two distinct elements have the same name. Thus, in some accounts, a tuple is described as a function, mapping names to values.

Explanation:

_____emphasizes on proper breathing and the mind-body-spirit connections.​

Answers

The answer would be Yoga.

Yoga's emphasis on breathing and the mind/body/spirit connection also yields strong emotional benefits.
I think it yoga i hope this helps

2. Discuss how science and mathematics have influenced technological development. Cite examples of how products have evolved.​

Answers

Answer:

Science helps technology by. Scientist creating the tech, and creating the technology we need. Math helps by, Animation creating

(layers, frames, etc) I can also help with coding. Coding is very important when using technology. We need math and science when it comes to technology. Hoped this helped :)

Explanation:

The impact made by the advancement in technology cannot be overemphasized, this has largely been down to the leverage of mathematical and scientific knowledge in the aspect of computer literacy, engineering and research.

Technology has been developed heavily in the aspect of computing where mathematical and scientific knowledge has been hugely developed in building mathematical and statistical models on the aspect of artificial intelligence and machine learning.

Robotics engineering and space exploration are have been made possible largely due to the computational mathematics and physics.

Therefore, science and mathematics have largely influenced technological development.

Learn more : https://brainly.com/question/15584303

Design and implement an algorithm that gets as input a list of k integer values N1, N2,..., Nk as well as a special value SUM. Your algorithm must locate a pair of values in the list N that sum to the value SUM. For example, if your list of values is 3, 8, 13, 2, 17, 18, 10, and the value of SUM is 20, then your algorithm would output either of the two values (2, 18) or (3, 17). If your algorithm cannot find any pair of values that sum to the value SUM, then it should print the message ‘Sorry, there is no such pair of values’. Schneider, G.Michael. Invitation to Computer Science (p. 88). Course Technology. Kindle Edition.

Answers

Answer:

Follows are the code to this question:

def FindPair(Values,SUM):#defining a method FindPair  

   found=False;#defining a boolean variable found

   for i in Values:#defining loop for check Value  

       for j in Values:#defining loop for check Value

           if (i+j ==SUM):#defining if block that check i+j=sum

               found=True;#assign value True in boolean variable

               x=i;#defining a variable x that holds i value

               y=j;#defining a variable x that holds j value

               break;#use break keyword

       if(found==True):#defining if block that checks found equal to True

           print("(",x,",",y,")");#print value

       else:#defining else block

           print("Sorry there is no such pair of values.");#print message

Values=[3,8,13,2,17,18,10];#defining a list and assign Values

SUM=20;#defining SUM variable

FindPair(Values,SUM);#calling a method FindPair

Output:

please find the attachment:

Explanation:

In the above python code a method, "FindPair" is defined, which accepts a "list and SUM" variable in its parameter, inside the method "found" a boolean variable is defined, that holds a value "false".

Inside the method, two for loop is defined, that holds list element value, and in if block, it checks its added value is equal to the SUM. If the condition is true, it changes the boolean variable value and defines the "x,y" variable, that holds its value. In the next if the block, it checks the boolean variable value, if the condition is true, it will print the "x,y" value, otherwise, it will print a message.  

Which best describes a paraphrase?

Answers

to rewrite something , but in your own words

the benefits and drawbacks of online banking compared to walking into a brick and mortar bank branch to complete your banking face to face

Answers

Answer:

Pros and Cons of Online Banking

Advantages

It is fast and efficient. Funds get transferred from one account to the other very fast. You can also manage several accounts easily through internet banking.

Disadvantages

Your banking information may be spread out on several devices, making it more at risk.

Pros of online banks:

Earn more interest on your savings

Potential for lower fees or no fees

Convenience of online banking

Cons of online banks:

Potential for higher ATM fees

Not ideal for those who don’t use the internet

Online transactions can take time to process

Motor Banking

A brick-and-mortar bank also can be a good place to get help for other aspects of your finances. ... If you're paying a lot of money in credit card interest to various other banks, your bank branch employees might be able to offer you a debt consolidation loan to help you save money.

Pros of brick-and-mortar banks:

You can stop by in person to ask questions

Convenience and a personal experience

You may have access to a broad ATM network

Cons of brick-and-mortar banks:

Fees and interest rates may not be competitive

Most big banks pay almost nothing on their savings accounts

You are writing a paper and find some information you want to use in a journal article: Original text: Among students with incorrect answers at pre- and posttest, the largest percentage had trouble recognizing an example of patchwork plagiarism. Apparently, many did not understand that cutting and pasting is plagiarism. Source: Fenster, Judy. "Teaching Note—Evaluation of an Avoiding Plagiarism Workshop for Social Work Students." Journal of Social Work Education, vol. 52, no. 2, Apr-Jun 2016, pp. 242-248. Academic Search Complete, doi:10.1080/10437797.2016.1151278 Entry in your paper: Among students with incorrect answers, most couldn't recognize patchwork plagiarism and did not understand that cutting and pasting is plagiarism. What is your judgment- is this plagiarism?

Answers

Answer:

The answer is "True".

Explanation:

The term Plagiarism is a word, that implies as a form of cheating, which includes the usage, of all or part, of its thoughts, words, designs, arts, the music of anyone else without any of the author's recognition or permission.

In the question, it is already defined that students copy and paste the data, which is lying in the criteria of plagiarism, that's why the given statement is "true".

Part of performing routine computer maintenance includes cleaning up after any spills. deleting Internet browsing history. removing the Internet connection. reinstalling faulty software programs.

Answers

Answer:

If I'm not wromg it would be B I'm not completely sure

The Part that is responsible for performing routine computer maintenance is deleting Internet browsing history.

What is Computer maintenance about?

Computer maintenance is known to be the act of keeping one's computers and laptops in good shape  via constant or regular cleanings, hard drive updates, and also a kind of virus prevention.

By doing so, one can prolong the lifespan of their devices and it can also help one browse safely on the web.

Conclusively, by the routine work of computer maintenance that involves deleting Internet browsing history, another person would not be able to access what you did on your internet history.

Learn more about computer maintenance from

https://brainly.com/question/25243683

Frank lives in an area that experiences frequent thunderstorms. What precautionary measure should he adopt?
A.
protect telephone lines from voltage spikes
B.
keep his system in a warm room
C.
carry out an annual system backup
D.
change his motherboard How does the flu affect businesses and governments? Could it affect residents’ access to certain resources?

Answers

Answer:

I would go with A

Explanation:

In the Word 2016 window, where is the Status bar located?

Answers

Answer:

The Word status bar is displayed at the bottom of your document window. Just click it. You can customize if needed, just right click on the status bar.

Explanation:

Answer:

hi

Explanation:

Adnan is creating a presentation about engineers using geometric shapes in bridge construction. He wants to insert
an illustration of a bridge saved in a folder on his computer.
How can he access the folder using the images command group?
After choosing the illustration he wants to add, which button should he click?
Add
Insert
OK
Done
Intro

Answers

Answer:Click Pictures, Insert

Explanation:

Got it right

Answer:

A. A

B. B

Explanation:

Why do we have to watch a video to get answers?

Answers

Answer:

The videos contain the answers.

Explanation:

Hey there!

Watching a video can help understand the concept better. If you watch the video, you will learn more. It's also a  benefit to watch a video. For many people who can't understand, they can learn by watching the video. So this is a good way to understand things better: watching a video.

Hope this helps!

Mac or PC (need opinions please)

Why did you choose Mac/PC?

Answers

Answer:

obviously Mac like mac

Answer:

I think mac obviously Mac

Hello, can you help me answer these questions?
1.How are machines located on the Internet?
2.What equipment allows data to be sent from the sender to the recipient over the Internet?
3.What is the name of the rules that standardize data exchange on the Internet and allow different hosts on the network to communicate?

Thank you in advance !

Answers

Answer:

Ans 1.To connect to the Internet and other computers on a network, a computer must have a NIC (network interface card) installed. A network cable plugged into the NIC on one end and plugged into a cable modem, DSL modem, router, or switch can allow a computer to access the Internet and connect to other computers.

Ans 2.Data travels across the internet in packets. Each packet can carry a maximum of 1,500 bytes. ... When you send an e-mail to someone, the message breaks up into packets that travel across the network. Different packets from the same message don't have to follow the same path.

Ans 3.protocol is a set of rules that governs the communications between computers on a network. A network protocol defines rules and conventions for communication between network devices.

Ans3 A protocol is a set of rules that governs the communications between computers on a network. A network protocol defines rules and conventions for communication between network devices.

Hope this fine

Pls Make me a brainlest

Answer:

This is basically how searches are made

This is a pretty detailed answer which I wrote in my own words so.... you might not understand fully also you might not get all the answers here. BUT I HOPE IT HELPS!!

Which term describes a protocol to manage a network, able to configure a network, monitor activity, and control devices?

Post Office Protocol version 3 (POP 3)

Simple Mail Transfer Protocol (SMTP)

Internet Message Access Protocol (IMAP)

Simple Network Management Protocol (SNMP)

Answers

Answer:

Simple Network Management Protocol (SNMP)

Explanation:

Answer:

SNMP

Explanation:

vote brainliest please.

Video-sharing sites allow videos to be uploaded in which file format? A. .avi B. .svg C. .tiff D. .xls

Answers

Answer:

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

Explanation:

This question is about video-sharing sites and in it asked which file format are allowed for uploading the video file.

a. AVI (True)

Yes, all video sharing sites allow uploading avi file. because .avi format file is a kind of video file format such as mp4, 3gp etc.

B. SVG (False)

SVG format files belong to images and SVG means scalable vector graphics. The file that has .svg extension is not a video file it is an image file.

C. tiff (False)

.tiff mean tagged image file format and it is a graphics or image file. So, it does not belong to any video file format.

D. xls (False)

This is not true. Because .xls shows that it is an excel file. Excel is a type of spreadsheet software that is used to store data and to calculate the data. so, it is not a format of the video file and video sharing sites do not allow the upload such type of file.

Answer:

A. .avi

Explanation:

What is a class in CSS?
a grouping of HTML tags for which style properties can be declared
a selector used to define a unique style
a tag used to apply styles to a block of content
the part of a declaration describing the type of style to be applied

Answers

A tag used to apply styles to a block of content.

Answer- A: a grouping of HTML tags for which style properties can be declared

Explanation: "In CSS, a class is a group of elements that are the same or similar. You can have as many elements as you want in a class. And each element can be the member of multiple classes. Every class has CSS attributes (like color and font-size) that are specific to that class. CSS classes are similar to a real-life class." skillcrush.com

Select the correct answer.
Samantha was calculating a mathematical formula on an electronic spreadsheet. She used multiple values to recalculate the formula. Where will
the CPU store data for easy access and quick retrieval during these computations?
A read-only memory
B.
random-access memory
C. hard disk
D.
compact disk

Answers

Answer:

The answer to this question is given below in the explanation section. However, the correct answer is B.

Explanation:

Samantha was calculating a mathematical formula on an electronic spreadsheet. She used multiple values to recalculate the formuls, CPU will store the data in random access memory for easy access and quick retrieval during these computations.

Because when CPU calculating or doing computation, it stores the data in RAM for easy access and retrieval and for fast computation.

However, it is noted that read-only memory is used only for reading information from memory. While hard disk and the compact disk is used for storing the data permanently.

(3.01 LC)
What does Python provide in its built-in function library? (5 points)
A. Computer books
B. Hardware manuals
C. Pre-written code
D. Test questions

Answers

Answer:

The answer to this question is given below in the explanation section. However, the correct answer to this question is C.

Explanation:

What does Python provide in its built-in function library?

A. Computer books  (false): because the built-in function library does not provide a computer book, computer book can be in form of pdf, or in document form or it can be in printed form.  The built-in function library contains a pre-written code that helps the programmer in making their code reusable and easier.

B. Hardware manuals  (false): The hardware manual can be in a soft or hard form that guides the user on how to operate the system.

C. Pre-written code  (True); It is true, that not only Python, but every programming language provides pre-written code in their built-in library function.

D. Test questions (false):

Test questions are a type of assesment questions to assess someone on particular knowledge/skill. so, this is the wrong option.

knowing a companys buisness standards will

Answers

Answer:

Imma say it will give you a better chance to reach those standards and get the job <3

Explanation:

Answer:

increase your ability to become enhanced at the job

Explanation:

What the difference between a job and a career

Answers

Answer:

A job is something that may only last a few years but a career lasts a lifetime.

Answer:

A job means that you are going to work FOR YOUR PAYCHECK. A career means that all of your jobs, experiences, and training programs is helping you in pay or responsibility.

This operating system was used by individual computers and required users to type commands.

Answers

Answer:

MS-DOS is your answer

Explanation:

Which genres of film would need the most work and input from a screenwriter? (Select all that apply).
a) action films
b) adventure films
c) comedies
d) nature documentaries

Answers

Answer:

action films

Explanation:

plz make me brainliest

Answer:

c and d may I have big brian plz

Explanation:

5. Question
Which one of these can connect directly to the Internet?

Answers

Answer: Clients

Explanation:

A Client refers to a computer that is able to connect to a server usually in a network in order to access the services provided by that server.

When a user tries to access the internet, the Client accesses the relevant server and requests the information that the user is requesting. The server then sends this to the client which then formats it in the way that the user can understand. The client is thus the direct connection to the internet.

This question is incomplete because it is lacking the necessary answer options, which I have provided below:

A. Servers.

B. Packets.

C. Internet users.

D. Clients.

So, given your question, the answer option which can connect directly to the Internet is: A. Servers.

A server refers to a specialized computer system that is designed and configured to provide specific remote services for its end users (clients), especially on a request basis.

In Computer and Technology, there are different types of server and these includes:

Print server.File server.Proxy server.Database server.Application server.Virtual server. Web server.

Basically, a server is typically designed and developed to connect directly to the Internet through the use of an intermediary network device such as a router or switch and a wired or wireless network connection.

Read more: https://brainly.com/question/21078428


Which activities below might have a negative effect on your online reputation?

Answers

Answer:

I believe the last 2 maybe even the one above the second to last answer

Explanation:

what do you mean by secondary memory ?

Answers

Answer:

The answer is a computer memory that is a non-volatile and persistent in nature and it's not directly accessed by a computer or a processer.

Other Questions
According to a study done by a university student, the probability a randomly selected individual will not cover his or her mouth when sneezing is 0.267 . Suppose you sit on a bench in a mall and observe people's habits as they sneeze. (a) What is the probability that among 12 randomly observed individuals exactly 8 do not cover their mouth when sneezing? (b) What is the probability that among 12 randomly observed individuals fewer than 6 do not cover their mouth when sneezing? (c) Would you be surprised if, after observing 12 individuals, fewer than half covered their mouth when sneezing? Why? Add.0.9+2.0Enter your answer, as a decimal, in the box. What is the slope of the function?A -6B -4C 4D 6 The Roman alphabet is used when names run out for naming hurricanesO TrueO False How do we find a common denominator ........what's the worst restaurant ever(other than McDonald's) What is the success rate in curing skin cancer if it is diagnosed early? Which explains why it is important to eat a full healthy meal before an afternoon of playing sports?Food provides the carbon dioxide that is a product of cellular respiration.Food provides the oxygen that is a product of cellular respiration.Food provides the glucose that is a reactant in cellular respiration.Food provides the energy that is a reactant in cellular respiration. Read the source below, then create a paragraph that answers the Central HIstorical Question (CHQ): Why was fire so important to the earliest humans? What does it mean to fictionalize a primary source?to ensure that a historical account is accurateto add information to make a story more interestingto include a primary source in a secondary sourceto make a fictional work into a work of nonfiction the fertile crescent is located in _____?the middle eastIndiaAfricachina HELPpls find the angle measures then list them from least to greatest 1.8c+32c=501.8(50)+32 A train travels with a constant speed of 20.0m/s for 7.00s. Determine allunknowns and answer the following question(s).What is the magnitude of the train's acceleration? Eds den is 6 feet longer than it is wide. If the den's area is 352 square feet, what are the dimensions of the room? 1) A police officer is sitting on the side of the road with his lights off. You fly by because you're in a rush to get to school on time doing 50mph in a school zone. The police officer is able to get his car started 2 seconds later and accelerate at 5.5m/s. How long will it take the police officer to catch your car (assume you don't slow down because you're very studious)? 20 Points' !A school group wants to rent part of a bowling alley to have a party. The bowling alley costs $500 to rent, plus an additional charge of $5 per student to bowl. The group doesnt want any student to pay more than $15 total to attend this party.What is an inequality that could represent this situation? Of the five characteristics of living things, which one is required for the species to survive but does not have to apply to an individual A very large bag contains more coins than you are willing to count. Instead, you draw a random sample of coins from the bag and record the following numbers of each type of coin in the sample before returning the sampled coins to the bag. If you randomly draw a single coin out of the bag, what is the probability that you will obtain either a nickel or a penny? Enter a fraction or round your answer to 44 decimal places, if necessary. a number is less than 15