The limitation of computer are:
- No self-intelligence
- No feeling
- No learning power
- Dependency
<span>To build a team site and collaborate with your colleagues</span>
Uh, I think you mean antonym.
Anyways, here are some antonyms.
Careless, Certain, Foolish, Inattentive, Incautious
Answer:
String word = "George slew the dragon";
int pos = word.indexOf("dr");
String drWord = word.substring(pos, pos+4);
System.out.println(drWord);
Explanation:
Assuming dr is always there, we don't have to check the validity of 'pos'. Normally, you would!