A. because the form is about stories from events in a writer's life
It Transmits electrical currents. You can use it as an amplifier or switch of currents.
Answer:
a. The content that displays in the browser is contained in the head section.
Answer:
D. by using different background colors for different sections
Explanation:
This can help people differentiate the different sections of your webpage.
Hope this helps!
Answer:
// here is code in C++.
#include <bits/stdc++.h>
using namespace std;
// main function
int main()
{
// variables
double num;
// read discriminant
cin>>num;
// calculate square of the input
double result=num*num;
// print the square number
cout<<result<<endl;
return 0;
}
Explanation:
Declare a variable "num".Read the value of "num" from keybord.Then calculate square of the input number.Print the square of input number.
Output:
5
25