Premium Employer

i

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

Electronic Arts Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Electronic Arts Software Development Engineering Intern Interview Questions, Process, and Tips

Updated 17 Dec 2021

Electronic Arts Software Development Engineering Intern Interview Experiences

1 interview found

I applied via Campus Placement and was interviewed in Sep 2021. There were 3 interview rounds.

Round 1 - Online written round 

(2 Questions)

It was an online written round conducted on Coding Game platform. There were 2 sections including 15 MCQ and 2 coding questions.
The MCQs were based on C/C++ output based questions.
In the coding questions, we could only code in C++.

  • Q1. Return the letter in the string having the highest frequency
  • Ans. 

    The answer is a letter in the string that appears most frequently.

    • Iterate through each letter in the string and count its frequency

    • Keep track of the letter with the highest frequency

    • Return the letter with the highest frequency

  • Answered by AI
  • Q2. Given an m x n binary matrix filled with 0's and 1's, find the largest square containing only 1's and return its area.
  • Ans. 

    Given a binary matrix, find the largest square containing only 1's and return its area.

    • Use dynamic programming to solve the problem

    • Create a 2D array to store the maximum size of square at each point

    • For each point, check the top, left, and diagonal top-left values to calculate the maximum size of square

    • Return the maximum size of square found

  • Answered by AI
Round 2 - Technical 

(2 Questions)

Round duration - 70 minutes
Round difficulty - null
It was a DSA based round in which the interviewer asked me 2 DSA based questions. One was based on the sliding window technique and the other was based on binary search.

  • Q1. Return the maximum length of the alternating sequence and print the alternating sequence
  • Ans. 

    The maximum length of the alternating sequence is returned along with the sequence itself.

    • Iterate through the array and check if each element alternates with the previous one.

    • Keep track of the current alternating sequence length and the maximum length seen so far.

    • If the current element breaks the alternating pattern, update the maximum length and reset the current length.

    • Print the alternating sequence by storing the el

  • Answered by AI
  • Q2. Given a sorted array in which every element occurs twice except one find the element occurring only once. It can be solved using xor, 2 pointers, hashmap and binary search.
Round 3 - Technical 

(2 Questions)

Round duration - 60 minutes
Round difficulty - null
It was again a DSA based round in which the interviewer asked me 2 DSA based questions. One was based on a hashing technique that is using hashmap and the other was based on a binary tree.

  • Q1. Find the minimum number of arrows needed to burst balloons represented by an array where a[I] means the height of the balloon. The constraint was if we hit a balloon say the height of 4 then the arrow will...
  • Ans. 

    Find minimum arrows needed to burst balloons in decreasing order of height

    • Sort the array in decreasing order of height

    • Initialize arrow count to 1 and max height to first balloon height

    • Iterate through the array and if current balloon height is greater than max height, increment arrow count and update max height

    • Return arrow count

    • Time complexity: O(nlogn) for sorting, O(n) for iteration

    • Space complexity: O(1)

  • Answered by AI
  • Q2. Question was based on the binary tree he asked me to print all paths in the binary tree having sum equal to a given target
  • Ans. I solved it using prefix tree and hashmap,
  • Answered by PrepInsta

Interview Preparation Tips

Professional and academic backgroundAt the time of the interview, I had 0 Years (fresher) of experience. My academic qualification is B.Tech from National Institute of Technology, Jamshedpur.Electronic Arts(EA) Games interview preparation:Resources to prepare for this interview - For output based C/C++ questions you can refer to PrepInsta material for the interview preparation guide and for HR interviews you can take mock interviews.Tips for other job seekers - The only advice from my side would be to practice and learn DSA as much as possible and enhance your speaking and writing skills as you need to explain your code to the interviewer. Take mock tests and interviews to land a good job.Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Question on basic JavaScript

Interview Preparation Tips

Interview preparation tips for other job seekers - On the basics of react and JavaScript

Interview Questionnaire 

2 Questions

  • Q1. Palindrome
  • Q2. Study basic coding
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Oops concept was asked a lot
Round 2 - One-on-one 

(1 Question)

  • Q1. Mostly of attitude inception

Interview Preparation Tips

Interview preparation tips for other job seekers - Good experience
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What are the pillars of OOPS?
  • Ans. 

    The pillars of OOPS are Inheritance, Encapsulation, Abstraction, and Polymorphism.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Encapsulation restricts access to certain components within a class, protecting the data from outside interference.

    • Abstraction hides the complex implementation details and only shows the necessary features to the user.

    • Polymorphism allows objects to be treated...

  • Answered by AI

Interview Questionnaire 

2 Questions

  • Q1. Tell me about yourself
  • Q2. Explain yourself in a crisp way adding your positives highlighted and showcasing your creativity, other activities..
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. 1.Basic of Oops. 2.Abstract class and interface. 3.Some program based on conceptual. 4.Joins in sql. 5.Project explanation 6.MVC related 7.C# related basic conceptual
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Polymorphism in C++
  • Ans. 

    Polymorphism in C++ allows objects of different classes to be treated as objects of a common superclass.

    • Polymorphism is achieved through function overloading and virtual functions.

    • Function overloading allows multiple functions with the same name but different parameters.

    • Virtual functions are functions in a base class that are overridden in derived classes.

    • Example: Animal class with virtual function 'makeSound', Cat and

  • Answered by AI
  • Q2. Standard template library in C++
  • Ans. 

    STL in C++ provides reusable algorithms and data structures for efficient programming.

    • STL includes containers like vector, list, map, algorithms like sort, find, and iterators.

    • Example: vector v = {1, 2, 3}; sort(v.begin(), v.end());

    • STL saves time by providing pre-implemented solutions for common programming tasks.

Answered by AI
  • Q3. Design Patterns in C++
  • Ans. 

    Design patterns in C++ are reusable solutions to common problems in software design.

    • Design patterns help in creating flexible, maintainable, and scalable code.

    • Examples of design patterns in C++ include Singleton, Factory, Observer, and Strategy.

    • Each design pattern has a specific purpose and can be applied in different scenarios.

    • Understanding design patterns can improve code quality and efficiency in software developmen

  • Answered by AI

    Skills evaluated in this interview

    Interview experience
    4
    Good
    Difficulty level
    Easy
    Process Duration
    Less than 2 weeks
    Result
    Selected Selected

    I applied via Naukri.com 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 - Coding Test 

    MCQ based on programming, 2 programming problems

    Round 3 - One-on-one 

    (5 Questions)

    • Q1. What is copy constructor ?
    • Ans. 

      Copy constructor is a special constructor that creates a new object by copying an existing object.

      • It is used to initialize an object with another object of the same class.

      • It takes a reference to an object of the same class as an argument.

      • It creates a new object with the same values as the object passed as argument.

      • It is automatically called when a new object is created from an existing object.

      • Example: MyClass obj1; MyC

    • Answered by AI
    • Q2. What is shallow copy and deep copy ?
    • Ans. 

      Shallow copy creates a new object with the same reference as the original, while deep copy creates a new object with a new reference.

      • Shallow copy only copies the top-level object, while deep copy copies all nested objects.

      • Shallow copy is faster and uses less memory, while deep copy is slower and uses more memory.

      • Examples of shallow copy include copying arrays and objects using the spread operator, while examples of dee...

    • Answered by AI
    • Q3. Implement Merge Sort on an array
    • Ans. 

      Implementation of Merge Sort on an array

      • Divide the array into two halves

      • Recursively sort the two halves

      • Merge the sorted halves

      • Time complexity: O(n log n)

      • Space complexity: O(n)

    • Answered by AI
    • Q4. What are Virtual Functions ?
    • Ans. 

      Virtual functions are functions that can be overridden by derived classes.

      • Virtual functions are declared in a base class and can be overridden in derived classes.

      • They allow for polymorphism, where a derived class object can be treated as a base class object.

      • Virtual functions are called based on the actual object type, not the pointer or reference type.

      • They are declared using the virtual keyword in the base class and ca...

    • Answered by AI
    • Q5. What are you good at in C++ ?
    • Ans. 

      I am good at object-oriented programming, data structures, and algorithms in C++.

      • Strong understanding of object-oriented programming principles

      • Proficient in implementing data structures and algorithms in C++

      • Experience with memory management and pointers

      • Familiarity with C++ standard library and STL

      • Ability to optimize code for performance and efficiency

    • Answered by AI
    Round 4 - HR 

    (2 Questions)

    • Q1. Why do you want to get this job ?
    • Ans. 

      I am passionate about software development and this job aligns perfectly with my skills and interests.

      • I have a strong passion for software development and enjoy solving complex problems.

      • This job offers the opportunity to work on cutting-edge technologies and contribute to innovative projects.

      • I am excited about the company's mission and values, and believe in the positive impact software can have on society.

      • I am eager t...

    • Answered by AI
    • Q2. How long will you stay in this company ?
    • Ans. 

      I am committed to staying with the company for the long term and contributing to its success.

      • I am looking for a stable and challenging work environment.

      • I believe in the company's mission and values.

      • I am eager to grow and develop my skills within the company.

      • I am open to new opportunities and challenges that may arise.

      • I am committed to building strong relationships with my colleagues and contributing to a positive work

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Do OOPS in detail. And practice Data Structures and Algorithms

    Skills evaluated in this interview

    I applied via Naukri.com and was interviewed in May 2022. There were 2 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 - Technical 

    (6 Questions)

    • Q1. Java oops concepts and describe overloading
    • Ans. 

      Java oops concepts include encapsulation, inheritance, abstraction, and polymorphism. Overloading is a way to define multiple methods with the same name but different parameters.

      • Encapsulation: bundling data and methods that operate on that data within a single unit

      • Inheritance: creating new classes from existing ones

      • Abstraction: hiding implementation details and showing only the necessary information

      • Polymorphism: using ...

    • Answered by AI
    • Q2. Encapsulation how to achieve in java
    • Ans. 

      Encapsulation in Java is achieved by using access modifiers and creating classes with private fields and public methods.

      • Use access modifiers such as private, public, and protected to restrict access to fields and methods

      • Create classes with private fields and public methods to control access to data

      • Encapsulation helps to maintain data integrity and prevent unauthorized access to data

      • Example: class Person { private Strin...

    • Answered by AI
    • Q3. Overriding questions code and snippets
    • Q4. Based on overloading and overriding code and snippets
    • Q5. String and string pool
    • Q6. Exception handling throws ,throw

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Be prepared with basic Java upto collection nicely if you going for sg

    Skills evaluated in this interview

    Tell us how to improve this page.

    Join Electronic Arts We exist to inspire the world to play.

    Interview Questions from Similar Companies

    Pole To Win Interview Questions
    3.4
     • 58 Interviews
    Aristocrat Interview Questions
    3.9
     • 46 Interviews
    Light & Wonder Interview Questions
    3.9
     • 29 Interviews
    IDZ Digital Interview Questions
    3.8
     • 22 Interviews
    Games24x7 Interview Questions
    3.7
     • 19 Interviews
    View all
    QA Tester
    129 salaries
    unlock blur

    ₹3 L/yr - ₹7.2 L/yr

    Senior QA Tester
    97 salaries
    unlock blur

    ₹5 L/yr - ₹9 L/yr

    QA Tester II
    73 salaries
    unlock blur

    ₹4 L/yr - ₹6.3 L/yr

    Quality Analyst
    57 salaries
    unlock blur

    ₹4.5 L/yr - ₹9.5 L/yr

    Quality Assurance Tester 2
    53 salaries
    unlock blur

    ₹4 L/yr - ₹6.8 L/yr

    Explore more salaries
    Compare Electronic Arts with

    Pole To Win

    3.4
    Compare

    International Game Technology

    3.2
    Compare

    Ubisoft Entertainment

    3.8
    Compare

    Aristocrat

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