Answer:
Explanation:
Telephone lines
Answer:
#include<iostream>
using namespace std;
//create the function which add two number
void addTwoNumber(int num_1,int num_2)
{
int result = num_1 + num_2; //adding
cout<<"The output is:"<<result<<endl; //display on the screen
}
//main function
int main(){
//calling the function
addTwoNumber(3,6);
return 0;
}
Explanation:
First, include the library iostream for using the input/output instructions.
then, create the function which adds two numbers. Its return type is void, it means the function return nothing and the function takes two integer parameters.
then, use the addition operation '+' in the programming to add the numbers and store the result in the variable and display the result.
create the main function for testing the function.
call the function with two arguments 3 and 6.
then, the program copies the argument value into the define function parameters and then the program start executing the function.
2. Click the
tab.
3. In the
group, click
.
4. Specify whether to shift cells or insert an entire row or column, and click OK.
The completion of steps for inserting a range of cells in a worksheet as follows:
The advantage of inserting a range of cells in a worksheet is that it generally makes your workbook easier to read, constructing formulas faster to read, and authorizes you to create ranges with variable sizes to produce your dynamic spreadsheet which is easy to update as well.
According to the context of this question, if one should want to insert a range of cells in a spreadsheet, he/she must follow some steps in order to make it effective, convenient, and dynamic.
Therefore, the completed steps for inserting a range of cells in a worksheet are well described above.
To learn more about Spreadsheet, refer to the link:
#SPJ5
Answer:
Click the Home tab. In the Cells group, click Insert
Explanation:
I had it on a quiz.
Answer:
False.
Explanation:
A communicator is an individual who is obligated to clearly present information to an audience. There are two set of quality a communicator must have to win the trust of the audience, they are, the communicator must be prepared and ethical.
A prepared communicator must learn to organise his oral or written skills, must articulate very word and meaning of expression (clear) and a information must be brief and meaningful.
An ethical communicator must be impartial, trustworthy, respectful and must practice the golden rule. The information they give should help in making proper decisions to situations.
Answer:Encryption is the process
of translating plain text data into something that appears to be random and meaningless. A symmetric key is used during both the encryption and decryption process. To decrypt a particular piece of ciphertex, the key that was used to encrypt the data must be used.
Types of encryption
1.Symmetric encryption :This is also known as public key encryption. In symmetric encryption, there is only one key, and all communication patties use the same key for encryption and decryption.
2.Asymmetric encryption :This is foundational technology for SSL(TLS)
How encryption is being configured
Encryption uses algorithms to scramble your information. It is then transmitted to the receiving party, who is able to decode the message with a key.
Explanation:
the pivot point
the toolbar area
the view editor
the info header
7. You cannot use the manipulator widget to translate, define, rotate, or scale an object. (1 point)
true
false
Answer:
The formula in Excel is:
=($B$6 - $B$5 - $B$7)* $B$8
Explanation:
Required
Use of absolute reference
To reference a cell using absolute reference, we have to include that $ sign. i.e. cell B5 will be written as: $B$5; B6 as $B$6; B7 as $B$7; and B8 as $B$8;
Having explained that, the formula in cell B13 is:
=($B$6 - $B$5 - $B$7)* $B$8