VIRUS I SERIOUSLY DONT KNOW THOUGH
It seems that you have missed the given options for this statement, but anyway, here is the correct answer. An alternative to increasing the column widths and row heights is to SHRINK THE CHARACTERS IN THE CELL to fit the <span> current width of the column. Hope this answer helps. </span>
Answer & Explanation:
//written in java
public class Main {
public static void main(String[] args) {
//String stored in a variable named phrase
String phrase = "Brainly";
//Checking whether the first character is in upper case or not
if (Character.isUpperCase(phrase.charAt(0)))
System.out.println("capital");
else
System.out.println("not capital");
}
}