Describe graphics programs, including desktop publishing programs, image editors, and illustration programs. Indicate the use of each type of program.
What will be an ideal response?
Answers will vary.
You might also like to view...
What is the value of x after execution of the following code segment?
int x = 2; int c = 0; while (c < 3) { x = x * 2; c = c + 1; } x = x + 1; a) 9 b) 17 c) 23 d) 33
What is the result of the following code?
``` 1 String file1 = "oldFile.txt"; 2 String file2 = "newFile.txt"; 3 String line; 4 5 PrintWriter output; 6 BufferedReader input; 7 8 try 9 { 10 File oldFile = new File( file1 ); 11 File newFile = new File( file2 ); 12 13 FileWriter outputFile = new FileWriter( file2, false ); 14 output = new PrintWriter( outputFile ); 15 16 FileReader inputFile = new FileReader( file1 ); 17 input = new BufferedReader( inputFile ); 18 19 line = input.readLine(); 20 21 while ( line != null ) 22 { 23 output.println( line ); 24 line = input.readLine(); 25 } 26 27 } 28 catch( IOException exception ) 29 { 30 JOptionPane.showMessageDialog( this, "IOException occurred." ); 31 } 32 finally 33 { 34 try 35 { 36 output.close(); 37 input.close(); 38 } 39 catch( IOExcetpion exception ) 40 { 41 JOptionPane.showMessageDialog( this, "IOException occurred." ); 42 } 43 } ```
Which of the following statements is TRUE about how Access and Excel share data?
A) Access can import data from Excel, but cannot export data to Excel. B) Access can export data to Excel, but cannot import data from Excel. C) Access can import data from Excel, and export data to Excel. D) Access cannot import data from Excel and cannot export data to Excel.
A PowerPoint presentation is made up of one or more ________ that can contain text, pictures, tables, charts, and other objects
A) themes B) styles C) views D) slides