The default is to collapse consecutive occurrences of ____________________ into a single blank space, and to automatically wrap text to a new line if it extends beyond the width of the container.

Fill in the blank(s) with the appropriate word(s).


white space

Computer Science & Information Technology

You might also like to view...

What is the output of the following code:

``` public class Test { public static void main(String[] args) { Object o1 = new Object(); Object o2 = new Object(); System.out.print((o1 == o2) + " " + (o1.equals(o2))); } ``` a. false false b. true true c. false true d. true false

Computer Science & Information Technology

Which if statement would be true if you needed to see if x (an int) was less than 5 and y (an int) was greater than 7?

A. if ( x < 5 || y > 7 ) B. if ( x < 5 && y > 7 ) C. if ( x <= 5 || y >7 ) D. if( x < 5 && y < 7)

Computer Science & Information Technology

A legend adds perspective to a chart

Indicate whether the statement is true or false

Computer Science & Information Technology

A cell that remains the same when it is copied or filled to other cells is a(n) ________

A) relative cell reference B) constant cell reference C) fixed cell reference D) absolute cell reference

Computer Science & Information Technology