Which of the following is not true about embedded fonts?
A) You can embed only the characters used in the presentation.
B) You can embed all the characters in the font.
C) It will affect the size of the file.
D) They are embedded automatically unless you turn that feature off.
D
You might also like to view...
Assume the file Alphabet.txt contains 26 records, the lowercase letters of the alphabet in ascending order. What is stored in Target.txt after the following code is executed?
``` Dim letter As String Dim sr As IO.StreamReader = IO.File.OpenText("lphabet.txt" Do While Not sr.EndOfStream Dim sw As IO.StreamWriter = IO.File.CreateText("arget.txt" letter = sr.ReadLine sw.WriteLine(letter) sw.Close() Loop sr.Close() ``` (A) The alphabet in descending order. (B) The alphabet in ascending order. (C) a (D) z
What is the name of Microsoft's cloud server?
A. OneDrive B. Box C. Fileshare D. Cloudpoint