The formula for calculating your BMI is below.
weight in pounds
BMI = 703
(height in inches)
Which line of code will correctly calculate the BMI? Select 3 options.
obmi = (703 * weight) /height ** 2
✓ bmi = 703 * weight/ height" height
bmi = 703 * weight/ (height* height)
bmi = 703 * weight/height2
O bmi = 703 * weight/ height** 2

Answers

Answer 1

Answer:

The Answers are A, C, D

Explanation:

This is Correct on Edge


Related Questions

create html code showing heading tags​

Answers

Answer:

Assuming you mean the HTML5 head tag, then this may work for you:

<!DOCTYPE HTML>

<html lang="en">

<head>

<title>My Very Awesome Website</title>

<link href="./css/main.css" rel="stylesheet"  />

<meta name="viewport" content="width=device-width, initial-scale=1" />

</head>

<body>

<h1>Hey look</h1>

<p>This is my awesome website!</p>

<h3>Note</h3>

<p>This website is supposed to be 100% awesome!</p>

</body>

</html>

...is a type of network that belongs to a private group or company.

Answers

A virtual private network (VPN) is a type of network that belongs to a private group or company.

A VPN extends a private network across a public network, such as the internet, allowing users to securely access and share resources within the private network, regardless of their physical location.

In a private group or company, it is crucial to ensure the confidentiality, integrity, and security of sensitive information and communications.

A VPN facilitates this by creating a secure and encrypted connection between a user's device and the private network.

This encryption protects the data from unauthorized access, interception, or tampering by external entities.

By utilizing a VPN, users can securely access company resources, such as servers, databases, or intranets, even when they are outside the physical office premises.

This enables employees to work remotely or connect to the private network while traveling, maintaining productivity and collaboration while ensuring data security.

Additionally, VPNs provide an added layer of privacy and anonymity by masking the user's IP address.

This helps protect user identity and location information from potential online threats, such as hackers, surveillance, or data tracking.

For more questions on virtual private network

https://brainly.com/question/29733551

#SPJ8

What is output by: print(len(stuff))

Answers

Answer:

5

Explanation:

The code print out the length of the string "stuff" which equals 5.

Disadvantages and advantages of utp and stp cables

Answers

The disadvantages and advantages of utp  are:

UTP cables are known to be the most used form of networking cables on the global market and are seen as the fastest copper-based medium that is known to be available. They are said to be less expensive than those of STP cables.They are easily dispensable.

What is STP advantages and disadvantages?

The Shield of STP cables are known to be one that need to be properly  grounded so that it can function  as an antenna and carry  unwanted signals.

Note that it is seen as a More expensive kind of cable than the UTP and they are also seen to be very Difficult to keep and maintain. They are said to have thicker diameter and not very flexible.

Hence, The disadvantages and advantages of utp  are:

UTP cables are known to be the most used form of networking cables on the global market and are seen as the fastest copper-based medium that is known to be available. They are said to be less expensive than those of STP cables.They are easily dispensable.

Learn more about cables from

https://brainly.com/question/16889976

#SPJ1

Which statement is true with respect to Java?

A.
Java programs are not compiled, only interpreted.

B.
Intermediate bytecode is created by the JIT.

C.
Bytecode is platform independent.

D.
The JVM creates object code after compiling.

Answers

Java is a high level programming language.

The true statement is (c) Bytecode is platform independent.

First, java programs are compiled and interpreted

This means that (a) is not true

Secondly Just-In-Time (JIT) does not create intermediate bytecodes, and Java virtual machine (JVM) does not create object codes.

However, java programs are compiled to an instruction set for the JVM; this instruction set is referred to as the byte code.

And the byte code is platform-independent.

Hence, the true option is (c)

Read more about java programming language at:

https://brainly.com/question/2266606

Answer:

C) Bytecode is platform independent

Explanation:

Just got it right on ASU

this sheet lists all the preparatory commands and calls a director will say for the entire program?

Answers

Yes, it is common for a director to provide a list of preparatory commands and calls for the entire program, especially in the performing arts such as music, dance, or theater. These commands and calls serve as a guide for the performers, indicating when to enter or exit the stage, change positions, adjust lighting or sound, and so on.

Having a clear and consistent set of preparatory commands and calls helps to ensure a smooth and coordinated performance.This sheet serves as a guide, detailing all the preparatory commands and calls that a director will use throughout the entire program to ensure a smooth and well-organized performance.The sheet you are referring to is commonly known as a show script or a running order. It is a document that outlines the order of events and all of the technical and performance cues for a particular production or program.A show script typically includes all of the preparatory commands and calls that the director will say for the entire program, including cues for lighting, sound, video, and other technical elements, as well as cues for performers such as entrances, exits, and dialogue.The running order will usually start with a list of all the items that will be presented in the program, along with the estimated duration for each item. This will be followed by a detailed breakdown of each item, with all of the technical and performance cues listed in the order that they will occur.The show script is an important document for the entire production team, as it helps to ensure that everyone is on the same page and knows what is expected of them during the performance. By following the show script, the director can help to ensure that the program runs smoothly and that all of the technical and performance elements are coordinated effectively.

To learn more about especially click on the link below:

brainly.com/question/18054827

#SPJ11

The sheet you are referring to is called a "script" in the context of a director calling a program. The director uses these preparatory commands to guide and organize the sequence of events throughout the program, ensuring a smooth and well-coordinated performance.

A director's script typically includes all the preparatory commands and calls that the director will make throughout the program, as well as cues for lighting, sound, and other technical elements. The script serves as a guide for the director and the technical crew to ensure that the performance runs smoothly and according to plan.

The script may be created during the rehearsal process and refined over time as the production comes together. It is an essential tool for ensuring that everyone involved in the production is on the same page and knows what to expect during the performance.

To know more about preparatory commands visit:

https://brainly.com/question/16423117

#SPJ11

onsider an even length array S of numbers from 1 to M. We will call this array good if it can be split into any number of contiguous subsequences of even length, each one being a palindrome. Given N and M. count the number of good arrays of length N with numbers from 1 to M modulo 998244353

Answers

The question is asking for the count of arrays that satisfy the given conditions. Let's begin by understanding the problem statement and coming up with a solution accordingly. A contiguous subsequence is a part of an array that contains consecutive elements. We are given an even length array S with numbers from 1 to M.

The array is called good if it can be split into any number of contiguous subsequences of even length, each one being a palindrome. We need to count the number of good arrays of length N with numbers from 1 to M modulo 998244353. To count the number of good arrays, we can use dynamic programming. Otherwise, we can either add it to the left or right side of the subsequence. We can combine the answers obtained from both the cases to obtain dp[i][mask]. The final answer is the sum of dp[N][mask] over all possible masks.

The time complexity of this solution is O(NM3N), which is too large to pass for the given constraints. We need to come up with a better solution. The main observation is that if we know the middle row of the subsequence, we can uniquely determine the entire subsequence. Therefore, we can define dp[i][j] to be the number of good arrays of length i, where j represents the middle element of the subsequence of length i. To calculate the value of dp[i][j], we can iterate over the elements that can be added to the subsequence.

To know more about arrays visit:

https://brainly.com/question/30726504

#SPJ11

.Which technique is used in the command'ls -1 AMD AT ZAKARIA19907 AMATTAT ZAKARIA19907 A Pipe B Input redirection C Batch D Output redirection

Answers

The command `ls -1 AMD AT ZAKARIA19907 AMATTAT ZAKARIA19907` lists the contents of the current directory in a single column format. The technique used in this command is Output Redirection. Option d is correct.

The output redirection operator `>` is used to redirect the standard output of the `ls` command to a file or another command. In this case, the output of the `ls` command is being redirected to the terminal screen, which displays the list of files in the current directory.

The `-1` option specifies that the output should be formatted in a single column, with one file name per line. This enhances readability when the directory contains a large number of files.

Therefore, the technique used in the command `ls -1 AMD AT ZAKARIA19907 AMATTAT ZAKARIA19907` is Output Redirection.

Thus, d is correct.

Learn more about command https://brainly.com/question/32329589

#SPJ11

Clem has entered the following formula into his spreadsheet: =vlookup(a5,a7:g20,3,true). What advanced feature is he using?.

Answers

He is utilizing the advanced capability of the lookup table.

Why do people use spreadsheets?

Using spreadsheet software, data that has been organized into rows and columns may be stored, viewed, and modified. The spreadsheet is one of the most utilized pieces of software for personal computers. Normally, spreadsheets are used to keep track of numerical data and short text strings.

What characteristics are sophisticated?

It is true that more complex functions help you comprehend how things work and how quickly things change. For instance, you will study exponential and logarithmic functions in the Advanced Functions course for grade 12.

To know more about spreadsheet visit:-

https://brainly.com/question/8284022

#SPJ1

Answer: A: Lookup Table

Explanation:

What is a requirement of the sentinel-controlled loop shared by counter-controlled loops?
a) A counter must be initialized on the outside of the loop.
b) The expression must evaluate to false in order for the loop to be executed.
c) A counter must be incremented inside the loop body.
d) The conditional expression must be set up prior to the loop.

Answers

The correct requirement of the sentinel-controlled loop shared by counter-controlled loops is that "the conditional expression must be set up prior to the loop." Option D is correct.

In a sentinel-controlled loop, the loop continues execution until a specific condition, known as the sentinel, becomes true. This is achieved by setting up the conditional expression before entering the loop. In counter-controlled loops, the loop executes a specific number of times based on the value of a counter variable.

However, in the case of a sentinel-controlled loop that shares similarities with a counter-controlled loop, the requirement is that the conditional expression defining the sentinel must be established prior to entering the loop, ensuring that the loop condition can be evaluated and checked for each iteration.

Option D holds true.

Learn more about sentinel: https://brainly.com/question/15711433

#SPJ11

Which slide should you change so that it reflects on all the slides?
Any change you can make to a slide in Normal view can be made to the slide master so the change will be reflected on all slides in the presentation.

Answers

A presentation's theme and slide layouts, including the background color, typefaces, effects, placeholder sizes, and positioning, are stored on the top slide, known as the "slide master."

To save the image you wish to add to your computer, click it with your right mouse button. After selecting the View tab, choose the Slide Master command. Any modification you make to a slide in the presentation's Normal view also affects the slide master, which updates all other slides.

The slide whose arrangement you want to change should be selected. Select Home > Layout. A preferred configuration should be chosen. The layouts can contain text, video, pictures, charts, shapes, clip art, backgrounds, and other elements.

To learn more about  Slide Master click here:

brainly.com/question/7868891

#SPJ4

Which type of keyword is "capital"?

an event

a title

an abbreviation

a vocabulary term

Answers

Answer:

a vocabulary term

Explanation:

Answer:(d) a vocabulary term

Explanation:

Examples of situations in which a sheetspread (Excel2010)can be used to assist business problems

Answers

1.Can we used to track expenditures and earning and as i can be used to calculate,found out gross profits

2.Can be used to track employees cashier codes, contact details and payment details

3. Can we used to create invoices for customers and figure out the VAT rates.

What is a Hard Drive

Answers

Answer:

A hard drive is the built-in storage in computers. They have a high-capacity.

Let me know if you have any other questions regarding this topic.

PLS ANSWER ASAP!!!!

In three to five sentences, explain the function of utilities.

Answers

Answer:

In economics, utility function is an important concept that measures preferences over a set of goods and services. Utility represents the satisfaction that consumers receive for choosing and consuming a product or service.  Utility function is widely used in the rational choice theory to analyze human behavior.

Explanation:

A_______VPN connection is a private network that uses a public
network to operate.

A)Point-to-Point
B)Point-to-Tunnel
C)Point-to-Site
D)Site-to-Site

Answers

Answer:

letter c. point to site po sagot diyan

What is the windows defender used for in windows 10

Answers

Answer:

Windows Defender is a built-in antivirus and anti-malware software in Windows 10 that helps protect your computer from viruses, malware, and other malicious software. It constantly scans your computer for any threats and provides real-time protection by blocking any suspicious activity. It also includes features such as firewall and network protection.

Explanation:

Brainliest Plssss

1.)Name at least five things that are easier to do with fast internet access.

2.)If you had online homework, but did not have a computer, how would you go about completing this homework?

3.)If you needed a job and wanted to find places that were hiring, how could you do that without fast internet access?

4.)What do you think could be done to close the digital divide gap?

Can anyone help me please hurry

Answers

Answer:

#1)  use streaming applications

Use on-demand applications

work from home

take an online course for personal or career-growth

Everyone in your family can be online at the same time

#2) Go to the library and use one of theirs or go to a friends house that does have access

#3) Either look in the classified ads of the newspaper or go to someplace that has fast internet like mcdonalds

#4) Make internet more affordable with better availability

Explanation:

The things that are easier to do with fast internet access include:

Using on-demand applications.Downloading movies.Streaming videos and songs.Watching a video online.Browsing on a computer system.

If I have online homework, but there's no computer, in order to complete this homework, I'll go to the library or cafe.

If I needed a job and wanted to find places that were hiring, since there's no fast internet access, I'll look for advertisements in newspapers or magazines. I can also go to areas that have free and fast connections.

In order to close the digital divide gap, people should be taught about the importance of computer systems and the internet should be more affordable to people.

Read related link on:

https://brainly.com/question/9914557

what was your first pokemon game


if you have not played one just comment don't answer

Answers

Answer:

FireRed & LeafGreen

Explanation:

so if it's mobile games then Pokémon go
but if it's Nintendo games then probably sword and shield cos you can catch pretty much every Pokémon.

How to connect two routers wirelessly to extend range.

Answers

You can easily extend your wifi network with additional networking hardware like wifi repeaterw and wireless acces points

Please give answers between 500 words.
What have been the major issues and benefits in
Electronic Data Interchanges (EDI) and Web-Based/Internet
Tools?

Answers

The major issues and benefits of electronic data interchange (EDI) and web-based/Internet tools, such as compatibility and standardization, privacy, cost, dependence on internet connectivity, etc.,

One of the challenges of EDI is that it is ensuring compatibility between different systems and  also establishing standardized formats for data exchange. It requires agreement and coordination among trading partners in order to ensure the seamless communication, while there are many benefits that include EDI and web-based tools that enable faster and more efficient exchange of information, eliminating manual processes, paperwork, and potential errors. Real-time data exchange improves operational efficiency and enables faster decision-making. Apart from this, there are many other benefits to these.

Learn more about EDI here

https://brainly.com/question/29755779

#SPJ4

Jill is interested in a career as a paramedic. She is trained to use medical equipment, she remains calm under pressure, and she has good bedside manner. Which career pathway would best fit Jill's interests and skills?

Answers

Answer:

Emergency and Fire management services

Explanation:

Paramedics are trained to respond to emergency situations faced by the public. These could include, fire incidents, accidents, or other emergency situations. Paramedics are trained to be calm under pressure, to use medical equipment, as well as to have good bedside manners as their jobs might require taking care of victims of various incidents at the spot of crisis, or in ambulances before they arrive the hospitals.

So, Jill is likely interested in a career in Emergency and Fire Management Services because she would require these skills to succeed in this field.

Answer:

Emergency and Fire management services

Explanation:

Which of these is a type of array .
( library , file , index , tulle )?

Answers

Answer:

index

Explanation:

i want to learn i am not sure

what is the name of the type that denotes whole numbers? group of answer choices whole int double integer

Answers

Defaulting to a 32-bit signed two's complement integer, the int data type has a range of values between -231 and 231-1.

What does the kind that represents whole numbers go by?

An integer, pronounced "IN-tuh-jer," is a whole number that can be positive, negative, or zero and is not a fraction. Integer examples include -5, 1, 5, 8, 97, and 3,043.

A double data type: what is it?

Double: A double-precision 64-bit IEEE 754 floating point is the double data type. The Java Language Specification's Floating-Point Types, Formats, and Values section contain information about its range of values, which is outside the purview of this discussion. This data type is typically the default option for decimal values.

to know more about whole numbers here:

brainly.com/question/29766862

#SPJ4

What does the value 0.5 specify in the following code?rgba(123,12,11,0.5)

Answers

The last number in the code?

Urgent Please Help ASAP!! 50 Points!! Assignment due in 15 minutes!!

Reflect on the questions below.

1.) Why do some people resist help from others?
2.) Is it useful to work separately at some point in time during pair programming?
3.) How is pair programming beneficial?
4.) In pair programming, how can we better work together?

Answers

Questions:

1.) Why do some people resist help from others?

2.) Is it useful to work separately at some point in time during pair programming?

3.) How is pair programming beneficial

4.) In pair programming, how can we better work together?

Answers:

1.) Some people are prideful in their work, or they're just embarrassed to ask for assistance.

2.) It can be done, but pair programming is further effective with others.

3.) Pair programming is beneficial because you can get the job done faster.

4.) In pair programming, you can better work with your partner by working on different sections, and then checking each other's tail when the job is almost finished.

These answers are a combination of my knowledge and opinion(s). If you need any more help, do not hesitate to let me know. Glad I could help! :)

1) Lux Corporation has issued 2,500 shares of common stock and 500 shares of preferred stock for a lump sum of $95,000 cash.Instructions (a) Give the entry for the issuance assuming the par value of the common stock was $8 and the fair value $28, and the par value of the preferred stock was $35 and the fair value $65. (Each valuation is on a per share basis and there are ready markets for each stock.) (b) Give the entry for the issuance assuming the same facts as (a) above except the preferred stock has no ready market and the common stock has a fair value of $30 per share.

Answers

The journal entry for Lux Corporation's issuance of 2,500 shares of common stock and 500 shares of preferred stock, assuming common stock par value of $8 and fair value of $28, and preferred stock par value of $35 and fair value of $65, would be:

Common Stock: $70,000

Paid-in Capital in Excess of Par: $62,500

Preferred Stock: $30,000

In the first step, we determine the total par value of the common stock and the preferred stock by multiplying the number of shares issued by their respective par values. For the common stock, it would be 2,500 shares x $8 = $20,000, and for the preferred stock, it would be 500 shares x $35 = $17,500.

In the second step, we calculate the amount of paid-in capital in excess of par for each stock. This is done by subtracting the par value from the fair value of each stock. For the common stock, it would be $28 - $8 = $20 per share, and since 2,500 shares were issued, the total amount would be $20 x 2,500 = $50,000. For the preferred stock, it would be $65 - $35 = $30 per share, and since 500 shares were issued, the total amount would be $30 x 500 = $15,000.

Finally, we record the journal entry by debiting the appropriate accounts and crediting the corresponding accounts. The common stock and preferred stock accounts are debited for their respective par values, while the paid-in capital in excess of par accounts are credited for the difference between the fair value and par value of each stock.

Learn more about common stock

brainly.com/question/11453024

#SPJ11

For any element in keysList with a value greater than 100, print the corresponding value in itemsList, followed by a space. Ex: If keysList = {42, 105, 101, 100} and itemsList = {10, 20, 30, 40}, print:
20 30 Since keysList[1] and keysList[2] have values greater than 100, the value of itemsList[1] and itemsList[2] are printed.
#include
using namespace std;
int main() {
const int SIZE_LIST = 4;
int keysList[SIZE_LIST];
int itemsList[SIZE_LIST];
int i = 0;
keysList[0] = 42;
keysList[1] = 105;
keysList[2] = 101;
keysList[3] = 100;
itemsList[0] = 10;
itemsList[1] = 20;
itemsList[2] = 30;
itemsList[3] = 40;
STUDENT SOULTION
cout << endl;
return 0;
}

Answers

To print the corresponding value in itemsList for any element in keysList with a value greater than 100, you can use a for loop to iterate through the arrays and an if statement to check the condition. Here's the modified code:

```cpp
#include
using namespace std;

int main() {
   const int SIZE_LIST = 4;
   int keysList[SIZE_LIST];
   int itemsList[SIZE_LIST];
   int i = 0;

   keysList[0] = 42;
   keysList[1] = 105;
   keysList[2] = 101;
   keysList[3] = 100;

   itemsList[0] = 10;
   itemsList[1] = 20;
   itemsList[2] = 30;
   itemsList[3] = 40;

   // Iterate through keysList
   for (i = 0; i < SIZE_LIST; i++) {
       // Check if the value in keysList is greater than 100
       if (keysList[i] > 100) {
           // Print the corresponding value in itemsList
           cout << itemsList[i] << " ";
       }
   }

   cout << endl;
   return 0;
}
```

This code will output: 20 30

Learn more about Arrays:https://brainly.com/question/28565733

#SPJ11

Which of the following best describes today’s average gamer?

The average age is eighteen, and many more males play than females.
The average age is thirty, and only slightly more males play than females.
The average age is thirty, and many more males play than females.
The average age is eighteen, and only slightly more males play than females.

Answers

The correct answer is A

During a vulnerability scan, you notice that the hostname www.diontraining.com is resolving to www.diontraining.com.akamized.net instead. Based on this information, which of the following do you suspect is true?
A.The server assumes you are conducting a DDoS
B. You are scanning a CDN-hosted copy of the site
C.Nothing can be determined about this site with the information provided
D.The scan will not produce any useful information

Answers

During a vulnerability scan, when the hostname www.diontraining.com resolves to www.diontraining.com.akamized.net, it is suspected that the site is scanned via:  B. You are scanning a CDN-hosted copy of the site.

A content delivery network (CDN) is a network of servers that are distributed across the globe. These servers serve web pages and other types of content to end-users based on their geographic location, origin of the webpage and the content delivery server. CDN helps to reduce the latency and improve the speed of page load. This also helps the company to serve their content across the globe with ease.Akamai is a well-known CDN service provider, and www.diontraining.com might be using Akamai's CDN services. When a vulnerability scan is done on the domain name, the scan may produce misleading information as the scan will be conducted on the CDN-hosted copy of the site.

Learn more about CDN:https://brainly.com/question/25899399

#SPJ11

Other Questions
Change the verb poder into its appropriate form: A salesperson at a jewelry store earns 5% commission each week. Last week, Heidi sold $750 worth of jewelry. How much did she make in commission? How much did the jewelry store make from her sales? What evidence can you give that our galaxy has a galactic corona? Which of the following sentences is written correctly Look at the third stanza:O, to take what we love inside,to carry within us an orchard, to eatnot only the skin, but the shade,not only the sugar, but the days, to holdthe fruit in our hands, adore it, then bite intothe round jubilance of peach.What type of figurative language is "to carry within us an orchard, to eat"metaphorallusionhyperbolesimile Which to ordered pairs represent a proportional relationship? the energy in crude oil derives from what original source? question 8 options: a) sunlight b) soil c) fossils d) rocks e) gravity Solve for x in the diagramPlease solve now I need it this second Purification of protein by dialysis (Procedure, materials, and/or reagents use). If there's a reference please include it. The range for the eight numbers shown is 40. Find the two possible values of the missing number. 42 13 19 5 ? 11 27 33 Step by step please, need help. Good luck and thank you for your help Which of the following figures made the decision to use force to try to keep the United States together?Group of answer choicesAbraham LincolnUlysses S. GrantFrederick DouglassGeorge Washington ____is stated in the maximumnumber of measurement units the readingcould differ from the actual length. What is a 3/4 time signature? Suppose you have an opaque bag filled with 6 red, 4 green, 7 blue and 5 purple balls.6. What is the probability of randomly pulling a blue ball from the bag, returning it, and pulling a red ball on your second pull?7. What is the probability of randomly pulling a purple ball from the bag, returning it, and pulling a blue ball on your second pull? "Why would you want to take an Advanced Placement course?" Brooklyn's cousin asks her. "They're way harder, so your grade point average willprobably go down." Which of these is the BEST answer for Brooklyn to give?A. It's worth it because I can start earning college credit while I'm still in high school.B. People say AP courses are harder, but they're at the same level as other high school classes.OC. Taking tests makes me nervous, and AP courses don't require students to take tests.OD. If I pass enough AP courses, I won't need to go to a college or university. Read the problem in the box below. See if you can figure out the most logicalanswer.Dancing Pools sells swimming pools in 4 sizes. The small pool is72 feet long and 18 feet wide. The medium pool is 80 feet long and20 feet wide. The large pool is 88 by 22. If the new superduperCoffeetable pool is 96 feet long, how wide will it be? On the lacrosse field, the circular region around the net, called the crease, is an area that only the goalie is allowed to be in. The crease is 18 feet in diameter. If the goalie is centered in the crease located at (30, 15) on the coordinate plane, what is the equation of the crease? help me please pleass please i beg sadie and max work in a day care. they both work in the infant room with three babies. the babies have begun to explore the environment by actively taking independent actions. what stage are they entering?