Answer:
Following are the code to this question:
for (i = 0; i <3; ++i)//defining loop to print value
{
cout<<runTimes[i]<<endl;//print value
}
Explanation:
Full program code to this question:
#include<iostream>//defining header file
using namespace std;
int main() //defining main method
{
const int NUM_ELEMENTS = 5;//defining const integer variable
int runTimes[NUM_ELEMENTS]; //defining integer array
int i;//defining integer variable
for (i = 0; i < NUM_ELEMENTS; ++i)//defining loop to input value
{
cin >> runTimes[i];//input value
}
cout<<"print three elements value of array: "<<endl;
for (i = 0; i <3; ++i)//defining loop to print value
{
cout<<runTimes[i]<<endl;//print value
}
return 0;
}
Output:
Please find the attachment.
Description:
- In the above code, an integer const variable "NUM_ELEMENTS" is declared, that assign value "5" which is array size, in the next step, an array "runTimes" is declared.
- In the next step, for loop is used, that uses an integer variable "i", which is used to input all array elements.
- In the next line, another for loop is used, which uses "i" variable, which starts from 0 and ends when its value less than 3, inside the loop print method, used that prints 3 array elements.
Answer:
hi..,.................................................
The answer would be to multiply the binary code with all results from the formula Samuel used to encode the desired number, until he gets 59 as a result.
(P.s. 111011 isn't 59, it results in a semicolon if you convert it using an binary code translator. It rather states that 00110101 00111001 is 59)
Answer:
Authentication
Explanation:
The authentication process is used to check the identification of the particular user or computer system .we can give authentication to any user by the username and password. If a particular user puts the correct username and password into the website then it has the authority to access that particular website.
For example: In the any mail website, if a particular user login with the correct username and password then it has an authenticated user. It means it has the right to access the mail of that account .
Answer:
- The graph of the function is attached below.
- The x-intercepts will be: (2, 0), (-2, 0)
- The y-intercept will be: (-20, 0)
Explanation:
Given the function

As we know that the x-intercept(s) can be obtained by setting the value y=0
so

switching sides

Add 20 to both sides


Dividing both sides by 5





so the x-intercepts will be: (2, 0), (-2, 0)
we also know that the y-intercept(s) can obtained by setting the value x=0
so



so the y-intercept will be: (-20, 0)
From the attached figure, all the intercepts are labeled.