A file with the POTX file extension is a Microsoft PowerPoint Open XML Template file used to maintain the same layout, text, styles, and formatting across multiple PPTX files.
Answer:
DOC FILES OR MP3s
Explanation:
DOC FILES AND MP3s BEACUSE THEY HAVE BETTER STORGE TO HOLD THE IMPORTANT FILES AND WORK THAT U DO AND SAVE
Make the zig zag part more spaced out
Answer:
scanf("%d %lf %c", &age, &pay, §ion);
Explanation:
To read the value in c program, the instruction scanf is used.
To read the integer value, use the %d format specifier in the scanf and corresponding variable name age with ampersand operator.
To read the double value, use the %lf format specifier in the scanf and corresponding variable name pay with ampersand operator.
To read the character value, use the %c format specifier in the scanf and corresponding variable name section with ampersand operator.
Answer:
Data is accessed in a random-access manner, meaning the individual blocks of data can be stored and retrieved in any given order or time.
Explanation: