Upload Button Icon Add office photos

Filter interviews by

Risun India Electronics Software Engineer Interview Questions and Answers

Updated 14 Sep 2023

Risun India Electronics Software Engineer Interview Experiences

1 interview found

Interview Questionnaire 

2 Questions

  • Q1. Friend function, virual function, linkedlist, Multithreading
  • Q2. What is virtual fxn, friend fxn, etc..???
  • Ans. 

    Virtual functions are functions in a base class that can be overridden by derived classes. Friend functions can access private and protected members of a class.

    • Virtual functions allow polymorphism and dynamic binding.

    • Friend functions are not members of a class but can access its private and protected members.

    • Virtual functions are declared using the 'virtual' keyword.

    • Friend functions are declared using the 'friend' keyw...

  • Answered by AI

Interview Preparation Tips

C++ basic

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain oop concets
  • Ans. 

    OOP concepts are fundamental principles in object-oriented programming that help in organizing and designing code.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

    • Inheritance: Ability of a class to inherit properties and behavior from another class.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation detai...

  • Answered by AI
  • Q2. Virtual functions
Round 2 - Technical 

(2 Questions)

  • Q1. Explain vectors and array difference
  • Ans. 

    Vectors are dynamic arrays that can change in size, while arrays have a fixed size.

    • Vectors can grow or shrink in size dynamically, while arrays have a fixed size.

    • Vectors can be resized using functions like push_back() and pop_back(), while arrays cannot.

    • Vectors are part of the C++ Standard Template Library (STL), while arrays are a fundamental data structure.

    • Example: vector vec; int arr[5];

Answered by AI
  • Q2. Virtual destructors
  • Round 3 - One-on-one 

    (2 Questions)

    • Q1. About last project
    • Q2. Puzzle with some analytical skills

    Skills evaluated in this interview

    Interview experience
    5
    Excellent
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    No response

    I applied via Company Website and was interviewed in Sep 2024. There were 3 interview rounds.

    Round 1 - Technical 

    (3 Questions)

    • Q1. What is polymorphism?
    • Ans. 

      Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

      • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

      • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

      • Example: Inheritance allows a child class to override a method from its parent class, exhibiting polymorphic b

    • Answered by AI
    • Q2. How abstraction is implemented?
    • Ans. 

      Abstraction is implemented in software engineering by hiding unnecessary details and exposing only relevant information.

      • Abstraction is achieved through the use of abstract classes and interfaces in object-oriented programming.

      • It allows developers to focus on the essential aspects of a concept without getting bogged down in implementation details.

      • For example, in a car simulation program, the Car class may have abstract ...

    • Answered by AI
    • Q3. What is the difference between abstraction and Interface?
    • Ans. 

      Abstraction is hiding the implementation details while Interface is a contract that defines the methods that a class must implement.

      • Abstraction focuses on hiding the internal implementation details of a class, allowing the user to only see the necessary details.

      • Interface defines a contract that specifies the methods a class must implement, without providing the implementation details.

      • Abstraction can be achieved through...

    • Answered by AI
    Round 2 - Behavioral interview 

    (1 Question)

    • Q1. What is your motivation when you are working on same project alone for long period?
    • Ans. 

      My motivation when working on a project alone for a long period is the satisfaction of seeing my hard work come to fruition.

      • Setting small achievable goals to keep myself motivated

      • Taking breaks to avoid burnout and maintain productivity

      • Seeking feedback from others to stay motivated and improve my work

      • Reminding myself of the end goal and the impact my project will have

    • Answered by AI
    Round 3 - HR 

    (1 Question)

    • Q1. What is your salary expectation?
    • Ans. 

      My salary expectation is based on my experience, skills, and the market rate for Software Engineers in this region.

      • Research the average salary range for Software Engineers in the specific region or industry

      • Consider your level of experience, skills, and qualifications when determining your salary expectation

      • Be prepared to negotiate based on the company's offer and benefits package

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Prepare well and give interview as many as possible
    Interview experience
    2
    Poor
    Difficulty level
    Moderate
    Process Duration
    4-6 weeks
    Result
    Not Selected
    Round 1 - Technical 

    (2 Questions)

    • Q1. How to create custom serializable interface
    • Ans. 

      To create a custom serializable interface, you need to define an interface with the Serializable marker interface and implement the necessary methods.

      • Define an interface with the Serializable marker interface

      • Implement the necessary methods for serialization and deserialization

      • Ensure all fields in the class implementing the interface are serializable

    • Answered by AI
    • Q2. Whatis criteria in hibernate
    • Ans. 

      Criteria in Hibernate is used to create and execute dynamic queries.

      • Criteria is an interface in Hibernate that allows the creation of dynamic queries without using HQL or SQL.

      • Criteria queries are type-safe and can be easily modified at runtime.

      • Criteria queries can be used to fetch entities based on certain conditions or restrictions.

      • Example: Criteria criteria = session.createCriteria(Employee.class);

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - First round interview was very easy. But second client round interview is really annoying. He has too much arrogance and was saying. Interview is not about QnA session, you are supposed to talk alot.

    Skills evaluated in this interview

    Interview experience
    5
    Excellent
    Difficulty level
    Moderate
    Process Duration
    2-4 weeks
    Result
    Selected Selected

    I applied via campus placement at Indian Institute of Management (IIM), Indore and was interviewed in Aug 2024. There were 3 interview rounds.

    Round 1 - Coding Test 

    I was on data structures on python , c++, sql and java

    Round 2 - Technical 

    (4 Questions)

    • Q1. Sql based questions
    • Q2. Java based DS and devops
    • Q3. C++ data structures
    • Q4. Machine learning and Data structures
    Round 3 - Assignment 

    Case study of real life

    Interview experience
    3
    Average
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Technical 

    (1 Question)

    • Q1. Write a rest API which return employee data based on ID.
    • Ans. 

      Create a REST API to retrieve employee data by ID

      • Use a GET request to /employees/{id} endpoint

      • Query the database for employee data based on the provided ID

      • Return the employee data in JSON format

    • Answered by AI
    Interview experience
    4
    Good
    Difficulty level
    -
    Process Duration
    Less than 2 weeks
    Result
    Selected Selected
    Round 1 - Technical 

    (2 Questions)

    • Q1. Course schedule 1 in leetcode
    • Q2. Snakes and ladder in leetcode
    • Ans. 

      Implement the game of Snakes and Ladders on LeetCode.

      • Use a 1D array to represent the board of the game.

      • Use a queue to perform BFS to find the shortest path to reach the end.

      • Handle the special cases of snakes and ladders by updating the position accordingly.

    • Answered by AI

    Skills evaluated in this interview

    Interview experience
    4
    Good
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Technical 

    (1 Question)

    • Q1. Innerjoin, index, some logical question.
    Interview experience
    1
    Bad
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Coding Test 

    C programming, stack, python, computer basics

    Interview experience
    5
    Excellent
    Difficulty level
    Easy
    Process Duration
    4-6 weeks
    Result
    -

    I applied via Company Website and was interviewed in Jun 2024. There was 1 interview round.

    Round 1 - Coding Test 

    Implement your own state management in React and integrate it into a React application.

    Risun India Electronics Interview FAQs

    What are the top questions asked in Risun India Electronics Software Engineer interview?

    Some of the top questions asked at the Risun India Electronics Software Engineer interview -

    1. What is virtual fxn, friend fxn, etc.....read more
    2. Friend function, virual function, linkedlist, Multithread...read more

    Tell us how to improve this page.

    Accounts Supervisor
    4 salaries
    unlock blur

    ₹4.2 L/yr - ₹8 L/yr

    Warehouse Manager
    3 salaries
    unlock blur

    ₹3.2 L/yr - ₹5.1 L/yr

    Quality Engineer
    3 salaries
    unlock blur

    ₹2.5 L/yr - ₹4.8 L/yr

    Molding Production Engineer
    3 salaries
    unlock blur

    ₹3.2 L/yr - ₹3.2 L/yr

    Explore more salaries
    Compare Risun India Electronics with

    Samsung

    4.0
    Compare

    LG Electronics

    4.0
    Compare

    Sony

    4.3
    Compare

    Panasonic

    4.1
    Compare

    Calculate your in-hand salary

    Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
    Did you find this page helpful?
    Yes No
    write
    Share an Interview