Answer:
téléphone
Explanation:
thats how you say phone in French also you can go on Google translate or word reference to translate words.
Answer:
Word is a word processing program. PowerPoint is presentation software. MS Word is used for preparing documents which have higher quantum of text and tables. ... On the other hand, MS Powerpoint is used in cases where you want to give a presentation.
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.
<span>Monica needs to work on a document where she has to highlight topics in bold and add emphasis to some words in a paragraph using italics. These keys will allow her to highlight and italicize the words :
</span>Ctrl+B combination of keys will allow Monica to highlight text in bold. The Ctrl+I combination of keys will allow her to italicize text.
Ctrl+B+I combination of keys will allow her to make it bold and italicize at the same time.