An _______ is used to process a collection of data all of which is the same type
Fill in the blank(s) with the appropriate word(s).
array
You might also like to view...
What will be the coordinates of the third point of the polygon?
Look at the following applet code. 1 import javax.swing.*; 2 import java.awt.*; 3 public class GraphicsTest extends JApplet 4 { 5 public void init() 6 { 7 getContentPane().setBackground(Color.WHITE); 8 } 9 public void paint(Graphics g) 10 { 11 int[] xCoords = {20, 20, 60, 100, 140, 140, 100, 60}; 12 int[] ycoords = {20, 100, 140, 140, 100, 60, 20, 20}; 13 super.paint(g); 14 g.setColor(Color.YELLOW); 15 g.fillPolygon(xCoords, yCoords, 8); 16 g.setColor(color.BLACK); 17 g.setFont(new Font("SansSerif", Font.BOLD, 35)); 18 g.drawString("SLOW", 35, 95); 19 } 20 } A) (60, 140) B) (140, 60) C) (100, 140) D) (140, 100)
A popular database programming language used to extract data from an underlying database is ________
A) MQL (modern query language) B) RQL (restricted query language) C) SQL (structured query language) D) TQL (top-down query language)
Under Quick Parts, where should you look if the field you are looking for is not listed under Document Property?
A) Drop Cap B) Building Blocks Organizer C) Quick Part Gallery D) Field
COGNITIVE ASSESSMENT In a spreadsheet program, how is data organized?
A. in a notebook containing thousands of pages B. in columns and cells collectively called a notebook C. in rows and columns collectively called a worksheet D. in rows and columns collectively called a spreadsheet