Answer: a CPU is a central processing unit. They’re responsible for creating and executing instructionsl
Explanation:
Jiskha help me with something similar with
Answer:
The correct answer for the given question is option(3) i. src.
Explanation:
In HTML if we insert a image on the screen we use<img> tag
the img have following attribute
1.src
2.height.
3 alt
4 width
The required attribute in img tag is src i.e source or path of image
The following are the syntax of image tag
<img src=" path of image" alt="not visible" height="100px" width="100px"/>
The height and width attribute describe the height and width of image in pixel.
The alt attribute is not mendatory attribute in image tag.The alt attribute display the message when image is not visible in the web page .
All the other attribute like alt,height,width are used as per the requirement but src is an required attribute .
so the option(3) is correct.
Sorry but your notation is ambiguous
Is it U(n+1) = (3U(n) + 1)/(5U(n) + 3)
or U(n+1) = (3U(n) + 1)/(5U(n)) + 3
or U(n+1) = 3U(n) + (1/5U(n)) + 3
or U(n+1) = 3U(n) + (1/5)U(n) + 3?
<span>If so, what do you wish us to do with this sequence?
I hope my answer has come to your help. Thank you for posting your question here in Brainly. We hope to answer more of your questions and inquiries soon. Have a nice day ahead!
</span>
Answer:
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
double caffeineMg;
cin>>caffeineMg;
cout<<"After 6 hours: "<<fixed<<setprecision(2)<<caffeineMg/2.0<<" mg\n";
cout<<"After 12 hours: "<<fixed<<setprecision(2)<<caffeineMg/4.0<<" mg\n";
cout<<"After 24 hours: "<<fixed<<setprecision(2)<<caffeineMg/8.0<<" mg\n";
return 0;
}
Explanation:
- Declare a variable for caffeine and take the input from user.
- Print the results by dividing the caffeine by relevant Half Life.
- Use setprecision function to display the result up to 2 decimal places.