Upload Button Icon Add office photos
Engaged Employer

i

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

Ediiie Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Ediiie Interview Questions, Process, and Tips

Updated 7 Dec 2024

Top Ediiie Interview Questions and Answers

Ediiie Interview Experiences

Popular Designations

3 interviews found

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Normal round coding test basic opps concept

Interview Preparation Tips

Interview preparation tips for other job seekers - if you don't have job so join this for sometime
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Indeed and was interviewed before Mar 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - One-on-one 

(3 Questions)

  • Q1. What is a bug and what are its types?
  • Ans. 

    A bug is a defect or flaw in a software application that causes it to behave unexpectedly or produce incorrect results.

    • A bug can be a coding error, design flaw, or an issue with the software's functionality.

    • Common types of bugs include syntax errors, logic errors, and user interface bugs.

    • Examples of bugs include crashes, data corruption, incorrect calculations, and security vulnerabilities.

  • Answered by AI
  • Q2. What is VR? What is Metaverse?
  • Ans. 

    VR stands for Virtual Reality, which is a simulated experience that can be similar to or completely different from the real world. Metaverse refers to a collective virtual shared space, created by the convergence of virtually enhanced physical reality and physically persistent virtual reality.

    • VR is a technology that immerses users in a computer-generated environment, typically through the use of headsets and controller...

  • Answered by AI
  • Q3. What is a Collider? Where is it used?
  • Ans. 

    A Collider is a component in game development that detects collisions between objects.

    • A Collider is used in game development to detect when two objects collide with each other.

    • It is commonly used in physics-based games to simulate realistic interactions between objects.

    • Colliders can be attached to game objects such as characters, obstacles, or projectiles.

    • They can be configured to have different shapes such as boxes, s...

  • Answered by AI
Round 3 - Technical 

(4 Questions)

  • Q1. Knowledge about Gaming industry?
  • Ans. 

    Yes

    • Understanding of gaming platforms, genres, and trends

    • Knowledge of game development processes and methodologies

    • Familiarity with gaming hardware and software

    • Awareness of gaming industry standards and regulations

    • Experience with game testing and quality assurance practices

  • Answered by AI
  • Q2. What is Bug life cycle? What are bug types?
  • Ans. 

    Bug life cycle is the process of a bug from its identification to its closure. Bug types include functional, performance, usability, etc.

    • Bug life cycle involves stages like bug identification, bug reporting, bug fixing, bug retesting, and bug closure

    • Bug types include functional bugs (e.g. incorrect calculations), performance bugs (e.g. slow response time), usability bugs (e.g. confusing user interface), etc.

    • Bug severit...

  • Answered by AI
  • Q3. Experience about Jira and Testing processess?
  • Q4. Jira is project tracking website which aids in projections, timeline assesments and acts as bug reporting platform as well. Testing process may be answered as Smoke testing, Funcitonality testing, Black b...
Round 4 - HR 

(3 Questions)

  • Q1. Salary expectation and Negociation
  • Q2. Willingness to relocate to company HQs?
  • Q3. Relatable answer for candidates preference

Interview Preparation Tips

Topics to prepare for Ediiie Senior QA Tester interview:
  • Bug Reporting
  • Gaming
  • metaverse
  • VR
  • Testing
Interview preparation tips for other job seekers - Gaming industry knowledge, Gaming experience and expertise. Testing knowledge and its processes need to be known. Info about what is VR/MR/XR and other stuff would be helpful

Skills evaluated in this interview

Senior QA Tester Interview Questions asked at other Companies

Q1. What is Bug life cycle? What are bug types?
View answer (2)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Nov 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Total 20 questions in which there were coding and aptitude questions.

Round 3 - Technical 

(1 Question)

  • Q1. Some Coding questions like time complexity, loops ,recursion.

Unity Developer Interview Questions asked at other Companies

Q1. Would you prefer unity new input system or old one and why?
View answer (2)

Jobs at Ediiie

View all

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Nov 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Leadership principles, Previous experience, Managerial and logical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Not really tough, easy to crack if prepared

I applied via Recruitment Consultant and was interviewed before Jun 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Pivot and excel questions
  • Q2. All about excel

Interview Preparation Tips

Interview preparation tips for other job seekers - It was very simple self intro and excel questions and basic macro

I applied via Recruitment Consultant and was interviewed before Jul 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. DS Algo Questions on Trees. Leadership Principles

Interview Preparation Tips

Interview preparation tips for other job seekers - Read up on DS Algo and white paper coding and Leadership Principles

I was interviewed before Sep 2020.

Round 1 - Coding Test 

Round duration - 60 minutes
Round difficulty - Easy

Round 2 - Face to Face 

Round duration - 50 minutes
Round difficulty - Easy

Round 3 - Face to Face 

Round duration - 60 minutes
Round difficulty - Easy

At the beginning of this round, the interviewer asked me about the data structures I knew. Linked lists, trees, graphs, arrays etc. was my answer. He asked me how well I knew Dynamic Programming. I said I wasn’t strong in that and he said that he would ask me a question on dynamic programming for sure.

Round 4 - Face to Face 

Round duration - 40 minutes
Round difficulty - Easy

 

The interviewer asked me if I was comfortable with the interview process so far and how the previous interviews were. I said it was good and he gave me the first problem to solve.

Round 5 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

The interviewer asked me some Com­puter Sci­ence‍ fundamentals in this round as well as some behavioural questions.

  • Q1. Implement a Trie data structure and write functions to insert and search for a few words in it.
  • Ans. 

    Implement a Trie data structure with insert and search functions.

    • Create a TrieNode class with children and isEndOfWord attributes.

    • Implement insert function to add words by iterating through characters.

    • Implement search function to check if a word exists by traversing the Trie.

    • Example: Insert 'apple', 'banana', 'orange' and search for 'apple' and 'grape'.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in HyderabadEligibility criteria 7 CGPA Amazon interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Operating System, Database Management System, Object-Oriented Programming SystemTime required to prepare for the interview - 8 monthsInterview preparation tips for other job seekers

Do lot of hard work and practice of  Data Structures and Algorithms based questions. I personally recommend you Coding Ninjas and Geeks For Geeks for interview preparation.

Application resume tips for other job seekers

Make your resume short and try to make it of one page only and do mention all your skills which you are confident of in your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com

Interview Questionnaire 

2 Questions

  • Q1. Why Amazon?
  • Q2. What do you expect from Amazon?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be open to anything, and keep your expectations low as your expectations might kill you. Just relax and take everything in a healthy way

Associate Interview Questions & Answers

Amazon user image Arshiya Saba

posted on 10 Sep 2020

I applied via Company Website and was interviewed in Aug 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic Q & A

Interview Preparation Tips

Interview preparation tips for other job seekers - First-round I had English grammatical questions following that it took me to speech recognition, listen and type or type & email drafting. all you need is a calm mind and peaceful place and your set to go.

I applied via Referral and was interviewed before May 2021. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. How much time u work continues
  • Q2. How much salary do u expect

Interview Preparation Tips

Interview preparation tips for other job seekers - Really hard work as associate good for Hrs

Ediiie Interview FAQs

How many rounds are there in Ediiie interview?
Ediiie interview process usually has 2-3 rounds. The most common rounds in the Ediiie interview process are Resume Shortlist, Technical and Coding Test.
How to prepare for Ediiie interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Ediiie. The most common topics and skills that interviewers at Ediiie expect are Digital Marketing, Marketing, Campaign Management, Project Management and Content Writing.
What are the top questions asked in Ediiie interview?

Some of the top questions asked at the Ediiie interview -

  1. What is Bug life cycle? What are bug typ...read more
  2. What is a bug and what are its typ...read more
  3. What is a Collider? Where is it us...read more

Tell us how to improve this page.

Ediiie Interview Process

based on 6 interviews

Interview experience

2.7
  
Poor
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
BYJU'S Interview Questions
3.1
 • 2.1k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Paytm Interview Questions
3.3
 • 750 Interviews
Swiggy Interview Questions
3.8
 • 426 Interviews
Unacademy Interview Questions
3.0
 • 206 Interviews
upGrad Interview Questions
3.7
 • 198 Interviews
Ola Cabs Interview Questions
3.4
 • 138 Interviews
Upstox Interview Questions
3.7
 • 35 Interviews
Zerodha Interview Questions
4.1
 • 9 Interviews
View all

Ediiie Reviews and Ratings

based on 47 reviews

3.6/5

Rating in categories

3.7

Skill development

3.5

Work-life balance

3.6

Salary

3.3

Job security

3.7

Company culture

3.5

Promotions

3.6

Work satisfaction

Explore 47 Reviews and Ratings
Manager Business Development (Tender)

Gurgaon / Gurugram

2-7 Yrs

Not Disclosed

Senior HR Executive

Gurgaon / Gurugram

5-10 Yrs

Not Disclosed

Explore more jobs
Talent Acquisition Specialist
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Project Manager
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Unity Developer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Development Manager
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Content Writer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Ediiie with

BYJU'S

3.1
Compare

Unacademy

3.0
Compare

upGrad

3.7
Compare

Upstox

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