Skip to main content

Posts

Showing posts with the label Strings | Lecture 12 | Java Placement Series

Strings | Lecture 12 | Java Placement Series

Java - Introduction to Programming Lecture 12 Strings Declaration String name = "Tony" ; Taking Input Scanner sc = new Scanner ( System . in );         String name = sc . next (); Concatenation (Joining 2 strings) String firstName = "Tony" ;         String secondName = "Stark" ;           String fullName = firstName + " " + secondName ;         System . out . println ( fullName ); Print length of a String String firstName = "Tony" ;         String secondName = "Stark" ;           String fullName = firstName + " " + secondName ;         System . out . println ( fullName . length ()); Access characters of a string String firstName = "Tony" ;         String secondName = "Stark" ...