Incomplete question. I could only infer you are possibly referring to edhesive unit 8 questions. Here are a few sample questions;
1. Where does Python start?
2. To create the body of a function, we ____________ the code.
Answer:
1. Main Section
2. Indent
Explanation:
1. It is a common rule in Python programming language when coding for for it to begin at the first part of the Main Section.
2. Indenting a code involves creating space or jumping a line away from the margin of the text dialogue box, thus the code written there becomes the body of the function.
Pick one of the cells you<span> want to format and then click the down arrow beside the </span>Borders<span> button in the Font </span>group<span> on the Home tab. A drop-down menu comes up with all the</span>border<span> options that </span>you can<span> apply to the </span>cell<span> selection</span>
Answer:PING
Explanation:The ping command is a command that can be used on the command line interface of your computer to verify that a computer can communicate over the network with another computer. it works by inputing ping command with host name address( IP address)and proceeding with enter button to get output.
Answer:
Python code is explained below
Explanation:
# decorator.py starts
def uppercase(fcn):
def wrapper():
original = fcn;
modified = str(fcn).upper() ;
return modified;
return wrapper();
# decorator.py ends
# greet.py starts
import decorator #to generate the decorator
def greetings(): #invokes the greetings function for output
print("Hello");
print(decorator.uppercase(greetings));
# greet.py ends
Answer:
The HR HEAD
XYZ COMPANY
Baltimore
United States
Dated: December 19th, 2019
Subject: To apply for an internship in your esteemed XYZ Software development company
Respected Sir,
I am in the final year of my engineering, and my specialization is Information technology.
Being an IT student, I am quite good at organizing as well as filing the office materials. I have expertise by now in project management as well, and I can prepare any form of software project documents, project schedules, or any form of software project management reports. I am proficient in communication as well and write as well as send any type of email. I can perform any kind of communications task. I can participate as well as take note of any kind of team meetings as well as observe and capture details of the interaction with any sort of client with the same intent. I am at first an IT Expert and hence can enter any length of data into any software on computer systems. Also, I can work quite effectively on any operating system, and on both Mac OS and Windows PC. I also have the required know-how of computer hardware just in case it is required. I have a very deep interest in technology, and can quite effectively use the word processing programs, and do an extensive research on any topic or any sort of search and findings on internet.
Kindly please grant me an opportunity to work as an intern in your esteemed company.
Yours amicably,
XYZ
ABC University
DEF State
United States
Explanation:
The Answer is self explanatory.