Answer:
1. Write to the Reader
2. Structure your report
3. Back up your report with data
4. Separate facts with opinions
Explanation:
1. Remember that you’re not writing the report for yourself. You’re probably writing for clients or management, so you need to know how familiar they are with the concepts and terminologies that your team uses. If they’re not well-acquainted with it, you may have to spend the first part of your report defining them so readers can follow along. Or, you might want to dumb it down a bit to layman’s terms and cut back on acronyms and jargon. A good way to practice this is to do the same with meeting notes.
2. One thing all reports should have in common is a form of structure. Ideally, you want to organize information into different segments so that your reader can identify relevant sections and quickly refer back to them later on. Common sections include a background or abstract to explain the project’s purpose, and a final summary of the document’s contents.
3. A good project report is going to have lots of data backing it up, whether it is defending the team’s performance or breaking down a successful project. Accurate charts, spreadsheets, and statistics are a must if the report is to have any degree of credibility when presented to clients. Many project management tools provide flexible project reporting features to help PM’s compile and present data in meaningful ways.
4. You should never confuse the two when writing a project report, especially if you are doing a post-mortem on a failed project. Opinions are subjective and should never be presented as absolutes. The report should be scrubbed of any personal views or preferences unless absolutely necessary. And if your opinion is required, be sure to clearly identify it as such. You may want to put it in an entirely different section, if possible.
Hope this helped
Kinda, really good at this stuff.
Answer:
Following are the code to this question:
l= []#defining an empty list
n=int(input("Enter total element you want to insert: "))#defining variable to input total element
for i in range(0,n):# defining loop to input value in list
insert=int(input())#defining variable insert to input value
l.append(insert) # adding the elemenents into the list
x=n//2#calculating midpoint
l1 =l[:x]#using slicing to hold first-half value in l1 list
l2 =l[x:]#using slicing to hold second-half value in l2 list
print("Before interchange: ")#print message
print ("list : ",l)#print input list
l3=l2 + l1#add value in l3
print("After interchange: ")#print message
#print(l3) #print list l3
print (str(l3)[1:-1])#print list l3
Output:
please find the attachment.
Explanation:
Description of the code:
- In the above python program, an empty list l is declared, in the next line, variable n is defined, that input the total number of the list elements. In the next line, the for loop is declared, which uses the insert variable input value and used the append method to add value in the list.
- In the next step, the variable x is declared, which finds the midpoint of the list, and defines the l1 and l2 lists, that use slicing to hold the first and second half values.
- In the last step, the l3 list is declared, that adds the l1 and l2 lists and use the print method to print its values.
Answer:
See explaination
Explanation:
def readFileFirstLast(filename):
# doc string
''' Function accept the filename and opens the fle
and reads all lines and strips new line character and
stores first and last in a string and return that string'''
#eception handle if file not found
try:
#opening the file
f = open(filename)
#reading the first line and striping the ne line
string = f.readline().strip()
#iterating until last line
for line in f:
pass
#concate the last line after strip the new line character to the string
string = string + " " + line.strip()
#return the string
return string
except:
#if file not found
return "File not found"
#taking the file name from user
filename = input("Enter a file name: ")
#printing the doc string in function
print("\ndoc_sting: \n"+ readFileFirstLast.__doc__+"\n")
#printing the returned string by calling the readFileFirstLast()
print("output string :")
print(readFileFirstLast(filename))
Answer: Regularly purge all network printers' hard drive caches.
Explanation:
Explanation:
A map is the correct answer hope that helps you.