Computer Science, asked by csrkl10bmanwisingh, 4 months ago


e) class Sample
{
public static void main(String args[])
{
String p="computer",
String q="Applications";
String a="NEW DELHI";
String b="new delhi";
System.out.println(b.toUpperCase());
System.out.println(a.equals(b));
System.out.println(b.length();
System.out.println(p.concat(q));
}​

Answers

Answered by abhusharma29
2
NEW DELHI
false
9
computerApplications
Similar questions