System.out.println(str1.toUpperCase());This statement prints the string "HELLO".
System.out.println(str2.charAt(6));In "Java Programming", index 6 corresponds to the letter 'r'.
System.out.println(str1.indexOf('l'));In the string "Hello", the first 'l' appears at index 2.
System.out.println(str1.replace('l', '*'));This will output: "He**o" — as both 'l's are replaced with '*'.
Use the given information to select the amino acid attached to the 3′ end of tRNA during the process of translation, if the coding strand of the structural gene being transcribed has the nucleotide sequence TAC.