"Junior developers are often responsible for writing the more monotonous and simple code required by senior members of the development team. Because of this, interviews will be designed to test your knowledge of the fundamentals of Java so be prepared to answer technical questions that you likely came across in college. Data structures and algorithms will be heavily emphasised. A bachelor's degree or equivalent work experience is required. "
↳
Take a string as function parameter. Copy this str value into a new var, then use .reverse() thereupon. Compare the reversed copy back against original string using turnery operator to set resVariable to "true" : "false". Return resVariable. Less
↳
(Using .split(""), as well as .join(""))
↳
const palindrome = (str) => str == str.reversed() palindrome('hello') // false palindrome('eve') // true Less
↳
public String getFirstLetters(String text) { String firstLetters = ""; text = text.replaceAll("[.,]", ""); // Replace dots, etc (optional) for(String s : text.split(" ")) { firstLetters += s.charAt(0); } return firstLetters; } Less
↳
let sentence = 'Big Green Dog' let words = sentence.split(' ') words.map((word) =>{ word.split('') console.log(word[0]) }) //output "B" "G" "D" Less
↳
public static void PrintFirstLetter( String s ){ If ( s.length == 0 ){ return; } String [ ] Words = s.split( “ “ ); for ( String word : Words ) { System.out.println( word.charAt(0)); } } Less
↳
please let me know if anyone got Job
↳
36. If you get call then follow this interview experience
↳
How many of you waiting after 3rd round
↳
You got the offer?
↳
10 Jan
↳
Any who got the call for third round who gave technical interview on 7th jan, if got plzz mention the date. Less
↳
Was it only for profound students
↳
How many were shortlisted for the next round..??
↳
I have attended third round. That was horrible
↳
can I submit my screen shot????
↳
can you share it?
↳
How many days they will take to tell the status and after screening test what was the next round?? Less
↳
yes, i knw it but i am not sure about this so i am not going to make any mistake so i simply says idk. andi also suggest you if you dont knw so leave it not try to make it large. Less
↳
Tell me.. what question ask in skype round
↳
Tell me.. what question ask in skype round