State how to transfer information from website to web processing document.​

Answers

Answer 1

Answer:

This is typically done either by downloading or by copying and pasting.

Explanation:


Related Questions

difference between communication service and communication media​

Answers

Explanation:

Communication Devices :

A communication device is a hardware component that enables a computer to send (transmit) and receive data, instructions, and information to and from one or more computers or mobile devices. A widely used communication device is a modem.

2. communication Media :

Communication media means of sending or receiving information or data. And in telecommunication, Communication media refers to the channel or tool or device through which data will be transmitted. Different communication media’s used for sending the data or information from one computer or terminal to another inside some kind of network.
Communication Device

Communication service means the act of communicating using any system or the act of transmission and receipt of information between two or more points. Each point must be capable of both transmitting and receiving information if communication is to occur.


Media:

Communication media refer to the ways, means or channels of transmitting message from sender to the receiver. Communication media indicate the use of verbal or non-verbal language in the process of communication.

Bruno is asked to create a program that will require the user to enter a passcode. If the wrong passcode is entered, the user can try again until they get it right. What kind of loop should be created for this? A. a binary loop B. a condition-controlled loop C. a count-controlled loop D. an interface loop

Answers

Answer:

a condition controlled loop

Explanation:

if a user get the password right he will not have to restart

In the given scenario, the kind of loop that should be created is a condition-controlled loop. (Option B).

What is a Condition-controlled Loop?

A condition-controlled loop is also known as a "while loop." It continues to execute its code block as long as a specified condition is true. In this case, the condition would be something like "while the entered passcode is not correct." The loop will keep running until the user enters the correct passcode, at which point the condition becomes false, and the loop exits.

Accordingly, in this scenario, Bruno needs to create a loop that repeatedly asks the user to enter a passcode and checks whether the entered passcode is correct or not. If the entered passcode is incorrect, the loop should allow the user to try again until they enter the correct passcode.

Learn more about condition-controlled loop here: https://brainly.com/question/34137222

#SPJ2

This outline is an example of O cause and effect . O order of events . O problem and solution . O order of importance . ​

Answers

Answer:

cause and effect

Explanation:

I actually searched this question up and used a file from a different question to answer this

The question and answer choices were the exact same so I hope I got the correct file

!!! 20 points !!!!!
find the css code for the photo liker app in code studio. it's unit 4 lesson 4. i need the text code to copy and paste. either do that or debug this code, please. it says that likes isn't called for but it obviously is and i dunno what to do about that. help, please.

Answers

Answer: I need more info to answer this question

Explanation:

Type the correct answer in the box. Spell all words correctly.

Fill in the blank with the correct word.
Children use audio-visual media to get hands-on experience and learn
________activities.

Answers

Answer:

kinesthetical

Explanation:

please give brainliest please and good luck :)

What are the inputs that the model uses to make decisions?


Answers

Answer:

It makes the decision better and adds ownership in the implementation

Explanation:

Hope this helps C:

~Chiena

In Python to center an output statement, the ^ (caret) symbol will be used in the format specifier of the format function.

A. True
B. False

Answers

Answer:

true

Explanation:

In Python to center an output statement, the ^ (caret) symbol will be used in the format specifier of the format function.

A. True

B. False

True

When multiple endoscopic approaches are performed to accomplish the same procedure, report a code for.

Answers

the successful endoscopic approach only.

Jeff wants to create a website with interactive and dynamic content. Which programming language will he use?
A.
DHTML
B.
HTML
C.
CSS
D.
JavaScript

Answers

Answer:

b.HTML

Explanation:

HTML (Hyper-Text Markup Language) and it was the primary language for developing the websites those days. With the evolution of internet market, the transformation of simple, static HTML websites to dynamic websites was the first thing to come up.

Consider that there is a class Team for soccer team members under Soccer namespace and another class Team for basket team members under the Basketball namespace. What is the correct syntax that will help the compiler identify the correct Team

Answers

The correct syntax that will help the compiler identify the correct Team is;

Soccer::Team SoccerTeamMembers

BasketBall:Team BasketBallTeamMembers.

What Is syntax?

Syntax is known to be the steps or arrangement of words and phrases to bring about a proper sentences.

Note that in the above case, The correct syntax that will help the compiler identify the correct Team is;

Soccer::Team SoccerTeamMembers

BasketBall:Team BasketBallTeamMembers.

Learn more about syntax from

https://brainly.com/question/831003

#SPJ1

which of the following energy conversions occurs inside a battery?

Answers

Answer:

chemical energy is changed into electrical energy.

Explanation:

You can us the (BLANK) symbol when you want to automatically add a set of numbers together in a spreadsheet

Answers

Answer:

Σ

Explanation:

What symbol can you use when you want to automatically add a set of numbers together on excel?

✓ Σ This is the Greek letter Sigma. It is used to start the Autosum facility.

Which is the output of the formula =IF(c4>100;"TRUE";"FALSE"), if the value in c4 is 111

Answers

Answer:

In given data, the formula is incorrect because semi-colon is used in place of comma. The correct formula statement are: =IF (C4>100, "TRUE", "FALSE") Then its output will " TRUE ". According to correct formula. It means that if no. in cell C4 is greater than 100 it shows output TRUE otherwise FALSE..

Explanation:

Archie is looking for a design methodology that would allow him to release his app in chunks rather than all at once. But he still favors the traditional waterfall model. What model would best fit his needs?
a waterfall
b agile
c rapid prototyping
d spiral ​

Answers

The agile model would be the best fit for his design methodology because the agile model delivers discrete pieces or parts of software rather than the full application option (b) is correct.

What is the agile model?

Agile software development is a set of approaches focusing on iterative development, in which requirements and solutions change through cooperation among self-organizing cross-functional teams.

The agile model would best fit his need because it emphasizes the clean delivery of discrete pieces or parts of software rather than the full application, agile software development necessitates a cultural shift in many firms.

Thus, the agile model would be the best fit for his design methodology because the agile model delivers discrete pieces or parts of software rather than the full application.

Learn more about the agile model here:

https://brainly.com/question/10714151

#SPJ1

In Python, the __________ function is used to enter data inside a list [array].

A. copy
B. insert
C. get
D. add
E. append

Answers

In Python, the insert function is used to enter data inside a list. The + operator returns a new array containing the elements from both arrays. append(): appends the element to the array's end. insert()

Can input an array into a function Python?

Any sort of data, such as a text, list, array, dictionary, or dictionary, can be supplied as an argument to a function in Python.

When one pass numeric arrays as arguments to Python methods or functions, they are passed by reference.

Thus, option B is correct.

For more details about Python, click here

https://brainly.com/question/13041484

#SPJ1

The \t and \n are examples of one of Python's escape characters.

A. True
B. False

Answers

Answer:

A. true

Explanation:

Step 1: int fun(int); This is prototype of function fun().It tells the compiler that the function fun() accept one integer parameter and returns an integer value.. Step 2: int i=3; The variable i

Outlook 365 is strictly an email system true or false

Answers

Answer:

true

Explanation:

Outlook 365 is strictly an email system, is the true statement.

What is meant by email system?

The email system refers to the computer network that controls email on the Internet. This system comprises of user machines that run programs to write, transmit, retrieve, and display messages as well as agent machines that manage mail.

The two main types of email service providers are email clients and Webmail. I'll go over the three types of emails—transactional, broadcast, and triggered—that you should be sending to your subscribers on a regular basis in this course.

Electronic mail is one of the most used Internet services (or "mail"). An Internet user can send a prepared message to another Internet user situated anywhere in the world with the use of this service. Mail communications also contain video, music, and image data in addition to text.

Thus, it is a true statement.

For more information about email system, click here:

https://brainly.com/question/12996676

#SPJ2

85 points hurry pls
Which of the following statements are true regarding barriers to communication? Select 3 options.

The barriers to communication make it difficult to build trust and rapport on a cross-cultural team.
The barriers to communication make it difficult to build trust and rapport on a cross-cultural team.

The only choice for reducing language barriers on a multilingual team is to have a person translate all interactions.
The only choice for reducing language barriers on a multilingual team is to have a person translate all interactions.

Even when language is not a barrier to communication, issues can arise because of differing communication styles.
Even when language is not a barrier to communication, issues can arise because of differing communication styles.

To reduce barriers caused by speaking different languages, effective teams should only choose team members that speak a common language.
To reduce barriers caused by speaking different languages, effective teams should only choose team members that speak a common language.

Barriers to communication can be best addressed with an open mind and positive attitude.
Barriers to communication can be best addressed with an open mind and positive attitude.

Answers

The statements which are true regarding barriers to communication are: A, C, and D.

What are barriers to communication?

Barriers to communication can be defined as form of obstacle or hindrance that typcically affects the swift and easy communication of an information between two or more parties.

This ultimately implies that, barriers to communication are impediments to effective communication between two or more parties and these include the following:

Language differenceCommunication stylesCultural difference

Read more on communication here: brainly.com/question/26152499

#SPJ1

Answer:

-The barriers to communication make it difficult to build trust and rapport on a cross-cultural team.

-Barriers to communication can be best addressed with an open mind and positive attitude.

-Even when language is not a barrier to communication, issues can arise because of differing communication styles.

Explanation:

sorry for adding no letters, the order is different for everyone!

While making a digital portfolio, Sarah wants to add names and contact information of people she knows professionally. What should she
Include regarding these people?
Sarah should include
letters regarding names and contact information of people she knows professionally.
Reset
Next

Answers

In adding names and contact in a digital portfolio, Sarah should include the full name, street address, city, state, and zip code, and contact information.

What is a digital portfolio?

A digital portfolio is an electronic portfolio where a person includes it blog, names, pictures, texts, etc.

Thus, In adding names and contact in a digital portfolio, Sarah should include the full name, street address, city, state, and zip code, and contact information.

Learn more about digital portfolio

https://brainly.com/question/23758218

#SPJ1

What is the best game recorder on windows with no watermark,no lag, and don't hav to pay(other than game bar)

Answers

Answer:GeForce Experience is good

Explanation: GeForce experience is an app you can use for screen recording (no watermark), downloading nvedia drivers and you can use it to access all your games in one place.

An IF statement inside the true block of another IF statement is called:

A. it is not possible to put an IF statement inside the block of another IF statement
B. a relational operator
C. a nested IF statement
D. a branched IF statement
E. a conditional operator

Answers

Answer:

C. a nested IF statement

Explanation:

Anytime something is contained within another of itself, it's referred to as being "nested".

if (true)

{

     if(true)

     {

       

     }

}

You want to e-mail your grandparents a recording of your pieces for your upcoming piano recital. which audio file format will allow your grandparents to download the files, considering they have an older computer with a slower internet connection?

pcm wav

alac

mp3

flac

Answers

Based on the above, the audio file format that will allow your grandparents to download the files is Mp 3.

What is MP3 Format?

MP3 is known to be a kind of coding format that is made just for digital audio.

Note that in Based on the above, the audio file format that will allow your grandparents to download the files is Mp 3 as it can help to play the audio.

Learn more about e-mail from

https://brainly.com/question/24506250

#SPJ1

la révolution industrielle rédaction

Answers

The Industrial Revolution began in the 18th century in Great Britain. It was only the first stepping-stone to the modern economic growth that is still growing to this day. With this new bustling economic power force Britain was able to become one of the strongest nations. While the nation was changing so was the way that literature was written. The Industrial Revolution led to a variety of new social concerns such as politics and economic issues. With the shift away from nature toward this new mechanical world there came a need to remind the people of the natural world. This is where Romanticism came into play; it was a way to bring back the urban society that was slowly disappearing into cities.

The Agricultural Revolution: Between 1750 and 1900 Europe’s population was dramatically increasing, so it became necessary to change the way that food was being produced, in order to make way for this change. The Enclosure Movement and the Norfolk Crop Rotation were instilled before the Industrial Revolution; they were both involved in the separation of land, and the latter dealt more with developing different sections to plant different crops in order to reduce the draining of the land. The fact that more land was being used and there weren’t enough workers it became necessary to create power-driven machines to replace manual labor.

Socioeconomic changes: Prior to the Industrial Revolution, the European economy was based on agriculture. From the aristocrats to the farmers, they were linked by land and crops. The wealthy landowners would rent land to the farmers who would in turn grow and sell crops. This exchange was an enormous part of how the economy ran. With the changes that came with the Industrial revolution, people began leaving their farms and working in the cities. The new technologies forced people into the factories and a capitalistic sense of living began. The revolution moved economic power away from the aristocratic population and into the bourgeoisie (the middle class).

The working conditions in the factories during the Industrial Revolution were unsafe, unsanitary and inhumane. The workers, men, women, and children alike, spent endless hours in the factories working. The average hours of the work day were between 12 and 14, but this was never set in stone. In “Chapters in the Life of a Dundee Factory Boy”, Frank Forrest said about the hours “In reality there were no regular hours, masters and managers did with us as they liked. The clocks in the factories were often put forward in the morning and back at night. Though this was known amongst the hands, we were afraid to speak, and a workman then was afraid to carry a watch” (Forrest, 1950). The factory owners were in charge of feeding their workers, and this was not a priority to them. Workers were often forced to eat while working, and dust and dirt contaminated their food. The workers ate oat cakes for breakfast and dinner. They were rarely given anything else, despite the long hours. Although the food was often unfit for consumption, the workers ate it due to severe hunger.

During this time of economic change and population increase, the controversial issue of child labor came to industrial Britain. The mass of children, however, were not always treated as working slaves, but they were actually separated into two groups. The factories consisted of the “free labor children” and the “parish apprentice children.” The former being those children whose lives were more or less in the hands of their parents; they lived at home, but they worked in the factories during the days because they had to. It was work or die of starvation in this case, and their families counted on them to earn money. Fortunately these children weren’t subjected to extremely harsh working conditions because their parents had some say in the matter. Children who fell into the “parish apprentice” group were not as lucky; this group mainly consisted of orphans or children without families who could sufficiently care for them. Therefore, they fell into the hands of government officials, so at that point their lives as young children turned into those of slaves or victims with no one or nothing to stand up for them. So what was it exactly that ended this horror? Investments in machinery soon led to an increase in wages for adults, making it possible for child labor to end, along with some of the poverty that existed. The way that the Industrial Revolution occurred may have caused some controversial issues, but the boost in Britain’s economy certainly led toward the country becoming such a powerful nation.

What are the limits of hashing and verifying that files haven’t changed?

Answers

The hashing function can take any number of key-value pairs and there is no specific limit to it.

What is hashing?

Hashing is a file-based algorithm for producing a fixed-length bit string value. A file is essentially a collection of data blocks. The length of the data is reduced by hashing to a fixed number or key that represents the original string.

When hashing is employed, the hash function may plot all of the keys and values to what the real size of the table is, demonstrating that the hashing function can take any number of key-value pairs with no restriction.

However, if the passwords are hashed in encryption, recovering the passwords is extremely difficult.

Thus, the hashing function can take any number of key-value pairs and there is no specific limit to it.

Learn more about the hashing here:

https://brainly.com/question/13106914

#SPJ1

Do you think that smart televisions are going to replace media players?

Answers

Answer:

yes because smart television give more information

Select each of the steps involved in creating a table in a presentation.

Use a slide layout containing the desired placeholder.

Open the table and copy it.

Enter and format text.

Double-click on the placeholder.

Click outside of the object.

Answers

Answer:

huh? Making your presentation more interesting through the use of multimedia can help to improve the audience's focus. PowerPoint allows you to use images, audio and video to have a greater visual impact. These visual and audio cues may also help a presenter be more improvisational and interactive with the audience.

What modifier should you use on the members of a class so that they are not accessible to another class in a different package, but are accessible to any subclasses in any package

Answers

The private modifier specifies that only other members of the same class can access the member. The protected modifier restricts access to the member to within its own package.

What are public and private modifiers?

The public access modifier permits code from both inside and outside the class to access the class's methods and properties, whereas the private modifier prevents outside code from accessing the class's methods and properties.

Thus, private modifier is the member.

For more details about private modifier, click here

https://brainly.com/question/15108837

#SPJ1

Which of the following would be the most important technical skill for a camera operator interested in
embedding with the military?
O mounting a gear head tripod
O capturing live action shots
night-time camera operations
O setting up a dolly track

Answers

The most important technical skill for a camera operator interested in embedding with the military is: C. night-time camera operations.

Who is a camera operator?

A camera operator can be defined as an individual who is professionally trained to tweak, operate and use a digital camera, especially for the purpose of taking pictures of an event, place, person, etc.

In the military, the most important technical skill for a camera operator interested in embedding with the military is night-time camera operations.

Read more on camera operators here: https://brainly.com/question/14373571

#SPJ1

To evaluate the performance of a security system, administrators must establish system performance _____________________

Answers

To evaluate the performance of a security system, administrators must establish system performance baselines.

What is a performance baseline?

A baseline for any kind of performance measure is known to be one that often looks at the the average stages or level of the work that one is  currently working on.

Note that it often compare future performance levels using test so as to see if performance has changes and as such to evaluate the performance of a security system, administrators must establish system performance baselines.

Learn more about security system from

https://brainly.com/question/25720881

#SPJ1

You have a single router that connects your private network to the Internet. You have two subnets on the private network, and the Internet connection is through the Serial0/0/0 interface. Your ISP has given you 6 outside addresses that you can use for NAT configuration. You can use addresses 70. 0. 0. 64 through 70. 0. 0. 69. All hosts on your private network must be allowed Internet access using those six addresses. There should be no limit to the number of clients on the private network that can access the Internet at the same time. Complete the following tasks: Designate both FastEthernet interfaces as inside NAT interfaces. Configure the Serial0/0/0 interface as an outside NAT interface. Create a standard access list number 50 that allows both inside networks. Create a NAT pool named my_addrs identifying the 6 addresses. Use the netmask parameter to configure the addresses using a 29-bit mask. Use the ip nat inside source command to link the access list with the address pool. Be sure that all inside clients can simultaneously access the Internet. Save your changes

Answers

Select Fiji.

Press Enter to get started.

At the Fiji> prompt, type enable and press Enter.

At the Fiji# prompt, type config t and press Enter.

At the Fiji(config)# prompt, type interface fa0/0 and press Enter.

At the Fiji(config-if)# prompt, type ip nat inside and press Enter.

At the Fiji(config-if)# prompt, type interface fa0/1 and press Enter.

At the Fiji(config-if)# prompt, type ip nat inside and press Enter.

At the Fiji(config-if)# prompt, type interface s0/0/0 and press Enter.

At the Fiji(config-if)# prompt, type ip nat outside and press Enter.

At the Fiji(config-if)# prompt, type access-list 50 permit 192.168.1.0 0.0.0.255 and press Enter.

At the Fiji(config)# prompt, type access-list 50 permit 192.168.2.0 0.0.0.255 and press Enter.

At the Fiji(config)# prompt, type ip nat pool my_addrs 70.0.0.64 70.0.0.69 netmask 255.255.255.248 and press Enter.

At the Fiji(config)# prompt, type ip nat inside source list 50 pool my_addrs overload and press Enter.

Press Ctrl + Z.

At the Fiji# prompt, type copy run start and press Enter.

Press Enter to begin building the configuration.

Other Questions
which of the following is not a structure built on the acropolis? one plus one do dis get points Excess amounts of salts, water, and materials are expelled in the urine from the __________. a. kidneys b. bladder c. urethra d. gallbladder please select the best answer from the choices provided. a b c d Please please please help! 1st answer gets brainliestThe line plot shows the weight (in tons) of five different pallets of ball bearings. What is the difference between the largest and smallest pallet of ball bearings?xx x x x_______________1/5 2/5 3/5 4/5 5/5( 1/5 = 2 pallets, 25 = 1 pallet, 3/5 = 1 pallet, 4/5 = 1 pallet, 5/5 = 0 pallets )1 x = 1 palletA) 1 5 tonsB) 2 5 tonsC) 3 5 tonsD) 4 5 tons Rowena is terribly nervous about a class discussion scheduled for the next day. She would rather not participate, but her teacher has made it clear that he is expecting every student to make a meaningful contribution to the discussion. What is the best way for Rowena to be a good participant?Rowena should form her own agenda for the discussion and make sure to discuss it.Rowena should decide what about the topic is meaningful to her, and find a good time to speak up.Rowena should overcompensate for her nervousness by coming on aggressively.Rowena should listen to everyone else and only speak up when she absolutely agrees with them. How does the north generally feel the topic of slavery?How does the south generally feel the topic of slavery? a 230v shunt motor delivers 30hp at the shaft at 1120rpm. if the motor has an efficiency of 87% at this load, determine: the total input power the line current 10 more than the difference of 6m and 3. Write the sentence as a numerical expressionNEED HELP ASAP A huge facility in Moscow, Russia that has places, government offices, and churches is the _______ During a one-year time period, how many gallons of water would the average household save by using an efficiency washer vs a regular washer? Is this one-year savings more or less than the amount of water an average person drinks in a lifetime? Explain and show your assumptions, calculations, and conversions.Consider it to be 2 separate problems:1. How much water is saved in a one-year period when using an efficiency washer vs regular washer - answer based on your assumptions and calculations for full credit2. How much water does an average person drink in a lifetime arrive at this answer based on your assumptions and calculations3. Compare the answers to those 2 questions to arrive at your conclusionBelow are 2 pieces of information that you might find helpfulthere are 128 oz in a gallonthere are 365 days in a year and also 52 weeks in a year Hurry pls with the answer A uniform magnetic field b is perpendicular to the plane of a circular loop hi lots of work today Can I get a retake on Minerals Assignment, Rocks and the Rock Cycle Assignment and i redid Sedimentary Rocks Why was the trail of tears a shameful event in American history Can someone help on these two?, Its okay if you can only do one. Evaluate i=c(sinx 9y)dx (3x y)dy for the nonclosed path abcd in the figure. A=(0,0),b=(4,4),c=(4,8),d=(0,12) What is the explicit arithmetic sequence formula for 72, 48, 24,....? How long is it:a) from 18 00 until 09 45 the next day?b) from 07 30 until 01 45 the next day?c) from 18 50 until 09 20 the next day?d) from 08 10 until 00 35 the next day? One figure models 1/4 as 4 of 12 equal parts of a whole. The other models 1/3 as 1 of 3 equal parts of a whole. What is true about the equal parts for the two fractions?