Evernorth Health Services HYD Senior Analyst ( Full Stack )
Summary
I interviewed for a Senior Analyst (Full Stack Developer) position at Evernorth Health Services in Hyderabad and was ultimately rejected after the first round.
Full Experience
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
Interview Questions (7)
Implement Polymorphism
Implement Polymorphism
Java 8 String Filtering
Given a string "1237678 @ab@c @123" using java 8 filter out the alphabet and numbers.
CSS Specificity and Priority
Explain the priority of CSS rules (inline, id, class, tag).
JavaScript Hoisting
Explain Hoisting in Detail in JavaScript.
JavaScript Arrow vs Regular Functions
Explain the differences between Arrow functions and regular functions in JavaScript.
JavaScript Scope and Hoisting Output
What is the output for the given JavaScript code:
var x = 1;
a();
b();
console.log(x);
const a = () => {
var x = 20;
console.log(x);
}
function b() {
var x = 100;
console.log(x);
}JavaScript Polyfills
Explain what Polyfills are in JavaScript.