What are the differences between a standard view and a datasheet view of a list?

What will be an ideal response?

The standard view displays the contents of lists and libraries, and it is the default view for many types of sites. In order to edit items on the standard view, you must click the More Options icon and navigate through the menus to edit. The datasheet view displays the contents of lists and libraries in a grid-like layout, and it enables you to edit the contents of the table without using the More Options icon and menus.

Computer Science & Information Technology

You might also like to view...

In the accompanying figure, the feature indicated by item 2 enables you to ____.

A. search through records B. display the tables in the database that hold records that contain data C. organize and display data in an effective way D. define a way of displaying the data in each record

Computer Science & Information Technology

What will be the coordinates of the center of the oval?

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 super.paint(g); 12 g.setColor(Color.YELLOW); 13 g.fillOval(100, 100, 50, 50); 14 g.setColor(Color.BLACK); 15 g.setFont(new Font("SansSerif", Font.BOLD, 35)); 16 g.drawString("SLOW", 110, 110); 17 } 18 } A) (100, 100) B) (50, 50) C) (100, 50) D) (125, 125)

Computer Science & Information Technology