Answer:
A new floating selection layer is created
Explanation:
In a graphic design software for example like CorelDraw, if a text tool is used to add text, a new floating selection layer is created in which, the text is inserted.
Answer:
If you know how many passes you'll be making, a for loop is most suitable.
If you do not know ahead of time, the while loop is better, since the while condition will decide if you're going to make another round.
You can change your grade by going to your profile in the top right corner.
Answer:
name.charAt(0);
Explanation:
Given: 'name' is a variable of type String that has been assigned a value.
To determine: an expression whose value is the first character of the value of name.
Let us assume nae is assigned the value "test". So our expression should return the first character , that is 't'.
In order to do this, we can use the charAt method of String object.
String name="test";
char c = name.charAt(0);
Here 0 corresponds to the index of the character we are interested in.