Files that you have checked out are marked with ____ check marks in the Files panel.

A. red
B. green
C. blue
D. yellow


Answer: B

Computer Science & Information Technology

You might also like to view...

Given the following code, find the compile error.

``` public class Test { public static void main(String[] args) { m(new GraduateStudent()); m(new Student()); m(new Person()); m(new Object()); } public static void m(Student x) { System.out.println(x.toString()); } } class GraduateStudent extends Student { } class Student extends Person { @Override public String toString() { return "Student"; } } class Person extends Object { @Override public String toString() { return "Person"; } }``` a. m(new GraduateStudent()) causes an error b. m(new Student()) causes an error c. m(new Person()) causes an error d. m(new Object()) causes an error

Computer Science & Information Technology

Print Preview can be used to see what a printed report will look like without actually printing it

Indicate whether the statement is true or false

Computer Science & Information Technology

All reviewer's revisions and comments display in the color blue

Indicate whether the statement is true or false

Computer Science & Information Technology

A(n) ________ is a note or comment that displays at the bottom of the page on which the reference occurs

Fill in the blank(s) with correct word

Computer Science & Information Technology