First write what is software take one page for that
and each page for all other topics
The correct answer is A. Only technician B is correct because I don't believe carbon is form of resistors.
Answer:
206.25.
Explanation:
The equation to find out how much money you will make is prt, or principle • rate • time.
So you do 25 x 2.75% x 25, which is equal to 206.25.
The number of records or rows in a table using MySQL can be got by using the COUNT statement.
Explanation:
- To counts all of the rows in a table, whether they contain NULL values or not, use COUNT
- That form of the COUNT() function basically returns the number of rows in a result set returned by a SELECT statement
- The SQL COUNT() function returns the number of rows in a table satisfying the criteria specified in the WHERE clause.
- It sets the number of rows or non NULL column values.
- COUNT() returns 0 if there were no matching rows.
- The SQL COUNT function is an aggregate function that returns the number of rows returned by a query. You can use the COUNT function in the SELECT statement to get the number of employees, the number of employees in each department, the number of employees who hold a specific job, etc.
Answer:
The program written in C++ is as follows'
#include<iostream>
using namespace std;
int main()
{
string names[3];
cout<<"Please enter three names: "<<endl;
for (int i = 0; i< 3;i++)
{
cin>>names[i];
}
for (int i = 2; i>= 0;i--)
{
cout<<names[i]<<endl;
}
return 0;
}
Explanation:
This line declares an array for 3 elements
string names[3];
This line prompts user for three names
cout<<"Please enter three names: "<<endl;
This following iteration lets user input the three names
for (int i = 0; i< 3;i++) { cin>>names[i]; }
The following iteration prints the three names in reverse order
for (int i = 2; i>= 0;i--) { cout<<names[i]<<endl; }