Answer:
// here is code in C++(bmi.cpp).
#include <bits/stdc++.h>
using namespace std;
// main function
int main()
{
// variables
float weight,height;
cout<<"enter the weight(in kilograms):";
//read the weight
cin>>weight;
cout<<"enter the height(in meters):";
//read the height
cin>>height;
// calculate the bmi
float bmi=weight/(pow(height,2));
// print the body-mass index with two decimal places
cout<<"BMI is: "<<fixed<<setprecision(2)<<bmi<<endl;
return 0;
}
Explanation:
Read the weight from user and assign it to variable "weight",read height and assign it to variable "height".Then find the body-mass index as (weight/height^2).Here weight should be in kilograms and height should be in meters.
Output:
enter the weight(in kilograms):75
enter the height(in meters):1.8
BMI is: 23.15
Answer:
subnets=65536
Explanation:
As we know that,
-->interface ID portion of address starts from 64
--> we have 48 network prefix
so
available bits for subnet are = 64-48= 16
so with 16 bit address we can create subnet = 2^16 = 65535
Answer:
The correct answer will be "Semi-structured data".
Explanation:
- Semi-structured data comprise evidence that just isn't data collected in some kind of a traditional database management system, but then neither is content typed.
- It's indeed descriptive information or structured data, but that's not organized into a theoretical design, like a chart or perhaps a graph centered through an entity.
So that the given scenario is the example of semi-structured data.
The question has multiple choices;
<span>A) </span>Incremental budgeting.
B) Performance budgeting.
C) Program budgeting.
D) Target based budgeting.
I’d say D is the answer; Target based budgeting
Target based budgeting focuses on the achievement of goals
and competition. Prices in Target based budgeting are used as a tool to make or
break sales. This method includes researching the markets to decide at what
exact price a product will sell.
Answer:
Most injury crashes in Florida happen in dusk conditions
Explanation:
Dusk is the time of the day when the sun is setting. At this time of the day, the visibility on the roads is less. This time of the day, the number of cars on the roads is also significantly greater. This indirectly means that the possibility of most injury crashes in Florida in dusk conditions considerably increases.
The amount of tourism happening in the state is also a condition that takes part in injury crashes due to increased traffic on the roads.