TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Convert the String to Upper Case
Alagunila Meganathan
Aug 08
2016
Code
949
0
1
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
expand
ConvertInUpperCase.r
public
class
ConvertInUpperCase{
public
static
void
main(String args[]){
String r =
"Flower"
;
System.out.println(
"String is : "
+ r);
String upper = r.toUpperCase();
System.out.println(
"String in uppercase letter: "
+ upper);
}
}
java
String