Answer:
#include<iostream>
using namespace std;
int main(){
int sum = 12+33;
cout<<"The sum is: "<<sum<<endl;
}
Explanation:
First include the library iostream in c++ program for input/output.
Then, create the main function and declare the variable sum as integer type and store the sum of two given values.
After that, display the result store in the sum variable on the screen by using the instruction cout.
Answer:
3
Explanation:
The function floor() is used to give the integer which is smaller than or equal to the provided decimal value.
for example:
let a=5.8
floor(a);
the function provides the value 5 (smaller than or equal to 5.8).
In the given code:
variable num assigns the number 3.14.
then, floor(3.14) gives the value 3 (smaller than or equal to 3.14).
then, the echo print the value on the screen.
Therefore, the correct answer is 3.
Answer is in a photo. I can only upload it to a file hosting service. link below!
bit.
ly/3a8Nt8n
Answer:
w = ["Algorithm", "Logic", "Filter", "Software", "Network", "Parameters", "Analyze", "Algorithm", "Functionality", "Viruses"]
for x in w:
print(x.upper())
Explanation:
upper() is a function that will turn array w into uppercase letters
Answer:
<h1>About Me Web Page</h1>
<center><h2>(name)</h2></center>
<h3>Three Of My Favorite Things Are:</h3>
<ol>
<li>(Favorite item)</li>
<li>(Favorite item)</li>
<li>(Favorite item</li>
</ol>
<p>(Paragraph about myself</p>