Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Ethical Den Team. If you also belong to the team, you can get access from here

Ethical Den Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Ethical Den Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Jan 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Can one use an Employee class as a key in a HashMap? (This is a very important question. Please cover this in depth) You are using a class from a library (say Student). You have a list of Student objects. ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare core java for 1st round and spring boot and MICROSERVICES basic well

I applied via Naukri.com and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. How to switch between Tabs in a browser using selenium
  • Ans. 

    To switch between tabs in a browser using Selenium, we can use the getWindowHandles() method and switchTo() method.

    • Use getWindowHandles() method to get the handles of all open tabs

    • Store the handles in a Set

    • Use switchTo() method to switch to a specific tab by passing the handle as an argument

  • Answered by AI
  • Q2. Write code to give rating in webta le given applicant name and rating as input to the method.
  • Ans. 

    Code to give rating in webtable for given applicant name and rating as input.

    • Create a function that takes applicant name and rating as input.

    • Search for the applicant name in the webtable.

    • Update the rating for the applicant in the webtable.

    • Return the updated webtable.

  • Answered by AI
  • Q3. I was given one website link where there is option to generate random photo, full name and last name when clicked on a button. Write code to check first name, last name and photo are not repeated for atlea...
  • Q4. Find how many numbers are repeated from given integer array
  • Ans. 

    Count the number of repeated integers in an array

    • Iterate through the array and use a hash table to keep track of the count of each number

    • Return the count of numbers with a count greater than 1

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please be prepared on windows switching, handling tables, Java questions

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Sep 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Pair programming
  • Q2. Describe your current project and what all changes you can suggest
  • Q3. Design online automobile service center website
  • Ans. 

    Design an online automobile service center website

    • Include a user-friendly interface for booking appointments and services

    • Provide detailed information about the services offered and their pricing

    • Incorporate a feature for customers to track the progress of their service

    • Include a section for customer reviews and ratings

    • Ensure the website is mobile-responsive for easy access on-the-go

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and composed.
Be honest.
Try some different systen design problems.

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in May 2021. There were 5 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Related to the previous work experience,
  • Q2. Team Management skills and scenario's how will I tackle it?
  • Q3. Technical questions, if we are from Tech Background.
  • Q4. Tell me about yourself
  • Q5. Explanation on previous experience of project
  • Q6. Clearly explain your project and the role you have worked on previously.

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview was good, and all questions were asked based on previous experience.
Role-related questions were asked.
One piece of advice for all the ones applying, add all the required information to your resume which is relevant and easily then you can pass through it...

Interview Questionnaire 

4 Questions

  • Q1. What ur experience about this position . Expect salary
  • Q2. I have more than 10 year experience in this computer field. I am enjoying to work with my coworkers.
  • Q3. Wfh
  • Q4. It

Etl lead for paypal Interview Questions & Answers

Altimetrik user image Anonymous

posted on 22 Jul 2021

I applied via Recruitment Consultant and was interviewed in Jun 2021. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. They asked about cache and uncache lookup
  • Q2. Partition by order by sql related question
  • Q3. Unix schenario based
  • Q4. Informatica schenario based

Interview Preparation Tips

Interview preparation tips for other job seekers - it was definitely a positive experience from Altemetrik so far.

I applied via Campus Placement and was interviewed in Feb 2021. There was 1 interview round.

Interview Questionnaire 

6 Questions

  • Q1. 1. Tell me about Yourself..?
  • Q2. 2.What is your final year project..?
  • Q3. 3.How will you present this project in front of your Principal...?
  • Q4. 4.What is Testing...?
  • Ans. 

    Testing is the process of evaluating a system or its component(s) with the intent to find whether it satisfies the specified requirements or not.

    • Testing is done to identify defects or errors in the system

    • It involves executing a system or component with test cases

    • The goal of testing is to ensure that the system meets the requirements and works as expected

    • Types of testing include functional, performance, security, and us

  • Answered by AI
  • Q5. 5.Difference between Manual Testing & Automation Testing
  • Ans. 

    Manual testing is done manually by humans while automation testing is done using tools and scripts.

    • Manual testing is time-consuming and prone to human errors while automation testing is faster and more reliable.

    • Manual testing is suitable for exploratory testing while automation testing is best for regression testing.

    • Manual testing requires human skills and knowledge while automation testing requires programming skills.

    • ...

  • Answered by AI
  • Q6. 6.Any Questions for me...?

Interview Preparation Tips

Interview preparation tips for other job seekers - Read the basics of testing, prepare your resume & most important thing is your project

Skills evaluated in this interview

I applied via Recruitment Consultant

Interview Questionnaire 

2 Questions

  • Q1. Round 1: Fundamentals questions related to Javascript and React. In React questions were focused on react-hooks. lifecycle components and optimization techniques in react. Basic to intermediate questions r...
  • Q2. Round 2: The interview panel will ask you to code some basic coding problem depending on your relevant experience and if you're not able to solve it they'll directly say they're done with the interview. In...

Interview Preparation Tips

Interview preparation tips for other job seekers - I cleared Round 1 after which there was a delay of more than 2 weeks and got a call for Round 2 without any prior notice. Their L2 level interview is very bad, in my case I ended the interview from my side as it looked very clear that the panel was least interested.

Interview Questionnaire 

3 Questions

  • Q1. -React lifecycle?-Fragment vs React. Fragment? -React pure component?
  • Ans. 

    React lifecycle, Fragment vs React.Fragment, React.PureComponent

    • React lifecycle consists of mounting, updating, and unmounting phases

    • Fragment is a shorthand for React.Fragment, used to group multiple elements

    • React.PureComponent is a class component that implements shouldComponentUpdate method for performance optimization

  • Answered by AI
  • Q2. JavaScript hoisting?- Let, var and cont difference?
  • Ans. 

    JavaScript hoisting and differences between let, var and const.

    • Hoisting is a JavaScript mechanism where variables and function declarations are moved to the top of their scope.

    • Var declarations are hoisted to the top of their scope, while let and const declarations are not.

    • Var can be redeclared and reassigned, let can be reassigned but not redeclared, and const cannot be reassigned or redeclared.

    • Using const is recommend...

  • Answered by AI
  • Q3. Dofferemt ways to prevent rerendering of a child component in react?
  • Ans. 

    Prevent rerendering of a child component in React

    • Use shouldComponentUpdate() lifecycle method

    • Use React.memo() to memoize functional components

    • Use PureComponent instead of Component

    • Pass props as a callback function to avoid unnecessary re-renders

    • Use React.PureComponent for class components

    • Use React.memo() for functional components

  • Answered by AI

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Why u choose this job ?
  • Q2. Why u preferred this company?
  • Q3. If I will give you job how would u increase the company standard or status

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice don't panic feel free say what u know that's it it is right or wrong

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS iON Interview Questions
3.9
 • 365 Interviews
CitiusTech Interview Questions
3.4
 • 268 Interviews
NeoSOFT Interview Questions
4.0
 • 261 Interviews
Episource Interview Questions
3.9
 • 221 Interviews
Tiger Analytics Interview Questions
3.7
 • 220 Interviews
Altimetrik Interview Questions
3.8
 • 213 Interviews
Xoriant Interview Questions
4.1
 • 181 Interviews
View all

Ethical Den Reviews and Ratings

based on 3 reviews

1.5/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

1.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 3 Reviews and Ratings
Compare Ethical Den with

CMS IT Services

3.1
Compare

KocharTech

4.0
Compare

Xoriant

4.1
Compare

3i Infotech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview