write a function that returns the sum of multiples of 3 and 5 between 0 and limit (parameter). for example, if limit is 20, it should return the sum of 3, 5, 6, 9, 10, 12, 15, 18, 20.

Answers

Answer 1

The required code is :

function multiples(number) {

 let sum = 0;

 for (let i = 0; i <= number; i++) {

  if (i % 3 === 0 || i % 5 === 0) {

     sum += i;

   }

 }

 return sum;

}

console.log( multiples(10) );

console.log( multiples(5) );

console.log( multiples(6) );

What the steps to write this function ?

1) Write a function named limit that takes an integer parameter.

2) Within the function:

3) Declare a variable called sum and set its value to zero.

4) Begin a loop at 0 and work your way up to the limit.

5) Within the loop:

6) Add the loop variable to sum if it is a multiple of three.

7) If it's not a multiple of 5, add it to sum.

8) Return the sum at the end of the loop.

What is a function ?

A function is a piece of code that performs a certain task. It is callable and reusable several times. You can supply data to a function, and it can return data to you. Many programming languages include built-in functions that may be found in their libraries, but you can also write your own.

Can learn more about the Return sum function from https://brainly.in/question/51044604

#SPJ4


Related Questions

Which of these statements would create a variable but not assign anything to it? group of answer choices
a. variable = empty
b. variable = null
c. create variable
d. variable = """"

Answers

Answer:

c. create variable

Explanation:

create a function that calculates the sum of integers from 1 to the argument taken by the function, inclusive. call the function inside a print statement to test.

Answers

The program containing function which program to calculates the sum of integers from 1 to the argument taken by the function, inclusive and also call the function inside a print statement to test.

What is a Computer program?

A computer program is a set of function together to perform a given task.

Given a positive integer Nthe task given is to calculate the sum of all integers from 1 to N .// C# implementation of function which calculates the sum of integers using System; class GFG{ // Function to find the required// summationpublic static void findSum(int N){ // Find the sum of first N // integers using the formula int sum = (N) * (N + 1) / 2; int r = (int)(Math.Log(N) / Math.Log(2)) + 1; // Find the sum of numbers // which are exact power of // 2 by using the formula int expSum = (int)(Math.Pow(2, r)) - 1; // Print the final Sum Console.Write(sum - expSum);} // Driver Codepublic static void Main(string[] args){ int N = 2; // Function to find the sum findSum(N);}}The input() function may be used to request that a user enter data into the program and save it in a variable that the computer can process.The print() function is used to output a message to the screen or another standard output device.The Sum() function is used to find the sum of integers.

To know more about Program to calculate the sum of integers visit  https://brainly.com/question/28681335

#SPJ4

the company has an active directory domain and a cloud based azure active directory. the two are synchronized together by using the azure active directory synchronization tool. the company also uses system center configuration manager. you need to use configuration manager to manage devices registered with intune. what do you need to do to accomplish this?

Answers

Users who make purchases, manage subscriptions and service requests, and keep track of the state of your services should be given the billing admin role. Give users who need to see and manage Microsoft 365 groups, Exchange Online, and user email mailboxes the Exchange admin role.

What version of Windows 10 does a device need to have in order to be co-managed?

Windows 10 version 1803 or later must be installed on the device in order for this behavior to be supported. See Co-management enrolment status for further details. New devices are now enrolled right away if they meet the requirements if you already have devices enrolled in co-management.

What distinguishes Intune managed from co-management?

A supported version of Configuration Manager's current branch is necessary for co-management. A single Intune tenant can connect to several Configuration Manager instances. Onboarding your site with Azure AD is not necessary in order to enable co-management.

To know more about co-management visit;

https://brainly.com/question/28196289

#SPJ4

isabelle needs to select cells a2, c2 and d2, and change them to the currency format. which key does isabelle need to press and hold while selecting the cells so she can format all of the cells at one time?

Answers

Since Isabelle needs to select cells a2, c2 and d2, and change them to the currency format. The key that Isabelle need to press and hold while selecting the cells so she can format all of the cells at one time is option B: CTRL 1.

What on a keyboard is Ctrl?

When the Control key is pressed in conjunction with other keys on a computer keyboard, other keys on the keyboard can execute additional tasks. Ctrl is the usual designation for it.

Therefore, paragraph should have single spacing. Apply double spacing to the paragraph by pressing Ctrl+1. Ctrl+2. Line spacing for the paragraph should be 1.5. The keyboard shortcut Ctrl+1, also known as Control+1 and C-1, is frequently used to open the first tab in an Internet browser or other program that supports tabs.

Learn more about CTRL from

https://brainly.com/question/1967480

#SPJ1

See options below

Isabelle needs to select cells A2, C2 and D2, and change them to the Currency format. Which key does Isabelle need to press and hold while selecting the cells so she can format all of the cells at one time?

answer choices

SHIFT

CTRL

ALT

TAB

you arrive to your first day of work at a new lab. you are taking over for someone who took a new job at another lab. your boss informs you that because of time restraints, this person did not exactly follow the experimental protocol. in order to proceed, you must know what he did differently. (1) according to the lab lecture, under what section of his notebook would you look to find the experimental steps? (2) as changes to the experimental steps were made, what are these differences called, and how should it appear in the lab notebook?

Answers

For the experimental steps, you would look under the procedure section to locate them. Any changes to the experimental steps would be known as deviations and they will be marked as the color red in the notebook.

What is deviations?There are plenty of guidelines and instructions on implementing a deviation system in a pharmaceutical/medical device company. However, there is a big difference between theory and practice when it comes to handling deviations and keeping oversight. Save yourself valuable time by implementing ideas presented in this blog on deviations and avoiding common pitfalls. Taking the regular deviation workflow as basis, we provide recommendations derived from many years of experience with both smooth-running systems and companies struggling with their deviation workload.

To learn more about implementing ideas refer to:

https://brainly.com/question/27329666

#SPJ4

a data analyst creates an absolute reference around a function array. what is the purpose of the absolute reference?

Answers

The purpose of the absolute reference is to keep a function array consistent, so rows and columns will automatically change if the function is copied. The correct option is D.

What is a data analyst?

A data analyst examines data to find significant customer insights and potential uses for the information. They also advise the company's management and other stakeholders of this information.

Some of the most sought-after specialists worldwide are skilled data analysts. Data analysts command high pay and top benefits, even at the entry level, due to the high demand for their services and the scarcity of qualified candidates.

Therefore, the correct option is D, To keep a function array consistent so rows and columns will automatically change if the function is copied.

To learn more about data analyst, refer to the link:

https://brainly.com/question/29351385

#SPJ1

The question is incomplete. Your most probably complete question is given below:

To copy a function and apply it to all rows and columns.

To lock the function array so rows and columns don't change if the function is copied.

To automatically change numeric values to currency values.

To keep a function array consistent so rows and columns will automatically change if the function is copied

in what two situations would udp be better than tcp as the preferred transport protocol? (choose two.)

Answers

When a speedier delivery method is required, choose option (C), and when companies do not require verify data delivery, use option (E).

By data, what do you mean?

Information is information that was transformed into a format that is useful for transfer or processing in computers. Data is information that has been transformed into decimal digital form for use with modern computers and communication mediums.

What are an example and data?

Data must serve a variety of purposes, including text, observations, figures, photos, statistics, graphs, and symbols. Data may include precise costs, weights, addresses, names, ages, temperatures, dates, or distances, for instance. Data is a fundamental type of information; it is meaningless and self - defeating on its own.

To know more about Data visit :

https://brainly.com/question/11941925

#SPJ4

The Complete question :

In what two situations would UDP be better than TCP as the preferred transport protocol? (Choose two.)

A. When destination port numbers are dynamic

B. When applications need to guarantee that a packet arrives intact, in sequence, and unduplicated

C. When a faster delivery mechanism is needed

D. When delivery overhead is not an issue

E. When applications do not need to guarantee delivery of the data

greg is checking the autosensing mechanism to see if that is the source of hisnetwork connectivity issues. what type of network is he using

Answers

Ethernet is the type of network greg is using.

What is Ethernet network?The standard method for establishing connections between devices in a wired LAN or WAN(wide area network) is Ethernet (WAN). It allows for the use of a protocol, which is a set of guidelines or common network language, to allow devices to interact with one another.While an Ethernet connection sends data by cable, a WiFi connection sends it over wireless waves. Since WiFi connections may be accessed without the usage of cords, users have more freedom to move around a location and connect to a network or the Internet.Better speed, reduced latency, and a more dependable connection are all provided by Ethernet. For mobile devices, Wi-Fi is more practical, although it is susceptible to interference.

Learn more about Ethernet network refer to :

https://brainly.com/question/1637942

#SPJ4

tiffany is a network engineer for her company. to enhance the performance of the network, she uses a method that assigns incoming transactions as they arrive in sequence to each of the infrastructure's three firewalls. transaction 1 goes to firewall 1, transaction 2 goes to firewall 3, transaction 3 to firewall 2, and so on. which technique is tiffany using?

Answers

Tiffany makes advantage of the round-robin technique to enhance network efficiency.

What does "network" actually mean?

A network is made up of three or maybe more computers that are linked together to share information (such as printers and CDs), access the cloud, or facilitate electronic communication. Pipes, landlines, radio waves, satellites, or infrared laser beams can all be used to link a network's computers to one another.

Why is it considered a network?

Since the Internet is a global network of computers that may communicate with one another through phone and cable connections, is also referred to as a network of networks.

To know more about Network visit :

https://brainly.com/question/13102717

#SPJ4

3. simple addition (1) write a program that clears the screen, locates the cursor near the middle of the screen, prompts the user for two integers, adds the integers, and displays their sum.

Answers

ClrScr

       WriteString

       WriteInt

       ReadInt

       Crlf

      ReadChar

    Gotoxy

What is a program ?

A computer utilizes a set of instructions called a program to carry out a particular task. A program is like the recipe for a computer, to use an analogy. It includes a list of components (called variables, which can stand for text, graphics, or numeric data) and a list of instructions (called statements), which instruct the computer on how to carry out a certain activity. Specific programming languages, are used to construct programs. These are high level, writable, and readable programming languages. The computer system's compilers, interpreters, and assemblers subsequently convert these languages into low level machine languages. Technically speaking, assembly language is a low level language that is one step above machine language.

To know more about program , visit

https://brainly.com/question/1538272

#SPJ4

write a program that tells what coins to give out for any amount of change from 1 cent to 99 cents. you can use coin denominations of 25 cents, 10 cents, 5 cents, and 1 cent. make sure to use least number of coins.

Answers

The coin change in quarters, dimes, and pennies for the given amount of money will be calculated by this software.

What is currency?

The aim is to determine the number given an integer array of coins of size N representing various forms of currency and an integer total. a programme that directs the distribution of coins for any quantity of Use 25-cent coins as your currency. You create a coin-change algorithm to determine the bare minimum of coins needed to equal a specific amount. 10 coins total 3 quarters, 1 dime, 2 nickels, and 4 pennies are the correct any number between 1 and 99 cents with this combination. 3 quarters, 2 dimes, 1 nickel, and 6 coins would be an alternative response.

To learn more about quarters from given link

brainly.com/question/391885

#SPJ4

to make a property read-only, omit the get accessor for the property. question 31 options: true false

Answers

True. read-only, omit the get accessor for the property.

read-only

When a file is set to read-only, only the user is permitted to access it; no one else is permitted to write to it. Opening and reading a file that has been set to "read-only" is still permitted, but deletions, overwrites, revisions, and name changes are not permitted.

The standard property manipulation API elements cannot be used to modify read-only properties. There are specialized API components that alter some read-only properties indirectly. For instance, the read-only Name field for networks can be changed using the cluster object management function SetClusterNetworkName.

Avoid attempting to force a modification to a read-only property through direct cluster database manipulation. A useless cluster is most likely to be the end result.

To know more about read-only, check out:

https://brainly.com/question/12991415

#SPJ4

dwight is a software engineer. he would like to earn a certiciate that showcases that he is well versed on application security. what certification would be most suitable

Answers

He wants to obtain a certification that will show potential employers that he is knowledgeable about software security issues. These certificates in cyber security can give you a career boost.  

What is cyber security?

The requirements to obtain them. the initial security certification that IT specialists ought to obtain. It establishes the fundamental knowledge needed for any cyber security profession and serves as a launching pad for jobs at the intermediate level in the field. There are credentials for all skill levels, from those just starting out to those for seasoned professionals wishing to upgrade, making certifications in cybersecurity potentially more valuable than a degree.

To learn more about cyber security from given link

brainly.com/question/28112512

#SPJ4

what is an input peripheral ​

Answers

An input peripheral is a device that is used to input data into a computer. Examples of input peripherals include keyboard, mouse, touchpad, touch screen, scanner, and microphone. These devices allow users to interact with and control a computer, and provide the means for entering information and data into the system.

Answer: An input peripheral is a peripheral that is used to interact and send data to the computer

Explanation: Hope this was helpful

in oracle, if we apply the comparison method used for one of the attributes as the comparison method for the entire type, the method is called a(n):

Answers

The method is known as a map method in Oracle if we use the similarity measure used in one of the characteristics also as template matching for the entire type.

For what reason is Oracle most well-known?

The software and services provided by Oracle, a company in the computer industry, include Java. Oracle provides its database management systems and cloud-engineering services and solutions through the four primary business sectors of the company: cloud and licence, hardware, & services.

Oracle is a type of software, right?

The only company that offers both a full set of integrated cloud platforms and a platform for cloud computing is Oracle. From cloud based software and data platform to existing enterprise workloads, the Oracle Cloud provides all the resources you ought to migrate, build, and manage your IT.

To know more about oracle visit:

https://brainly.com/question/26420772

#SPJ4

ellen highlights the data in the range a10:a20 in her spreadsheet. she presses ctrl x. she then uses the mouse to select cells h10:h20, and presses ctrl v. what operation did ellen just perform?

Answers

Ellen just performed a cut and paste operation on a range of cells in her spreadsheet. This operation allows Ellen to move or copy the data from the cells in range A10:A20 to the cells in range H10:H20.

What is spreadsheet ?A spreadsheet is a software application that allows users to organize and analyze data in a tabular format. Spreadsheets typically consist of rows and columns, with each cell in the table capable of storing a piece of data. The rows are usually labeled with numbers, and the columns are labeled with letters or symbols.Spreadsheets can be used for a variety of purposes, including financial analysis, budgeting, data management, and more. They are a popular tool for businesses, educators, and individuals because of their versatility and ability to handle large amounts of data.Some of the most popular spreadsheet software programs include Microsoft Excel and Apple Numbers. These programs offer a range of features and tools for creating and manipulating spreadsheets, including functions for performing calculations, formatting cells and data, and visualizing data with charts and graphs.

To learn more about spreadsheet refer :

https://brainly.com/question/26919847

#SPJ4

the range of wi-fi networks using microwave connections is being extended over greater distances using a new technology known as

Answers

The range of wi-fi networks using microwave connections is being extended over greater distances using a new technology known as line-of-sight communication.

What is  line-of-sight communication?

A type of propagation known as line of sight (LOS) can only transmit and receive data when the transmit and receive stations are in clear view of one another with no obstructions in their path. Line-of-sight communications include FM radio, microwave, and satellite transmission, for instance.

Wireless networks are more efficient for long-distance data transfer, although line-of-sight transmission is constrained by topographical obstructions and the curvature of the planet. However, by using new technology, planning, calculations, and planning, these problems may typically be reduced.

For instance, a modified line-of-sight transmission is used by mobile phones, which is made possible by a number of factors including diffraction, multipath reflection, local repeaters, and rapid handoff.

To learn more about line-of-sight visit:

https://brainly.com/question/28150749

#SPJ4

true or false? when importing contacts, hubspot automatically searches for matches with your spreadsheet columns and pairs your existing properties, such as first name and last name. true false

Answers

This statement is True. The HubSpot Excel Integration makes it simple to export your HubSpot data to Excel.

Can you integrate Excel with HubSpot?

Your HubSpot data can be easily exported to Excel thanks to the HubSpot Excel Integration. In Excel, your data can be configured to update on a regular schedule.

You can export an active or static list of your contacts and the values associated with their properties if you need to access a list of contacts outside of HubSpot.

You can export a list, for instance, if you need to access contacts outside of HubSpot, such as for an event, or if you want to send a spreadsheet to someone else in your company.

Go to Contacts > Lists in your HubSpot account.Hover over the list to export, then click the More dropdown menu and select Export.Select the checkbox next to a property to include in your export. In the dialog box, select a File format using the dropdown menu.Click Export.

To learn more about Excel refer :

https://brainly.com/question/3441128

#SPJ4

Oliver wants to save an image in a way that will have as many pixels as possible, but he is not quite sure how to do that with the software he is using, which is called GrabblePhoto. Which of these internet searches will help him answer his question?

A. how to change the resolution in GrabblePhoto

B. how to change the compression in GrabblePhoto

C. how to change saturation in GrabblePhoto

Answers

Answer:

A is the answer

Explanation:

A is the answer- How to change resolution

heapsort has heapified an array to: 86 81 52 20 12 48 45 and is about to start the second for loop.what is the array after the first iteration of the second for loop?

Answers

For is where the word for-loop gets its origin. Many programming languages employ the term "for" as the keyword to start a for-loop.

What is an array iteration?

Traversing Arrays in a for loop To iteratively explore every element of an array, we can use a for loop. Traversing the array is the term for doing this. Start the index at 0 and continue to loop until the index is smaller than the array length.

We can easily access every element in an array because for loops already include a counting variable. preserving vast amounts of data of the same kind. You can access each element of an array individually by iterating over the array.

Below are a few straightforward methods for iterating across an array in Java. Using a for loop as a first step Using a for loop and a counter variable, this is the simplest of all.

To learn more about array iteration refer to:

https://brainly.com/question/27308327

#SPJ4

What is the missing line?

import csv
_____
myReader = csv.reader(inFile)
for item in myReader:
print(item)

inFile = open("fruit.txt","r")

inFile = reader("fruit.txt","open")

inFile = reader("fruit.txt","r")

inFile = open("fruit.txt","read")

Answers

Based on the code written above, the missing line is option C: inFile = reader("fruit.txt","r")

What does line encoding mean?

The code used to transmit data from a digital signal via a transmission line is called a line code. This coding method was chosen to prevent signal overlap and distortion like inter-symbol interference.

A group of instructions used to alter data such that a certain input yields a specific output is known as a program in computer coding.

Digital data is transformed into digital signals through the process of line coding. Using this method, we turn a series of bits into a digital signal. Digital data are encoded into a digital signal at the sender side, and they are reproduced at the receiver side by decoding the digital signal.

The full code is:

import CSV

inFile = open('pets.txt', 'r')

myReader =

reader(inFile)

for item in myReader

print(item)

exit()

Learn more about code from

https://brainly.com/question/23865485

#SPJ1

for the tri-color garbage collection algorithm. which set holds only garbage at the end of the algorithm?

Answers

Because it traces out the whole collection of items that are directly or indirectly accessible by the application, the mark-and-sweep technique is known as a tracing garbage collector.

What is  tricolour garbage collection algorithm?

Tricolour marking is a tracing trash collection approach that gives each node in the network a color (black, white, or gray). To incremental garbage collection, it is fundamental. All nodes are initially white in hue. The distinct root set is highlighted in gray.

Therefore, black  set holds only garbage at the end of the algorithm.

Learn more about  algorithm here:

https://brainly.com/question/16541015

#SPJ1

Which function is used to display information to the screen in Python? (5 points)
print()
main()
run =
show[]

Answers

The print() function prints the specified message to the screen, or other standard output device. The message can be a string, or any other object, the object will be converted into a string before written to the screen.

Which Python function is used to display information to the user?

In Python, Using the input() function, we take input from a user, and using the print() function, we display output on the screen. Using the input() function, users can give any information to the application in the strings or numbers format.

Which command is used to display answers Python?

The print command is used when you want to make the computer display things. The reason you haven't needed it before is that when you type it something that has an answer Python can work out, it automatically displays that answer.

To know more about string visit :-

https://brainly.com/question/27832355

#SPJ1

nimi has deployed a new virtual private network (vpn) solution in her company's it infrastructure. she is testing the connection to the server from a client. which tool is the best choice for her to use?

Answers

Data is encrypted at the sending end and decrypted at the receiving end of a VPN through the use of tunneling technologies. To improve online activity security, the sending and receiving network addresses are also encrypted. On mobile devices, VPN apps are frequently used to secure data transactions.

How is a virtual private network connected using a protocol?

The VPN tunnel is built using the IPSec protocol in IPSec VPNs. IPSec VPNs function at the OSI model's network layer. A client connected over an IPSec VPN has practically unrestricted access to the network.

Which of the following VPN systems is used to link a private network server remote to a personal user device?

The most often used sort of VPN today is remote access. Through a secure remote server, it links users to a private network. In order for a remote access VPN to function, users' data must be routed through a fictitious tunnel between their device and the private network.

To know more about VPN visit;

https://brainly.com/question/29733551

#SPJ4

Someone with great knowledge of this may you help please and thank you it will be appreciated.!

Answers

1) It is TRUE to state that a variety of special rafters (hip, valley, jack, common, fly, etc.) may be called for, depending on the type of roof.

2) A roof truss is an engineered structure assembled in a manufacturing plant used for structural roof systems. (Option A)

3)  a roof pitch of 6/12 means 6" of rise for every 12" of slope (Option A).

What is a roof truss?

A timber roof truss is a timber structural framework designed to span the area above a room and support a roof.

Trusses are typically spaced at regular intervals and connected by longitudinal planks such as purlins. The gap between every truss is known as a bay.

Learn mroe about Roof Truss:
https://brainly.com/question/29799893?

#SPJ1

a(n) blank support system is designed to be easy to use and allows someone to obtain essential information without extensive training.

Answers

System software refers to the operating system applications made to manage intricate operating tasks in the background. A database is used to hold two different types of data in a DSS. Decision Model: Decision Model is the analytical engine of the DSS.

What are the computer systems that enable communication and in-person meetings between persons who are spread across different geographic locations?

The two-way or multipoint reception and transmission of audio and video signals by individuals in various locations for real-time communication is known as videotelephony, also known as videoconferencing and video teleconferencing.

managers by using both internal data from MIS and TPS and external data?

Senior management uses decision support tools to make complex decisions. Both internal (such as transaction processing systems and management information systems) and external systems provide input to decision support systems.

To know more about Decision Support System visit;

https://brainly.com/question/28170825

#SPJ4

what is spreadsheet ​

Answers

Answer: A spreadsheet is an electronic document in which data is arranged in the rows and columns of a grid and can be manipulated and used in calculations

Explanation: Hope this was helpful

Answer:

give the guy above me brainliest

which command uses the array literal form to create and populate the daynames array with the abbreviations of weekdays (starting with mon and going through fri)?

Answers

The codes are listed below.

/declaration of an array variable of the data type String

"mon," "tue," "wed," "thu," "fri," "sat," and "sun" make up the string "week";

Explanation:

The code that is used in the programming language is as follows:

Here, we declare an array variable of type String and assign values to it, namely, week. The next array only contains members of the same type.

The data type known as an array is used to store elements of the same type simultaneously and is also used as a data structure.

Learn more about programming language from here:

https://brainly.com/question/23959041

#SPJ4

why should you compare hashes of the files you download from the internet to a library of known hash values?

Answers

A hash is a unique code that is generated from a file's contents. It prevents the spread of malware by checking a file's integrity.

What is hash values ?A hash value, also known as a hash code, is a numerical value that is generated from the contents of a file or other data. Hash values are used to verify the integrity of data by allowing a recipient to compute the hash value of the received data and compare it to the expected hash value. When you download a file, you can use a tool to calculate the hash of the downloaded file and compare it to the expected hash value provided by the source of the download. If the calculated hash matches the expected hash, it means that the file has been downloaded correctly and is unchanged from its original form. If the calculated hash does not match the expected hash, it means that the file has been modified or corrupted during the download process and may not be trustworthy.

To learn more about hash values refer :

https://brainly.com/question/28325568

#SPJ4

The FBI ____ was formed in 1984 to handle the increasing number of cases involving digital evidence.
A) Federal Rules of Evidence (FRE)
B) Department of Defense Computer Forensics Laboratory (DCFL)
C) DIBS
D) Computer Analysis and Response Team (CART)

Answers

The FBI (D) Computer Analysis and Response Team (CART) was formed in 1984 to handle the increasing number of cases involving digital evidence.

What is cybercrime?

A crime committed through a computer or computer network is referred to as a cybercrime. Either the computer was the intended target or it was used in the crime. Someone's security or finances may be compromised through cybercrime.

When private information is intercepted or made public, whether legally or illegally, there are various privacy issues concerning cybercrime. International cybercrimes, such as financial theft, espionage, and other cross-border crimes, are committed by both state-sponsored and non-state actors. Cyberwarfare is the term sometimes used to describe cybercrimes that take place beyond national boundaries and include at least one nation-state. Cybercrime, according to Warren Buffett, is the "number one concern with mankind" and "poses genuine risks to humanity."

To know more about cybercrime visit:

https://brainly.com/question/28209191

#SPJ1

Other Questions
Out of 400 plants sold daily at a nursery, 90% of them have flowers. How many of theplants have flowers?A. 40B. 90C. 310D. 36010 points. although they occupy less than 1% of the global ocean floor, coral reefs are habitat for more than 50% of marine life. question 17 options: true false Bob lifts a 15N rock through a distance of 1.7m. How much work does Bob do O. The relationship when a stronger nation controls the foreign policy of a weaker nation is called? given the following relation book (book isbn, author num, date published). assume a book can be written by many authors and an author can write many books. what would be appropriate primary key? a. book isbn b. book isbn, author num c. auth num d. none of the above Receptors can be grouped into three classes1. Mechanoreceptors are stimulated by mechanical forces such as pressure2. Chemoreceptors detect chemicals or chemical changes3. Electromagnetic receptors react to heat and light energy select all that apply. in an inheritance situation, the new class that you create from an existing class is known as the _______ drink(s) within a 4 hour time span, regardless of height and weight, can get you a BAC of .01% .1 which type of ad can cigarette companies legally run? group of answer choices magazine ad placard in a baseball stadium tv ad roadside billboard what is the total surface area of the triangular prism in square centimeters? A 240 cm^2B 368 cm^2C 320 cm^2D 344 cm^2 Fill in the blank with the correct anatomical term: The patella is ____ to the the coxal bone. what refers to the selection and promotion of government employees on the basis of examinations and qualifications? I need. Help with this question metlock corporation has 163,000 shares of $20 par value common stock outstanding when it announces a 4-for- 1 stock split. before the split, the stock had a marketprice of $140 per share. after the split, how many shares of stock will be outstanding? what will be the approximate market price per share? number of shares shares market price according to john l. o'sullivan's democratic review, what was the key to the history of nations and the rise and fall of empires? write an equation for the line for each graph 19. Find the surface area of the cylinder. Give your answer to two decimal places. QuestionA rabbit moves a distance of 85 meters in 13 seconds.What is the rabbits average speed?7.26 m/s0.15 m/s6.54 m/s6.54 m/s A _____ is a data validation rule that identifies values that are questionable, but not necessarily wrong.a.reasonableness checkb.sequence checkc.range checkd.validity check graph 1. comparison of european flycatcher hatching and fledging dates and caterpillar biomass based on the data, scientists claim that the reproductive behavior of european flycatchers is influenced by the availability of energy sources. which of the following statements best justifies this claim?