3.​(a)​Explain the difference between uploading and downloading data from the Internet. ​[2]



(b)​Why is uploading generally much slower than downloading?

Answer for B:

Answers

Answer 1

Answer:

Hey mate......

Explanation:

This is ur answer....

For many users, uploading files is quite a bit slower than downloading files. This is usually normal, because most high-speed Internet connections, including cable modems and DSL, are asymmetric — they are designed to provide much better speed for downloading than uploading.

Hope it helps!

Brainliest pls!

Follow me! ;)


Related Questions

Which of these is a challenge that developers face who write web applications?
a. not being able to access databases
b. not knowing how much memory the user's computer has
c. not knowing the user’s screen resolution\
d. not being able to use programming languages such as Ruby or Java

Answers

Answer:

c. not knowing the user’s screen resolution

Explanation:

taking text on edge2020

Answer:

c. not knowing the user’s screen resolution

Explanation:

The questions of economics address which of the following? Choose three answers.
who
what
where
when
why
how

Answers

Answer:

Economists address these three questions: (1) What goods and services should be produced to meet consumer needs? (2) How should they be produced, and who should produce them? (3) Who should receive goods and services? The answers to these questions depend on a country's economic system.

So the answer would be WHAT, WHY & WHO. Hope this helps

Explanation:

list the steps involved in cutting and pasting in a different document​

Answers

To cut or copy, hold down Ctrl and press X or C. Choose Paste from the menu bar when you right-click the item's destination. You can right-click almost anywhere, including inside a document or folder. To paste, hold down Ctrl and press V on the keyboard.

a(n) ___ is a pointing device that works like an upside-down mouse, with users moving the pointer around the screen by rolling a ball with their finger.

Answers

Answer: a track ball.

What does data storage enable a browser to do?
O O O O
organize lists of bookmarks
edit open-source software
organize a hard drive
save browsing information

Answers

The data storage enables a browser to save browsing information. The correct option is d.

What is data storage?

File backup and recovery are made simple by data storage in the case of an unanticipated computer failure or cyberattack. Physical hard drives, disc drives, USB drives, and virtually on the cloud are all options for data storage.

Data storage makes it possible for a browser to simply enable Web Storage capabilities when an IT administrator has disabled such exciting features. Additionally, you may easily clear any existing "Web Storage" data using the browser's cache.

Any one of them may be utilized, depending on the needs, to save data in the browser. Today's essay will compare local storage, session storage, and cookies in great detail.

Therefore, the correct option is d. save browsing information.

To learn more about data storage, visit here:

https://brainly.com/question/13650923

#SPJ2

pizza lab create a new java project and call it pizza your last name.

Answers

The Java project "PizzaLab_Smith" is a software application designed to facilitate pizza ordering and management. It incorporates various functionalities such as creating and modifying pizza orders, managing customer information, and tracking order status.

The Java project "PizzaLab_Smith" is developed to provide a comprehensive solution for pizza ordering and management. It leverages the power of Java programming language to create a user-friendly software application. The project encompasses a range of functionalities that make it easy for customers to place orders and for the pizza shop to manage them efficiently.

The project includes features such as creating and modifying pizza orders, allowing customers to customize their pizzas with different toppings, crust types, and sizes. It also provides options for specifying delivery or pickup preferences. The software stores customer information securely, including addresses, contact details, and order history, ensuring a personalized experience for returning customers.

Additionally, the project incorporates order tracking functionality, enabling customers to stay updated on the status of their orders. It allows them to view estimated delivery times and track their pizzas in real-time. For the pizza shop, the project provides a streamlined interface to manage incoming orders, update order status, and generate reports for analysis and decision-making.

In conclusion, the Java project "PizzaLab_Smith" is a robust software application that simplifies the process of pizza ordering and management. It combines a user-friendly interface with efficient functionalities to enhance the overall customer experience and streamline operations for the pizza shop.

learn more about Java project here:

https://brainly.com/question/30365976

#SPJ11

How does this skill honed and improved by internet technology?

Answers

Internet technology can hone and improve this skill by providing access to an abundance of resources, such as articles, tutorials, and videos.

People now have access to a wealth of knowledge on a wide range of subjects thanks to the internet.

The creation of tools and apps for language learning on the internet has also made it simpler for people to learn new languages.

Online communities have been developed thanks to the internet, allowing people to communicate with those who speak different languages. These communities give people the chance to practise writing and speaking in another language.

People can now more easily take part in language exchange programmes thanks to the internet.
Additionally, with the ability to connect to others through online communities, one can receive feedback and constructive criticism, allowing for a faster and more targeted improvement in the skill.

For such more question on technology:

https://brainly.com/question/4903788

#SPJ11

place the steps in order for adding an additional email account in outlook

Answers

Answer:

Give Thanks to JessicaRoberts715

1. Click the file tab

2. Click the add account button

3. Type the account information

4. Outlook will auto-configure the account

5. A new account appears in the folder list

the emerging trends in microcomputer technology in relation to size

Answers

Miniaturisation, decreased power consumption, higher computing power, and the integration of numerous functionalities into a single chip or device are emerging themes in microcomputer technology.

What are the three new social trends that computers are bringing about?

AI, edge computing, and quantum computing are some of the most recent trends in computer science. The latest developments in robotics and cybersecurity are also taught to IT professionals.

What are the two newest trends and technologies?

Spatial computing and the spatial web, digital persistence, multientity environments, decentralisation technology, high-speed, low-latency networking, sensor technologies, and AI applications are just a few of the new, enabling technologies and trends.

To know more about microcomputer  visit:-

https://brainly.com/question/27948744

#SPJ9

Write a program which takes a string input, converts it to lowercase, then prints
the same string without the five most common letters in the English alphabet (e, t, a, i o).

Answers

Answer:

Seeing as i don't know what language you want this made in, so I'll do it in two languages, Py and C++.

Here is a solution in C++:

#include <iostream>

#include <string>

#include <map>

int main() {

 // prompt the user for a string

 std::cout << "Enter a string: ";

 std::string input;

 std::getline(std::cin, input);

 // convert the input string to lowercase

 std::transform(input.begin(), input.end(), input.begin(), ::tolower);

 // create a map to keep track of the frequency of each letter in the string

 std::map<char, int> letter_counts;

 for (const char& c : input) {

   letter_counts[c]++;

 }

 // create a string of the five most common letters in the English alphabet

 // (e, t, a, i, o)

 std::string most_common_letters = "etai";

 // remove the five most common letters from the input string

 for (const char& c : most_common_letters) {

   input.erase(std::remove(input.begin(), input.end(), c), input.end());

 }

 // print the resulting string

 std::cout << "Resulting string: " << input << std::endl;

 return 0;

}


Here is a solution in Python:

import string

# prompt the user for a string

input_str = input("Enter a string: ")

# convert the input string to lowercase

input_str = input_str.lower()

# create a string of the five most common letters in the English alphabet

# (e, t, a, i, o)

most_common_letters = "etai"

# remove the five most common letters from the input string

for c in most_common_letters:

 input_str = input_str.replace(c, "")

# print the resulting string

print("Resulting string: ", input_str)

Explanation: Hope this helped

One recent trend in modeling involves the development of model libraries and solution technique libraries. true or false

Answers

The given statement "One recent trend in modeling involves the development of model libraries and solution technique libraries." is true because the development of these libraries enables users to access pre-built models and solution techniques, improving efficiency and accuracy in various applications.

One recent trend in modeling involves the development of model libraries and solution technique libraries. A model library is a collection of pre-built models that can be used as building blocks to create more complex models. A solution technique library is a collection of pre-built algorithms and optimization methods that can be used to solve complex models.

The development of model libraries and solution technique libraries is driven by several factors. One factor is the increasing complexity of models in many fields, such as finance, engineering, and logistics.

Learn more about technique libraries: https://brainly.com/question/29364880

#SPJ11

Which statement describes how to insert the IF, COUNTIF, or SUM function into a cell?

Use the Insert tab and select the appropriate function from the Functions group.
Type an = sign in the cell, followed by the name of the function and the relevant arguments.
Right-click the cell to access the context menu to insert the function.
Use the View tab and choose the correct function from the displayed list.

Answers

Answer:

Type an = sign in the cell, followed by the name of the function and the relevant arguments.

Explanation:

Microsoft Excel is a software application or program designed and developed by Microsoft Inc., for analyzing and visualizing spreadsheet documents. There are different types of functions used in Microsoft Excel to perform specific tasks and these includes;

1. VLOOKUP function: it's an Excel function that avails end users the ability to lookup data in a table organized vertically. Thus, it's typically used for searching values in a column.

2. SUMIF function: it is an Excel function to sum cells that meet criteria such as text, dates and numbers. This function can be used with the following logical operators; <, >, and =.

3. COUNT function: it's an Excel function to find the total number of entries in a column. For example, to count the number of entries in B1:B15; COUNT(B2:B15).

4. IF function: runs a logical test and returns one value for a TRUE result, and another for a FALSE result. For example, to fail scores that are below 40; IF (A1 < 40, "Fail", "Pass").

5. HLOOKUP function: it's an Excel function that avails end users the ability to lookup data in a table organized horizontally. Thus, it's typically used for searching values in a column.

In Microsoft Excel, to insert the IF, COUNTIF, or SUM function into a cell, you should type an equal to (=) sign in the cell, followed by the name of the particular function and the relevant arguments.

For example, to use the SUMIF function, you should type; =SUMIF(A2:B5, "Peter", C1:C9).

c) From this group, you can crop images in PowerPoint. (i) Adjust (ii) Arrange (iii) Edit (iv) Size​

Answers

(iv) Size

Under the picture format tab

Carla Windows manufactures and sells custom storm windows for three-season porches. Carla also provides installation service for the windows. The installation process does not involve changes in the windows, so this service can be performed by other vendors. Carla enters into the following contract on July 1, 2020, with a local homeowner. The customer purchases windows for a price of $2,370 and chooses Carla to do the installation. Carla charges the same price for the windows irrespective of whether it does the installation or not. The customer pays Carla $2,050 (which equals the standalone selling price of the windows, which have a cost of $1,140) upon delivery and the remaining balance upon installation of the windows. The windows are delivered on September 1, 2020, Carla completes installation on October 15, 2020, and the customer pays the balance due. Given uncertainty of finding skilled labor, Carla is unable to develop a reliable estimate for the standalone selling price of the installation. Prepare the journal entries for Carla in 2020. (Credit account titles are automatically indented when the amount is entered. Do not indent manually. If no entry is required, select "No entry" for the account titles and enter O for the amounts.) Date Account Titles and Explanation Debit Credit (To record sales) (To record cost of goods sold) (To record payment received)

Answers

On July 1, 2020, Carla Windows records sales of custom storm windows, receiving payment for the windows. On October 15, 2020, they record revenue from the installation service and collect the remaining balance.

Date              Account Titles and Explanation      Debit     Credit

----------------------------------------------------------------------

July 1, 2020    Accounts Receivable                          $2,370

                       Sales Revenue                                       $2,370

                               (To record sales of windows)

September 1, 2020    Cost of Goods Sold                        $1,140

                                   Inventory                                         $1,140

                                       (To record the cost of windows sold)

September 1, 2020    Accounts Receivable                          $2,050

                                       Cash                                                      $2,050

                                               (To record payment received for windows)

October 15, 2020    Accounts Receivable                          $320

                                        Revenue from Installations           $320

                                               (To record revenue from installation service)

October 15, 2020    Cash                                                      $320

                                       Accounts Receivable                          $320

                                               (To record the collection of balance due for installation)

The journal entries for Carla in 2020 are as follows:

- On July 1, 2020, Carla records the sales of windows by debiting Accounts Receivable and crediting Sales Revenue.

- On September 1, 2020, Carla records the cost of goods sold by debiting Cost of Goods Sold and crediting Inventory, to account for the cost of windows sold.

- On September 1, 2020, Carla records the payment received from the customer by debiting Accounts Receivable and crediting Cash.

- On October 15, 2020, Carla records the revenue from installation service by debiting Accounts Receivable and crediting Revenue from Installations.

- On October 15, 2020, Carla records the collection of the remaining balance for installation by debiting Cash and crediting Accounts Receivable.

Learn more about custom storm windows here:-

https://brainly.com/question/18120900

#SPJ11

Compute the most general unifier (mgu) for each of the following pairs of atomic sentences, or explain why no mgu exists.p=r(f(x,x),A) and q=r(f(y,f(y,A))

Answers

First, we can observe that p and q cannot be unified because they are different predicates. Therefore, no mgu exists for these pairs of atomic sentences.

This is going to be a bit of a long answer, but bear with me. In order to compute the most general unifier (mgu) for the two atomic sentences p=r(f(x,x),A) and q=r(f(y,f(y,A))), we first need to understand what unification is.


Unification is the process of finding a common substitution that can make two terms equal. In other words, given two terms, we want to find a way to replace some of the variables in those terms with constants or other variables, so that the two terms become identical.

To know more about atomic visit :-

https://brainly.com/question/30898688

#SPJ11

We use the term "problem" to refer to lots of different situations. Brainstorm as many different kinds of problems as you can and list them below. (You must list at least two problems)

Answers

world hunger, abusive situations, homelessness, any mental health issue, bullies, issues with the law, and thing that can have a negative effect on you or a group of people

Function of the redo and undo

Answers

Answer:

The redo function restores any actions that have been previously undone using an undo. Undo is a function performed to reverse the action of an earlier action.

4.9 code practice question 3 edhesive. Anyone know how to do this??

Answers

Answer:

In Python:

x = 0

for i in range (99, 0, -1):

   x += i

   print(x)

Explanation:

It just works.

The required program written in python 3 which prints the running total of integers from 99 backwards is as follows :

sum = 0

#initialize the sum of the integers to 0

for num in range (99, 0, -1):

#loop through integers starting from 99 and take 1 step backward

sum+=num

#add the iterated value to the number in the sum variable and assign the value to the same variable.

print(sum)

#display the value of sum after each iteration.

Therefore, the output of the program is attached below.

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

4.9 code practice question 3 edhesive. Anyone know how to do this??

a processor performing fetch or decoding of different instruction during the execution of another instruction is called

Answers

A processor performing fetch or decoding of different instructions during the execution of another instruction is called "instruction pipelining."

This technique is used to improve the processor's performance and efficiency by allowing multiple instructions to be executed concurrently. Instruction pipelining is a technique used in computer architecture to increase the throughput and performance of a processor.

It breaks down the execution of a single instruction into a series of smaller sub-tasks or stages, which can be overlapped and executed concurrently with other instructions, thereby reducing the overall processing time. In a pipelined processor, the execution of an instruction is divided into several stages, such as fetch, decode, execute, memory access, and writeback.

Learn more about instruction pipelining: https://brainly.com/question/31191995

#SPJ11

wht kind of steps you still need to take to prepare you for a career in the field.

Answers

Think about volunteering, internships, or part-time employment. Gaining practical experience in the field of your potential professional choice might be extremely beneficial.

What is career ?

There are two definitions of a career. A profession, occupation, trade, or vocation are all frequently referred to using the word "career." What you perform for a livelihood is defined by your job, which can range from occupations requiring substantial education and training to ones that can be performed with just a high school degree and a desire to learn. Work as a doctor, attorney, teacher, carpenter, veterinary aid, electrician, cashier, instructor, or hairstylist is an example of a career.However, there is another way to define a career. Additionally, it relates to the advancement and activities you have made throughout your working years, particularly as they pertain to your vocation.

To know more about Internship visit:

https://brainly.com/question/11890285

#SPJ1

Can we do the GTA V missions in any order?

Answers

Answer:

yes

Explanation:

do you also play it i love to play gta v

Which loop prints the numbers 1, 3, 5, 7, …, 99?\


c = 1

while (c <= 99):
c = c + 2
print(c)

c = 1

while (c < 99):
c = c + 1
print(c)

c = 1

while (c <= 99):
print(c)
c = c + 2

c = 1

while (c < 99):
print(c)
c = c + 1

Answers

The loop that prints the numbers 1, 3, 5, 7, …, 99 is:

The Loop

c = 1

while (c <= 99):

   print(c)

   c = c + 2

This loop initializes the variable c to 1, then enters a while loop that continues as long as c is less than or equal to 99.

During each iteration of the loop, the value of c is printed using the print function, and then c is incremented by 2 using the c = c + 2 statement.

This means that the loop prints out every other odd number between 1 and 99, inclusive.

Read more about loops here:

https://brainly.com/question/19344465

#SPJ1

what type of software can be integrated with erp software to record ledger journaling and biling in the smae platform as other, related data

Answers

Accounting software can be integrated with ERP software to record ledger journaling and billing in the same platform as other related data.

By integrating accounting software with ERP, companies can streamline financial management processes, including recording journal entries, billing, and managing accounts payable and receivable.

ERP software typically includes financial modules that handle general ledger, accounts receivable, and accounts payable. However, integrating accounting software adds more robust functionality, such as invoicing, cash flow management, and financial reporting.

Popular accounting software that can be integrated with ERP includes QuickBooks, Xero, and Sage. Overall, integrating accounting software with ERP helps organizations to manage their financial data more efficiently and accurately.

For more questions like Data click the link below:

https://brainly.com/question/10980404

#SPJ11

Define the term Project brief? why is it important to do planning?

Answers

Answer: the project brief is a document that provides an overview of the project.

Explanation: It says exactly what the designer, architect, and contractor needs to do to exceed your expectations and to keep the project on track with your goals and your budget.

1. what is the relationship between logical and physical models?

Answers

The relationship between logical and physical models is that they are two different views of the same system. A logical model is an abstract representation of a system that describes its functional requirements, business rules, and relationships between entities.

It is independent of any specific technology or implementation. A physical model, on the other hand, is a concrete representation of a system that describes its physical components, such as hardware, software, and databases. It is dependent on the technology used to implement the system. The logical model serves as a blueprint for the physical model, which is designed to meet the requirements of the logical model.

The physical model is derived from the logical model and serves as the basis for building and implementing the system. Therefore, the logical model and physical model are complementary and interconnected, and both are essential for designing and implementing a successful system.

Learn more about physical models: https://brainly.com/question/1511455

#SPJ11

14. How does a denial-of-service attack differ from a distributed denial-of-service attack?

Answers

A denial-of-service (DoS) attack is a type of cyber attack in which an attacker attempts to overwhelm a network, server, or website with traffic or requests to make it unavailable to users.

The attacker typically uses a single source, such as a computer or botnet, to flood the target with traffic or requests.On the other hand, a distributed denial-of-service (DDoS) attack involves multiple sources, such as a network of infected devices, to launch a coordinated attack on a target. DDoS attacks are often more difficult to defend against and mitigate than DoS attacks because they are coming from many different sources and can be harder to trace back to the original attacker.

To learn more about service click the link below:

brainly.com/question/13068589

#SPJ11

Give at lesat 3 examples of how is NLG (Natural Language Generation) beneficial and unbeneficial (pls support your points)

Answers

NLG (Natural Language Generation) is beneficial isuch as automating content creation, personalizing user experiences, and generating insights from data but have limitations including potential biases in generated content and difficulties in capturing nuanced human language.

How is NLG beneficial and unbeneficial?

NLG offers numerous benefits including the ability to automate the generation of content across different domains, such as news articles, product descriptions, and weather reports. This helps save time and resources by eliminating the need for manual content creation.

NLG systems may have limitations. One concern is the potential for biased content generation as the models are trained on existing data that may contain biases. This can lead to the generation of discriminatory or misleading content.

Read more about Natural Language

brainly.com/question/14222695

#SPJ1

NLG is beneficial in generating content quickly and accurately, maintaining consistency, and providing a personalized user experience

NLG, or Natural Language Generation, is the method of generating natural language text using computer algorithms. It is a subfield of artificial intelligence that focuses on creating human-like texts, thereby making it easier for humans to interact with machines. Natural Language Generation is beneficial in many ways, but it also has its limitations. In this response, we will discuss the benefits and drawbacks of NLG in detail. Benefits of Natural Language Generation (NLG):

1. Efficient content creation: NLG algorithms can generate content faster than human writers, making it easier for businesses and publishers to create large amounts of content in less time. This is particularly beneficial for news and sports articles, where quick updates are required.

2. Consistent quality and tone: NLG can ensure that the content is written in a consistent tone and style, maintaining the brand's voice and values. In contrast, human writers can experience mood changes, which may influence the quality of their writing.

3. Personalization: NLG algorithms can create personalized messages and content, providing a better user experience for customers and clients. It can also be used for chatbots to provide human-like interactions with customers, improving customer satisfaction.

Unbeneficial of Natural Language Generation (NLG):1. Limited creativity: NLG algorithms can generate text based on the data it is fed. However, it lacks creativity and may fail to produce the same level of creativity as human writers. NLG cannot replace human writers' creativity, which is required in fields such as literature and poetry.

2. Dependence on data quality: NLG requires high-quality data to generate effective texts. Low-quality data may result in incorrect information and errors in the generated text.

3. Lack of empathy: NLG algorithms lack human empathy and understanding of social and emotional contexts. This may cause problems in situations that require a high level of emotional intelligence, such as counseling, medical diagnosis, and human resources. Therefore, NLG is beneficial in generating content quickly and accurately, maintaining consistency, and providing a personalized user experience. However, it has its limitations and cannot replace human creativity, empathy, and emotional intelligence.

For more questions on articles

https://brainly.com/question/25276233

#SPJ8

Read the scenario and answer the question. Audrey had problems with her computer software recently. One of her programs shut down unexpectedly, but not because of a virus. Unable to troubleshoot the problem herself, Audrey called a computer technician, who gave her a checklist of things to look for and fix. Her software began to work again, but not for long. The following week, Audrey had the same problem with her software. What is the first step Audrey should take? Refer to the troubleshooting checklist. Scan the computer for viruses. Remove all unwanted files from the computer. Pay to have a technician repair the computer.

Answers

Answer:

Refer to the troubleshooting checklist.

Explanation:

I got it right in edge:)

Answer:

The answer is a btw

Explanation:

thanks for deleting my answer

why do scientist use mathamatical equations

Answers

They enable scientists to anticipate, compute rates, and perform conversions, as well as to characterize relationships between two variables in the physical world.
They allow scientist to describe relationships between two variables in the physical world, make predictions, calculate rates, and make conversions, among other things. Graphing linear equations helps make trends visible.

What is the scope of the variable capacity?

class raft:
def __init__(self,capacity):
self.capacity = capacity
self.location = 'Gauley'
self.repairs = []
def __str__(self):
result = "Capacity: " + str(self.capacity)
result = result + "\n Location:" + self.location
result = result + "\nRepairs:"
if len(self.repairs) < 1:
result = result +"No repairs were needed."
else:
for item in self.repairs:
result = result + item + '\n'
return result
myRaft = raft(30)
print(myRaft)
Responses

#1 limit to the method __init__


#2 limited to the method __str__


#3 accessible to the entire program


#4 limited to the raft class

Answers

The scope of the variable "capacity" in the given code is (#4) limited to the "raft" class. This means that the variable can be accessed and used within the class, but not outside of it.



In the code, the variable "capacity" is defined as a parameter in the constructor method (__init__) of the "raft" class. This means that whenever a new object of the "raft" class is created, the "capacity" value needs to be provided.

The variable "capacity" is then stored as an instance variable, using the "self" keyword, which makes it accessible to all methods within the class. This includes the "__str__" method, where it is used to generate the string representation of the object.

However, since the variable is not defined as a global variable or passed as an argument to other functions or methods, it cannot be accessed outside of the class. It is specific to the "raft" class and can only be used within its methods.

So, in summary, the scope of the variable "capacity" is limited to the "raft" class and it is accessible within all methods of the class.

For more Questions on variable

https://brainly.com/question/29360094

#SPJ8

Other Questions
Find the missing length I WILL GIVE BRAINLIEST Stars fuse most of the hydrogen in the entire star before they die.2 poirTrueFalse what is the answer to this equation using the quadratic formula? 3x^2+2x+4x=0 Explain the importance of Tyndalls research outlined in paragraphs 11-13 on scientific thinking today. Use evidence from the text to support your response. all of the following are potentially dilutive in computing diluted eps except: group of answer choices employee stock options convertible preferred stock convertible bonds warrants all of the above are dilutive securities The lowest paying salary out of jobs such as Firefighter, Emergency Medical Technician, and Emergency Management Specialist is an Emergency Management Specialist. True or False? What is the weighted-average cost of capital (WACC) based on Company XYZ's current capitalization and comps values? Sally can paint a room in 6 hours while it takes Steve 3 hours to paint the same room. How long would it take them to paint the room if they worked together? "Sometimes I just don't feel like a functioning adult. I can't believe I'm going to be a father in a couple of months. My father's ghost still hangs over me." What kinds of things could Tio Luis do to Mama because she refused to marryhim? Jack tossed a coin three times. Which tree diagram shows all the possible outcomes of the coin landing heads up or tails up? PLS HELP ASAP i dont understand this 2. Germ cells are found in theA. heartB. lungsC. musclesD. ovaries A dbms uses ________ to create a query. I need to create an imaginary business for school, and it's going to be on selling pet food. What should the name be? Give me some suggestions! :D ILL BRAINLIEST YOU PLEASE HELP ME EXPLANATION IF YOU CAN determine the wavelength of the radiation of the most intense electromagnetic radiation emitted from the surface of the star sirius, which has a surface temperature of 11,000 k The ______ of the CPU coordinates the flow of information around the processor.a. Datapathb. IO / Peripheralsc. Memoryd. Control Unite. Registersf. Busg. ALU example on how you will use statistics and probability in real life situations as a student The news article says all of the following except __________. A.The jumbo squid used to be much more threatened by predators like tunas and sharks. B.The jumbo squid used to be associated only with warmer areas of the Pacific Ocean. C.Jumbo squid are easily adapting to various climates and are affecting the ecosystems that exist there. D.Jumbo squid have nearly destroyed the California populations of anchovies and rockfish.