JPMorganChase Interview Question

Capitalize every word in a given sentence.

Interview Answers

Anonymous

Sep 7, 2020

Simple case work (ignore certain whitespace, check when to capitalize letters, etc)

Anonymous

Oct 24, 2020

String sen = "i love java"; System.out.println(sen.toUpperCase());