The answer is Insert Tab. This is the button to add a picture to a spreadsheet. <span>Click </span>Insert to add something to a spreadsheet. This includes pictures, shapes, charts, links, text boxes, video and more. <span>The </span>Insert Tab<span> is used to </span>insert<span> different features such as tables, pictures, clip art, shapes, charts, page numbers, word art, headers, and footers into a document. </span>
Answer:
“Think of it this way: When we’re done, your connection will be faster than it ever was before.”
Correct label:
positive reappraisal
“Okay, let’s put the connection speed issue aside for later and work on changing your password for our company website.”
Correct label:
distraction
“At least your router isn’t talking back at you! I can’t get my digital assistant to shut up.”
Correct label:
humor
Explanation:
Using the computer language in python to write a function code that personalized house signs
<h3>Writting the code in python:</h3>
<em>#Assign varibles</em>
<em>charge = 0.00</em>
<em>numChars = 8</em>
<em>color = "gold"</em>
<em>woodType = "oak"</em>
<em />
<em>#Checking for number of characters</em>
<em>if numChars > 5:</em>
<em>charge = 35 + (numChars-5)*4</em>
<em>elif numChars > 0:</em>
<em>charge = 35</em>
<em />
<em>#Checking wood type</em>
<em>if woodType == "oak":</em>
<em>charge += 20</em>
<em />
<em>#Checking for color</em>
<em>if color == "gold":</em>
<em>charge += 15</em>
<em />
<em>#Print output</em>
<em>print("The charge for this sign is $"+str(charge)+".")</em>
See more about python at brainly.com/question/13437928
#SPJ1
Answer:
#include <iostream>
using namespace std;
int main() {
int *ip_arr,n;//pointer name inp_arr and integer n to store the size.
cin>>n;//size.
for(int i=0;i<n;i++)
ip_arr[i]=-1;//assigning -1 to every element.
for(int i=0;i<n;i++)
{
cout<<ip_arr[i]<<" ";//printing every element.
}
return 0;
}
output:-
100
-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
Explanation:
I am taking input of size.You should enter 100 for 100 values which have value -1.