Answer:
Explanation:
1. select the rectangle 1 layer and then select the rectangle tool in the left tool bar
2. in the option bar along the top of the UI, select the path operations drop-down and choose subtract front shape.
3. click anywhere on the thin, white rectangle shape on the left side of the document
4. in the create rectangle dialog box, type 700 px for the height and 700 px for the width.
5. click the checkbox that says from center to ensdure the new shape is created from the center of the rectangle 6. click ok
Answer:
print("first is "+str(first)+" second = "+str(second))
Explanation:
The above written print statement is in python language.If first and second are strings then we need not to use str then we only have to write variable name.This statement prints the given in one line according to the question and it goes to new line after printing.
Answer:
The phrase that describes the best folders in outlook 2016 is:
An organizational container.
Explanation:
The reasons behind this answer are that in the first place the folder allows the user to group emails, contacts, tasks, or even a calendar. So, because this is not only for emails or files. It is an object that can group several types of things and create a new category. Instead of only applying for certain objects. Thus, it is an organizational container. Because the first the third, and the fourth option describe objects that can only group-specific objects instead of all of them. There is no flexibility in the rest of the answers.
A speaking library is one that offers tapes and C.D.'s to people with sight impairment who cannot read. They are able to enjoy books, poetry and news that is read to them rather than them reading it from a book which may be difficult or impossible. My late father in law was a member of such an organisation and they provided a catalogue of titles available. He had a special machine with touch and large print controls so that he could operate it himself. The database should be a list of titles available and a description as to content and length and possible have a Braille sheet for those who can read Braille.
Answer:
#include <iostream>
using namespace std;
int main()
{
cout << "N\t10*N\t100*N\t1000*N" << endl;
int x=1;
while(x<=5){
cout << x <<"\t"<< x*10 <<"\t"<<x*100 <<"\t"<< x*1000 << endl;
x++;
}
return 0;
}
Explanation:
Print the header, N 10*N 100*N 1000*N, using \t
Initialize the x as 1. It will be used to control the while loop
Create a while loop that iterates while x is smaller than or equal to 5
Inside the loop, print the required values. After printing, increment the value of x by 1