Have several computers assigned to their host names it ensures that the load of requests to their sites do not overwhelm a single computer.
Increasing Website Performance Through Distributed HostingHaving multiple computers assigned to their host names ensures that the load of requests to their sites is spread out and not concentrated in one computer, which could lead to the computer becoming overwhelmed and unable to respond to requests quickly. This helps ensure that the sites remain highly responsive and accessible.
Learn more about host names at: https://brainly.com/question/13068705
#SPJ4
Can copyright prevent the duplication of a work of art?
Answer:
if you use it in a certain way yes but pls don't do that
Answer:
Like anything else that can be copyrighted, the artwork is protected by copyright when the art is affixed in a tangible form (such as a painting, sculpture, or drawing). You have to register your copyright with the US Copyright Office if you want to be able to take infringers to court and be awarded damages
You defined a shoe data type and created an instance.
class shoe:
size = 0
color = 'blue'
type = 'sandal'
myShoe = shoe()
Which statement assigns a value to the type?
type = 'sneaker'
myShoe.type( 'sneaker')
myShoe.type = 'sneaker'
NEXT QUESTION
ASK FOR HELP
Answer:
myShoe.type = 'sneaker'
Explanation:
type is a field of the class shoe. The myShoe object which is an instance of the class shoe has the field type also.
To assign a value to type filed of the object myShoe, reference the object then the field as such;
myShoe.type = "sneaker"
You defined a shoe data type and created an instance. The statement that assigns a value to the type is myShoe.type = 'sneaker'. The correct option is C.
What is data in programming?A variable's data type and the kinds of mathematical, relational, and logical operations that can be performed on it without producing an error are classified as data types in programming.
An attribute of a piece of data called a "data type" instructs a computer system on how to interpret that data's value.
type is one of the class shoe's fields. The field type is also present in the myShoe object, which is an instance of the class shoe.
Reference the object and the field as such in order to assign a value to the type field of the object myShoe;
Therefore, the correct option is C. sneaker" in myShoe.type.
To learn more about data in programming, refer to the link:
https://brainly.com/question/14581918
#SPJ2
Which is an example of a crime that might occur in an e-commerce transaction?
A customer’s new purchase is stolen after delivery.
A customer’s credit card information is stolen and used by someone else.
A customer can easily take merchandise without having to pay for it.
A customer pays an unfair price for the merchandise she bought.
Answer:
A costumers credit card information is stolen and used by someone else.
Answer:
A customer's credit card information is stolen and used by someone else.
Explanation:
Since e-commerce is online sales, the customer can not take merchandise without having to pay for it.
Also the customer can search for the best price.
Discuss the reasons why organizations undertake information system projects.
List and describe the common skills and activities of a project manager. Which skill do you think is most important? Why?
Describe the activities performed by the project manager during project initiation.
Describe the activities performed by the project manager during project planning.
Describe the activities performed by the project manager during project execution.
Describe the activities performed by the project manager during project closedown.
In which phase of the system development life cycle does project planning typically occur?
In which phase does project management occur?
Organizations work on information system initiatives to develop new systems or redesign existing ones. An expensive and time-consuming manual process is automated while creating a new system.
Which of the following project management activities and common abilities do you believe is most crucial and why?A project manager's most important skills include leadership, communication, time management, negotiation, team management, and critical thinking. Also, he or she must be able to stay up with project management trends and make the best use of the available tools.
What part does the project manager play in the success of the company and project?Project managers (PMs) are in charge of organising, planning, and supervising the execution of projects in a wide sense.
To know more about information visit:-
https://brainly.com/question/15709585
#SPJ1
Jack also has a table in his report that compares the Webb telescope to another in space, the Hubble. Order steps to create a new style for his table
Answer:
1. Step 1
2. Step 3
3. Step 4
4. Step 2
Explanation:
I got the answer correct on edge.
He clicks the Design tab on the ribbon, navigates to the Document Formatting command group, Themes icon, and the Office Theme option in the themes gallery.
What is Webb telescope?The James Webb Space Telescope is an infrared astronomy space telescope.
As the largest optical telescope in space, its high resolution and sensitivity allow it to see objects that the Hubble Space Telescope cannot see because they are too old, distant, or faint.
NASA's James Webb Space Telescope, the agency's successor to the famous Hubble telescope, will launch on December 25, 2021, on a mission to study the first stars and peer further back into the universe's history than ever before.
Jack follows the steps outlined below.
Step 1: On the ribbon, he selects the Design tab.Step 2: He navigates to the command group Document Formatting.Step 3: He selects the Themes option.Step 4: In the themes gallery, he selects the Office Theme option.Thus, these are the correct steps in proper order.
For more details regarding Webb telescope, visit:
https://brainly.com/question/11064941
#SPJ5
Your question seems incomplete, the missing options are:
Step 1: Select the table.
Step 2: Expand the Design options box.
Step 3: Click the New Table Style option.
Step 4: Navigate to the Design tab of Table Tools.
hris has received an email that was entirely written using capitalization. He needs to paste this text into another document but also ensure that the capitalization is removed.
What should Chris do?
what do you need to implement in order to start collecting and sending this data to analytics?
Start accumulating and delivering this information to analytics
What is data?
Data is data that has been specifically arranged or formatted for use by humans or machines. Typically, data is gathered and examined in order to reach conclusions and guide decisions. Data can be presented in a variety of ways, including as words, photos, videos, and numbers. Data may be utilised to generate forecasts, discover patterns, solve issues, and provide answers to queries. Sources of data include surveys, databases, and experiments. Additionally, it can be gathered directly from individuals through interviews or online surveys. Data is a crucial part of today's world, and its significance is anticipated to increase over time.
A data collection and analytics platform, such as Analytics or Adobe Analytics.
A data collection method, such as a tag manager, an API, or custom code.
A means of sending the data to the analytics platform, such as a server-side API or a JavaScript library.
A method of tracking user behavior, such as event tracking, page views, or custom variables.
A way to store the data, such as a database or a cloud storage solution.
An understanding of the data collected, such as user identifiers, session information, or custom variables.
A plan for analyzing and visualizing the data, such as data mining, segmentation, or advanced analytics.
To learn more about data
https://brainly.com/question/27034337
#SPJ4
write a program which asks the user for an integer x. the program then outputs the values from 1 to 1000 as x numbers per line, where x is the value that the user entered. you must use only 1 loop for this. validate x to make sure that the numbers per line value is between (10 to 30).
Answer:
Explanation:
PascalABC
Program and Result:
Program Pinter;
var x : integer;
begin
ReadLn (x);
if (x < 10) or (x > 30) then
Writeln ( ' Error...! x < 10 or x > 30 ... ') else
begin
for var i := 1 to 1000 do
if (i mod x <> 0) then Write (' ', i)
else begin
Write (' ',i); WriteLn;
end;
end;
end.
The program could be written as follows (in Python):
# Prompt user for input and validate x
x = int(input("Enter the numbers per line (between 10 and 30): " ))
# Validate x to ensure it is between 10 and 30
if x < 10 or x > 30:
print("Invalid input. Please enter a value between 10 and 30.")
else:
count = 0 # Counter to keep track of numbers per line
# Loop from 1 to 1000
for i in range(1, 1001):
# Print the current number with a space
print(i, end=" ")
# Increment the count
count += 1
# Check if count reaches x (numbers per line)
if count == x:
print() # Move to the next line
count = 0 # Reset the count
How to write this program?We can write a Python program that fulfills the requirements you mentioned:
# Prompt user for input and validate x
x = int(input("Enter the numbers per line (between 10 and 30): " ))
# Validate x to ensure it is between 10 and 30
if x < 10 or x > 30:
print("Invalid input. Please enter a value between 10 and 30.")
else:
count = 0 # Counter to keep track of numbers per line
# Loop from 1 to 1000
for i in range(1, 1001):
# Print the current number with a space
print(i, end=" ")
# Increment the count
count += 1
# Check if count reaches x (numbers per line)
if count == x:
print() # Move to the next line
count = 0 # Reset the count
In this program, we prompt the user to enter the value for "numbers per line" (x) using the input function. We then validate the input to ensure that x is between 10 and 30 using an if statement.
If x is within the valid range, we initialize a count variable to keep track of the numbers per line. Then we use a single loop to iterate from 1 to 1000. Within the loop, we print each number followed by a space using print(i, end=" ").
After printing a number, we increment the count by 1. If the count reaches the value of x, we move to the next line by printing an empty print() statement, and we reset the count to 0.
Learn more about programs at:
https://brainly.com/question/23275071
#SPJ2
Prompt
Explain three strategies you can use to take better notes.
Answer:
1. Use phrases not full sentences
2. Put your notes in categories
3. Take notes in your own words
Explanation:
It's right
which type of microscope would be best to use to observe the physical characteristics of living fruit flies?
Answer:
A dissecting light microscope would be the most useful when viewing live drosophila. They can also be referred to as stereo microscopes.
Explanation:
pLZ PLZ PLZ HELP I HAVE SO MANY MISSING ASSINMENTS. why is physical security so important and necessary for both personal users and businesses?
PLS HELP!!
In two to three paragraphs, come up with a way that you could incorporate the most technologically advanced gaming into your online education.
Make sure that your paper details clearly the type of game, how it will work, and how the student will progress through the action. Also include how the school or teacher will devise a grading system and the learning objectives of the game. Submit two to three paragraphs.
Incorporating cutting-edge gaming technology into web-based learning can foster an interactive and stimulating educational encounter. A clever method of attaining this goal is to incorporate immersive virtual reality (VR) games that are in sync with the topic being taught
What is the gaming about?Tech gaming can enhance online learning by engaging learners interactively. One way to do this is by using immersive VR games that relate to the subject being taught. In a history class, students can time-travel virtually to navigate events and interact with figures.
In this VR game, students complete quests using historical knowledge and critical thinking skills. They may solve historical artifact puzzles or make impactful decisions. Tasks reinforce learning objectives: cause/effect, primary sources, historical context.
Learn more about gaming from
https://brainly.com/question/28031867
#SPJ1
Instructions
You should see the following code in your programming environment:
import simplegui
def draw_handler(canvas):
# your code goes here
frame = simplegui.create_frame('Testing', 600, 600)
frame.set_canvas_background("Black")
frame.set_draw_handler(draw_handler)
frame.start()
Using the house program we started in Lesson 6.5 as a reference, write the code to draw a house. You should add your own features to the drawing, such as decorating the rest of the canvas by changing the background color or adding objects like trees and the sun.
Here's an example code that draws a simple house with a green background, a sun, and some trees:
What is a draw handler?Used to assign draw callbacks to spaces. Basically every time the room is redrawn the assigned method is called. Most commonly used in combination with bgl and blf to draw overlays on the screen.
import simplegui
# set canvas size
CANVAS_WIDTH = 600
CANVAS_HEIGHT = 600
# define draw handler
def draw_handler(canvas):
# draw green background
canvas.draw_polygon([(0, 0), (0, CANVAS_HEIGHT), (CANVAS_WIDTH, CANVAS_HEIGHT), (CANVAS_WIDTH, 0)], 1, "Green", "Green")
# draw sun
canvas.draw_circle((500, 100), 50, 2, "Yellow", "Yellow")
# draw house
canvas.draw_polygon([(200, 200), (200, 400), (400, 400), (400, 200)], 2, "Red", "White")
canvas.draw_polygon([(200, 200), (300, 100), (400, 200)], 2, "Red", "White")
canvas.draw_polygon([(250, 300), (250, 350), (300, 350), (300, 300)], 2, "Black", "Black")
# draw trees
canvas.draw_circle((100, 500), 50, 2, "Green", "Green")
canvas.draw_polygon([(80, 500), (120, 500), (100, 400)], 2, "Brown", "Green")
canvas.draw_circle((500, 500), 50, 2, "Green", "Green")
canvas.draw_polygon([(480, 500), (520, 500), (500, 400)], 2, "Brown", "Green")
# create frame
frame = simplegui.create_frame('House Drawing', CANVAS_WIDTH, CANVAS_HEIGHT)
# set canvas background
frame.set_canvas_background("Green")
# register draw handler
frame.set_draw_handler(draw_handler)
# start frame
frame.start()
The code should draw a green background, a red house with white windows and a black door, a yellow sun, and two trees. You can modify the code to add your own features and experiment with different colors and shapes.
Learn more about canvas,
https://brainly.com/question/12547765
#SPJ1
What is the best CPU you can put inside a Dell Precision T3500?
And what would be the best graphics card you could put with this CPU?
Answer:
Whatever fits
Explanation:
If an intel i9 or a Ryzen 9 fits, use that. 3090's are very big, so try adding a 3060-3080.
Hope this helps!
when installing multiple add-on cards of the same type, which type of cards might you need to bridge together to function as a single unit?
When installing multiple add-on cards of the same type, the type of cards that might need to be bridged together to function as a single unit is a video card.
What is an Add-on card?
An add-on card is a circuit board that can be added to a computer to expand its capabilities. These cards fit into expansion slots on the motherboard and typically add functionality such as additional ports, increased memory, or enhanced graphics performance.
Add-on cards are also known as expansion cards, expansion boards, or add-in cards. They can be installed into slots on a motherboard to add new features or enhance the performance of the computer.
Types of Add-on Cards
Some common types of add-on cards include:
Video Cards
Network Interface Cards
Sound Cards
Modems
Storage Controllers
TV Tuners
Steps for installing an Add-on card:
Power down the computer.
Disconnect the power cable and other cables from the back of the computer.
Open the case by unscrewing or removing any necessary screws.
You may need to refer to your computer's manual if you're not sure where they are.
Locate the expansion slots on the motherboard.
These are typically white slots that are perpendicular to the motherboard.
Identify an available slot that matches the type of add-on card you want to install.
Remove the metal bracket from the rear of the slot by unscrewing or pulling out any necessary screws.
Gently insert the add-on card into the slot.
Secure the bracket with screws or by snapping it into place.
Close the case and reconnect all cables to the back of the computer.
Power on the computer.
Install any necessary drivers or software for the add-on card by following the manufacturer's instructions.
Learn more about addon/expansion cards:
https://brainly.com/question/32418929
#SPJ11
why is what you say in business as important as how you say it
Answer:
Because the things you say and how you say it can determine whether or not you sell an item, make a deal with another company and things of that nature. Hope this helps!!
You have a workbook with multiple worksheets and want an exact copy of one of the worksheets. How can you duplicate this sheet within the same workbook?.
To duplicate a sheet within the same workbook, hold down the Ctrl key, then click and drag the sheet's tab.
Microsoft ExcelMicrosoft Excel is a spreadsheet program that is used for data visualization and analysis tool. You can use Excel to store, organize, and analyze data.
Worksheet is a collection of cells organized in rows and columns found in Microsoft excel. A workbook is a collection of one or more spreadsheets, also called worksheets, in a single file.
To duplicate a sheet within the same workbook, hold down the Ctrl key, then click and drag the sheet's tab.
Find out more on Microsoft Excel at: https://brainly.com/question/1538272
divides files into packets and routes them through the internet to their destination
You're referring to a procedure known as packet swapping. With packet switching, huge files are divided into smaller data packets and sent to their destination through a network, like the Internet.
Each packet is sent separately and may follow a different route to its destination within the network. Once every packet has been delivered, the original file is put back together. Compared to circuit switching, which entails setting up a dedicated communication link between two devices for the duration of the transmission, this form of data transmission is more effective. The Internet is a global network of linked computer networks that enables information sharing and communication among devices all over the world. Millions of private, public, academic, business, and government networks are all connected through a range of wired and wireless technologies in one enormous network of networks.
The Internet has evolved into a vital instrument for entertainment, education, research, business, and other purposes. It makes it possible for anyone to access and exchange resources from anywhere in the world, bringing together individuals from many nations and cultures in ways that were previously not conceivable. Email, social networking, instant messaging, online shopping, online banking, and cloud computing are just a few of the services offered by the Internet.
Learn more about Internet here:
https://brainly.com/question/13308791
#SPJ4
After completing step 4, Which cells will be yellow?
Answer:
its C i just got it wrong both times haha
Explanation:
selectionsort and quicksort both fall into the same category of sorting algorithms. what is this category? a. o(n log n) sorts b. divide-and-conquer sorts c. interchange sorts d. average time is quadratic.
The category that both selection algorithm sort and quicksort fall into is "b. divide-and-conquer sorts."
Divide-and-conquer is a general algorithmic paradigm where a problem is divided into smaller subproblems, which are then solved independently. The solutions to the subproblems are combined to solve the original problem. In the case of sorting algorithms, the divide-and-conquer approach involves dividing the input into smaller parts, sorting those parts independently, and then combining the sorted parts to obtain the final sorted result. Selection sort and quicksort both use the divide-and-conquer strategy to sort the elements. However, they differ in their specific implementation. Selection sort divides the input into two parts: the sorted portion and the unsorted portion. It repeatedly selects the smallest element from the unsorted portion and places it at the end of the sorted portion until the entire array is sorted. Quicksort, on the other hand, divides the input based on a chosen pivot element. It partitions the array into two subarrays, one containing elements smaller than the pivot and the other containing elements larger than the pivot. It then recursively applies the same process to the subarrays until the entire array is sorted. It's worth noting that the time complexity of selection sort is O(n^2) in the average and worst cases, while quicksort has an average time complexity of O(n log n). Therefore, the correct answer to your question would be "b. divide-and-conquer sorts."
Learn more about algorithm here : brainly.com/question/28724722
#SPJ11
Write the definition of a function printDottedLine, which has no parameters and doesn't return anything. The function prints a single line consisting of 5 periods (terminated by a new line character) .
Answer:
See the short code Below
Explanation:
Let us implement the code with Python programming language
def printDottedLine ():
print("..... "\n) # this line will print 5 dots
match each option to the description of the task it accomplishes.
arrange>
shape styles>
size>
insert shapes>
wordart styles
Answer:
Follows are the solution to the given question:
Explanation:
Please find the attached file of the matching.
Arrange: In shape formatting, the "arrange" is used to provide an arrangement in the positing of the shape on the given slide.
shape styles: In shape formatting, it is used for applying a new design to the shape.
size: In shape formatting, the size is used for modifying the shape.
insert shapes: In shape formatting, the insert shape is used to add a new shape.
Wordart styles: In shape formatting, Wordart is used to provide a text design on the shape.
the contact between the two wheels in (figure 1) means that the following quantities are related. sort these quantities by whether they are the same or different for the two wheels.
The contact between the two wheels in (figure 1) means that:
Different for the two wheels:time to complete one revolution and angular speedsame for the two wheels: tangential speed at the outer edge of the large wheel and tangential speed at the outer edge of the small wheelWhich force is making contact?The forces that appear to be physically contacting each other between two interacting objects are known as contact forces. The forces that come into contact with an object include frictional, tensional, normal, air resistance, and applied forces.
Therefore, Objects in contact with one another exert a force called contact force. A direct point of contact exists between the two objects, where the contact force operates. This force can exist continuously as a continuous force or it can exist momentarily as an impulse. Newton's Laws govern the force of contact.
Learn more about wheels from
https://brainly.com/question/21188089
#SPJ1
1 pound is equivalent to how many grams?
A.463.59 grams
B.10 grams
C.59 grams
D.5 grams
Please don’t comment if you don’t know the answer.
So I have an hp laptop that I have a year with and everything was working great until a month ago when it started saying that the battery couldn’t hold charge anymore.
Since I didn’t want to buy a battery I simply started using while connected with the charger.
But after a few days of saying the battery couldn’t hold charge out of a sudden when I tried connecting my mouse or controller it would recognized.
It passed power to whatever I connected to it but it simply wouldn’t work.
Can it be fixed?
Or do I have to buy a new one.
Answer:If your notebook computer battery does not power the notebook or will not hold a charge, troubleshoot the battery to see if it needs to be replaced. If the battery indicator LED, located near the power icon, does not glow or always blinks, there is a battery problem. Your computer might operate correctly when it is connected to the power adapter, but not when using battery power.
Explanation:
with ____ communications the receiver gets the messge instaneously when it is sent
With instantaneous communications, the receiver gets the message instantaneously when it is sent.
What is instantaneous communication?Instantaneous communication is a communication process where information or messages get delivered from the sender to the receiver immediately. In other words, it is a type of communication process where messages can travel faster than the speed of sound, light, or any other physical phenomenon. The most common examples of instantaneous communication include telephone communication, radio communication, television communication, and satellite communication.
These types of communication processes can occur in real-time, which means the receiver can get the message as soon as the sender sends it. Consequently, with instantaneous communication, the receiver can get the message instantly when it is sent. It is a quick and efficient way of transmitting messages, and it has revolutionized communication in the modern world.
Learn more about communication here: https://brainly.com/question/26152499
#SPJ11
which connection methods are supported on windows? (choose three) shared pipe tcp/ip shared memory unix socket file
There are various connection methods supported on Windows systems. The three commonly used methods include Shared Pipe, TCP/IP, and Shared Memory.
1. Shared Pipe: This method uses named pipes for communication between applications running on the same machine or across different machines on a network. Named pipes provide a reliable, secure, and efficient way to transfer data between processes.
2. TCP/IP: Transmission Control Protocol/Internet Protocol is a widely used communication protocol for data transmission across networks. Windows supports this protocol for connecting to other devices or servers, both locally and remotely. It is a reliable, connection-oriented protocol that ensures data is transmitted accurately and in order.
3. Shared Memory: In this method, two or more applications access the same section of memory, which allows them to exchange data without the need for inter-process communication (IPC) mechanisms. It is an efficient way of communication, but proper synchronization techniques should be employed to avoid conflicts.
In contrast, Unix Socket File is not supported on Windows as it is specific to Unix-based systems. It is a local inter-process communication method that uses a file system path for addressing.
for such more question on reliable
https://brainly.com/question/29985480
#SPJ11
Fran works for an organization that wishes to Install a program on a single server and host it over the Internet for multiple users to utilize it.
Which of these computing services should Fran consider to make the program available to multiple users connected to the server?
A. platform as a service (PaaS)
B. software as a service (SaaS)
с.
Infrastructure as a service (IaaS)
D.
desktop as a service (DaaS)
Answer:
A. platform as a service (PaaS)
Explanation:
Cloud computing can be defined as a type of computing that requires shared computing resources such as cloud storage (data storage), servers, computer power, and software over the internet rather than local servers and hard drives.
Generally, cloud computing offers individuals and businesses a fast, effective and efficient way of providing services.
Cloud computing comprises of three (3) service models and these are;
1. Platform as a Service (PaaS).
2. Infrastructure as a Service (IaaS).
3. Software as a Service (SaaS).
The three (3) main characteristics of cloud computing are;
I. Measured service: it allows cloud service providers to monitor and measure the level of service used by various clients with respect to subscriptions.
II. Resource pooling: this allows cloud service providers to serve multiple customers or clients with services that are scalable and provisional.
III. Elasticity: this is the ability of the cloud computing service to be flexible and adaptive to the traffic or requests from the end users.
In Computer science, Platform as a Service (PaaS) refers to a type of cloud computing model in which a service provider makes available a platform that allow users (software developers) to build code (develop), run, store information in a database and manage applications over the internet.
The main purpose of a Platform as a Service (PaaS) is to provide an enabling environment for software developers to code without having to build and maintain complex infrastructure needed for the development, storage and launching of their software applications.
Simply stated, PaaS makes provision for all of the software and hardware tools required for all the stages associated with application development over the internet (web browser).
Hence, the advantage of the Platform as a Service (PaaS) is that, it avails software developers with enough convenience as well as simplicity, service availability, ease of licensing and reduced costs for the development of software applications.
These are the different types of Platform as a Service;
1. Private PaaS.
2. Public PaaS.
3. Hybrid PaaS.
4. Mobile PaaS.
5. Communications PaaS.
6. Open PaaS.
The software developers can choose any of the aforementioned types of PaaS that is suitable, effective and efficient for their applications development. Some examples of PaaS providers are Go-ogle, Microsoft, IBM, Oracle etc.
Hence, the computing service Fran should consider to make the program available to multiple users connected to the server is A. platform as a service (PaaS).
Answer:
B
Explanation:
platform as a service is wrong but i think it might be software
What was the contribution of John von Neuman in the development of computer?
Answer:
Explanation: As director of the Electronic Computer Project at Princeton's Institute for Advanced Study (1945-1955), he developed MANIAC (mathematical analyzer, numerical integrator, and computer), which was at the time the fastest computer he was also one of the conceptual inventors of the stored-program digital computer.
John von Neumann's significant contribution to computer development was his invention of the von Neumann architecture, enabling programmable computers.
John von Neumann, the virtuoso polymath hailing from Hungary, emerged as a brilliant luminary who graced the 20th century with his unparalleled contributions to mathematics, physics, and computer science.
Proficient in quantum mechanics, game theory, and nuclear physics, he navigated an intellectual universe as vast as the cosmos itself. Yet, it was the von Neumann architecture, the monument of his ingenuity, that etched his name indelibly in the history of computing.
Like a maestro conducting an orchestra of ideas, von Neumann orchestrated a symphony of innovation, transforming the world with his multifaceted genius and forever inspiring the pursuit of knowledge.
Learn more about John von Neuman here:
https://brainly.com/question/21842436
#SPJ7
How is effective communication defined as it applies to media?
O The end user delivers the intended message.
O The end user receives the intended message.
O The end user records the intended message.
O The end user agrees with the intended message.
Answer:
B, if the person you're sending to doesn't get the point it isn't effective. The sender will always know what they're sending but if the person who gets doesn't understand then it doesn't work. They don't need to agree to it for them to understand the message.
Explanation: