Answer
References tab.
Explanation
In MS word documents, you can add footnotes and endnotes by;
• Clicking the area to add a footnote
• Clicking references, then insert Footnote. The word program will insert a reference mark in the text and will add the footnote mark at the bottom of the page
• Type a footnote text.
Hope this Helps!
Hard Disk Drive
Solid State Drive
And Random Access Memory (RAM)
Answer:Pseudocode helps us understand tasks in a language-agnostic manner. Is it best practice or suggested approach to have pseudocode creation as part of the development lifecycle? For instance:
Identify and split the coding tasks
Write pseudocode
Get it approved [by PL or TL]
Start Coding based on Pseudocode
Explanation: use phrasing tool if you want to write in your own words.
Answer:
import sys, time
from os import walk, remove
from os.path import exists, join, getsize, getctime
file_counter = [ ]
folder_name, file_size = argv
isExist = exists( folder_name )
if folder_name == True:
for root, folder, files in walk( folder_name ):
for file in files:
if getsize( join ( root, file ) ) >= file_size:
file_log = [ ]
file_log.append( file )
file_log.append( join ( root, file) )
file_log.append( time.ctime( getctime( file ) ) )
file_counter.append( file_log )
else:
remove ( join ( root, file ) )
Explanation:
The python script above output the filename, size and file creation date of any folder passed to it.
Answer: 4. Availblitliy is not a major characteristic.
Explanation:
-Manufacturing organization can provide additional computing resources without going through the cloud service provider.
-Multi-tenancy allows multiple customers to share the same applications/the same physical infrastructure while retaining privacy and security over their information.
-Cloud computing resources usage is metered and organizations pay accordingly for what they have used.
-Elasticity is a landmark of cloud computing and it implies that organizations can rapidly provision and de-provision any of the cloud computing resources.