Answer:
Home Tab
Explanation:
The copy and paste menu are in the clipboard group.
The clipboard group is on the far left of the Home Tab. It is often used in conjunction with the Editing group, which is on the far right of that tab.
To open the Clipboard task pane, click Home, and then click the Clipboard dialog box launcher.
Answer:
Database: An integrated collection of logically related records or files. A database consolidates records previously stored in separate files into a common pool of data records that provides data for many applications. The data is managed by systems software called database management systems (DBMS). The data stored in a database is independent of the application programs using it and of the types of secondary storage devices on which it is stored.
Answer:
Find answers below
Explanation:
triangle_char = input('Enter a character: ')
triangle_height = int(input('Enter triangle height: '))
print('')
for j in range (triangle_height):
print((triangle_char) * (j + 1))
#below are sample output that can be gotten with predefined values
$ ./triangles.py
Enter characters: jk
Enter height: 8
j
jj
jjj
jjjj
jjjjj
jjjjjj
jjjjjjj
jjjjjjjj
k
kk
kkk
kkkk
kkkkk
kkkkkk
kkkkkkk
kkkkkkkk
Verifying, The answer above me is correct
Answer:
385
Explanation:
There was no question so I simply run the program for you and included the output.
The program seems to calculate: 