Evernorth Health Services HYD Senior Analyst ( Full Stack )

evernorth health services logo
evernorth health services
Senior Analyst (Full Stack Developer)Hyderabad
April 3, 202511 reads

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)

Q1
Implement Polymorphism
Other

Implement Polymorphism

Q2
Java 8 String Filtering
Data Structures & Algorithms

Given a string "1237678 @ab@c @123" using java 8 filter out the alphabet and numbers.

Q3
CSS Specificity and Priority
Other

Explain the priority of CSS rules (inline, id, class, tag).

Q4
JavaScript Hoisting
Other

Explain Hoisting in Detail in JavaScript.

Q5
JavaScript Arrow vs Regular Functions
Other

Explain the differences between Arrow functions and regular functions in JavaScript.

Q6
JavaScript Scope and Hoisting Output
Data Structures & Algorithms

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);
}
Q7
JavaScript Polyfills
Other

Explain what Polyfills are in JavaScript.

Discussion (0)

Share your thoughts and ask questions

Join the Discussion

Sign in with Google to share your thoughts and ask questions

No comments yet

Be the first to share your thoughts and start the discussion!