Evernorth Health Services HYD Senior Analyst ( Full Stack )
Anonymous User
210

HR reached out to me throught Talent 500 for Senior Analyst position (Full Stack Developer)

Interview Round 1

Java Questions:
OOPs drilled down
Implement PLoymorphism
SOLID principle in depth
Java 8 features
Given a string "1237678 @ab@c @123" using java 8 filter out the alphabet and numbers.

HTML, CSS:
HTML5 features
Geolocation
Symentic
priority of css ( inline, id, class, tag)
animations

JavaScript
Hoisting in Detail
Arrow vs regular function

output for below:
var x = 1;
a();
b();
console.log(x);
const a = () => {
var x = 20;
console.log(x);
}
function b() {
var x = 100;
console.log(x);
}

Polyfills

Verdict: rejected.

upvote if this helps you.
Thanks

Comments (0)