Answer:
Following are the python code to print the given pattern:
print('FOURTH') # using print method
for i in range(10): #using loop to count numbers
for j in range(10-i): # use loop to print asterisk value in reverse order
print("*", end=" ") #print value
print("") #using print method for space
Output:
Please find the attachment.
Explanation:
The description of the above python program can be described as follows:
- In the first line, use the print method, that print message "FOURTH".
- In the next line, two for loop is used in which the first loop counts the number to be print value, inside the loop another for loop is used.
- In this loop, it prints asterisk values in its reverse order and for new lines, it will use the print method with a single white space.
Answer:
cursor
Explanation:
beacause it uz controlled by pointing device, such as a mouse, pen, or trackball
Answer:
Option (A) i.e., Remote Desktop is the correct answer to the following question.
Explanation:
The following option is correct because the remote desktop is an application or software which connects your computer to another system through the internet from anywhere and we can also connect with each other without the internet but in a range.
<u>Steps to connect in Windows 10</u>:
Step-1: Firstly, start your window and click on the start button.
Step-2: Then, type remote setting in search box.
Step-3: Then, you have to allow the remote access to the system.
Step-4: Then, you have select the Remote Tab which appears in System Properties.
Step-5: Then, you have to click and select the to Allow the Remote Connection.
Answer:
The skill that is not expected of employees' oral communication skills in the workplace is:
Be able to write well
Explanation:
The reason behind this answer is: we are analyzing oral communication skills. Writing is not in oral communication skills. Therefore it is not expected as an employee oral communication skill in the workplace. Also, Communicate clearly is expected in the workplace, use appropriate language is expected in the workplace as formality is desired, and finally communicating under the laws and regulations of the organization is also expected.
Answer:
i hope the program below will help you!
Explanation: