Changes in computer technology have an effect on <span>everybody.</span>
The code segment that assigns value to the variable named timer is:
timer = 7.3
<h3>How to write the code</h3>
To assign a value to a variable, we make use of the following syntax:
variable = value
In this case;
The variable is timer and the value is 7.3
Hence, the required code segment is: timer = 7.3
Read more about code segments at:
brainly.com/question/18430675
Answer:
The answer is "Title page".
Explanation:
Don uses the title page to create it's designed because this page contains basic information like names, dates, titles, and the names of the author. On this heading tab, it does not have a paper summary, and wrong choices can be described as follows:
- The Blank Page is the wrong choice because it doesn't contain any layout.
- The Bibliography is also a wrong choice because it describes the source of the information.
- The Cover Page is also a wrong choice because it is also known as the main page it describes the name, the title of the document but it can't contain the date.
Answer:
Line 8 gives a compiller Error
Explanation:
In line 8, the statement: if (number >= 0 && <= 100) will give a compiller error because when using the logical and (&&) It is required to state the same variable at both sides of the operator. The correct statement would be
if (number >= 0 && number <= 100). The complete corrected code is given below and it will display the output "passed"
#include <iostream>
using namespace std;
int main()
{
int number = 5;
if (number >= 0 && number <= 100)
cout << "passed.\n";
else
cout << "failed.\n";
return 0;
}