Answer:
click create new presentation -_- i use power poin all the time
Explanation:
im not dum
Graphic images can be stored in a variety of formats including JPEG and GIF. Hope this helped!
Answer:
Alt + F9
Explanation:
The Keyboard shortcut that Stephen can use use to toggle between data and the field codes is Alt + F9. This is in regards to Microsoft Word Fields for both Windows and Mac operating systems. Although ALT + F9 will toggle between these two but for all the fields within the document. If you want to toggle between a single or various fields it would be Shift + F9.
Answer:
The correct answer to the following question will be Option C (Volatile type of memory).
Explanation:
Random Access Memory, a variety of computer's memory which could be retrieved accidentally i.e., some memory can be obtained without any of the previous bytes being touched.
- Volatile memory is a type of a storage in computer that only retains its information or data while powering the appliance.
- Almost all of the RAM used in Pc's for the primary storage is unstable storage.
So, Option C is the right answer.
```
#!/usr/local/bin/python3
foo = float( input( "Enter a number: " ) )
if( foo < 0.0 ):
print( "negative" )
elif( foo > 0.0 ):
print( "positive" )
else
print( "zero" )
exit( 0 )
```