C a finance company ........
I believe the answer is Backstage view
Back stage view gave you the complete command as options for users to manage our files and data in the office such as saving, print, inspecting meta data, etc. To access backstage view, you just need to click the file tab on left top corner.
Radiation is when heat travels through space.
Answer:
Following are the code to this question:
def get_initials(the_name): #defining a method get_initials
name = the_name.split(" ") #defining name variable that splits value
val = ''#defining a string variable val
for n in name: #defining loop to convert value into upper case and store first character
val = val + n[0].upper() + "." # use val variable to hold value
return val # return val
print(get_initials("Gloria kind of a big deal Tropalogos"))#call method and print return value
print(get_initials("Homer J Simpson"))#call method and print return value
print(get_initials("John Q Public")) #call method and print return value
Output:
J.Q.P.
H.J.S.
G.K.O.A.B.D.T.
Explanation:
In the given code, the last is incorrect because if we pass the value that is "Gloria kind of a big deal Tropalogos" so, will not give G.O.O.D. instead of that it will return G.K.O.A.B.D.T. So, the program description can be given as follows:
- In the given python code, a method "get_initials" is declared, that accepts "the_name" variable as a parameter, inside the method "name" variable is declared, which uses the split method that splits all values.
- In the next step, a string variable "val" and for loop is used, in which the "val" variable converts the first character of the string into the upper case and stores its character with "." symbol in "val" variable and return its value.
- In the last step, the print method is used, that passes the string value and prints its sort value.
Answer:
The most significant issue addressed while ensuring the proper functionality of computer is the working of Operating System.
Explanation:
There are many issues faced while making the computer properly functional. Such as, Memory size, processor speed, software installation etc. while operating system not working properly can cause a significant problem. If operating system is not working properly, the user is unable to use the computer.
So, to make sure the functioning of computer, the significant issue that should be needed to address is Operating System Installation.