Upload Button Icon Add office photos
Engaged Employer

i

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

MothersonSumi INfotech & Designs Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

MothersonSumi INfotech & Designs Junior Developer Trainee Interview Questions, Process, and Tips

Updated 4 Oct 2024

MothersonSumi INfotech & Designs Junior Developer Trainee Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - One-on-one 

(5 Questions)

  • Q1. DIFFERENCE BETWEEN ABSTRACT AND INTERFACE?
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructors, fields, and methods, while interface cannot have any implementation.

    • A class can only extend one abstract class, but can implement multiple interfaces.

    • Abstract classes are used to define common characteristics among subclasses, while interfaces are used to define a contract...

  • Answered by AI
  • Q2. WHAT IS MIDDLEWARE
  • Ans. 

    Middleware is software that acts as a bridge between different applications or components, allowing them to communicate and share data.

    • Middleware helps in managing communication between different systems or components.

    • It can provide services such as authentication, logging, and caching.

    • Examples of middleware include web servers like Apache or Nginx, and frameworks like Express.js in Node.js.

  • Answered by AI
  • Q3. WHAT IS SEALED CLASS AND WHAT IS EXTENSION METHOD?
  • Ans. 

    A sealed class is a class that cannot be inherited and an extension method is a method that allows adding new methods to existing types without modifying the original type.

    • Sealed class restricts inheritance, preventing other classes from deriving from it.

    • Extension methods allow adding new methods to existing types without modifying the original type.

    • Example of sealed class: 'sealed class MyClass { }'

    • Example of extensio...

  • Answered by AI
  • Q4. DIFFERENCE BETWEEN SESSION AND APPLICATION?
  • Ans. 

    Session is specific to a user's interaction with a website, while application is global to all users.

    • Session stores user-specific data, while application stores data accessible to all users.

    • Session is temporary and expires after a period of inactivity, while application data persists.

    • Session is used for user authentication and personalization, while application data is used for global settings and configurations.

  • Answered by AI
  • Q5. WHAT IS DELEGATE?
  • Ans. 

    A delegate is a type that represents references to methods with a specific parameter list and return type.

    • Delegates are similar to function pointers in C++ or pointers to member functions in C++/CLI.

    • Delegates allow methods to be passed as parameters.

    • Delegates can be used to define callback methods.

    • Delegates can invoke the methods they reference.

    • Delegates are type-safe and secure.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - PRECAUTION TO ASHUTOSH CHAUBEY MANAGER.

Skills evaluated in this interview

Interview questions from similar companies

Interview Questionnaire 

4 Questions

  • Q1. Azure Services
  • Q2. OOPS
  • Q3. Design Patterns
  • Q4. Angular Basics

Interview Questionnaire 

2 Questions

  • Q1. 1.Implement merge sort. 2. Kth largest element.
  • Ans. 

    Implement merge sort and find kth largest element in an array.

    • Merge sort is a divide and conquer algorithm that recursively divides the array into two halves, sorts them and then merges them.

    • Kth largest element can be found using quick select algorithm or by sorting the array and returning the kth element from the end.

    • Merge sort has a time complexity of O(nlogn) and space complexity of O(n).

    • Quick select has a time comp...

  • Answered by AI
  • Q2. Springboot RestTemplate, singleton, oops

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. 1. If you given a no return its corresponding excel no.
  • Ans. 

    Convert given no to corresponding excel no.

    • Excel no starts from 1 and goes up to 16384

    • Excel no is calculated using column and row numbers

    • For example, 1 corresponds to A, 27 corresponds to AA, 28 corresponds to AB, and so on

  • Answered by AI
  • Q2. 2. find unique character in a window of k size in a string
  • Ans. 

    Find unique characters in a window of k size in a string.

    • Use a sliding window approach.

    • Maintain a hash table to keep track of character frequency.

    • Remove characters from hash table as the window slides.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Communication is very important. Give your solution from brute force to optimal. Interviewer has tell me to write code of both questions in any programming language.

Skills evaluated in this interview

I applied via Referral and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. DS Questions 1. kth largest element. 2. Implement merge sort
  • Q2. Springboot basics, oops, collection api

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepeare DS well

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

Interview Questionnaire 

2 Questions

  • Q1. Basics of Android, Java, Kotlin.
  • Q2. Mvvm architecture, RxJava, jetpack components

Interview Preparation Tips

Interview preparation tips for other job seekers - Had 3 technical round and one HR Round.

I applied via Naukri.com and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basic of ionic framework
  • Q2. Advance of angular
  • Ans. 

    Angular is a popular front-end framework for building web applications.

    • Angular is developed and maintained by Google.

    • It uses TypeScript for building scalable and maintainable applications.

    • Angular has a powerful CLI for generating components, services, and more.

    • It has a large and active community with many third-party libraries and plugins available.

    • Angular has a modular architecture that allows for easy code reuse and

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - There is a bit late in response some times be patient

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. UiPath Architecture

I applied via Approached by Company and was interviewed before Apr 2021. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Technical interview with my primary skill set Where all details asked about technology And given one program to do using primary skill
Round 2 - HR 

(1 Question)

  • Q1. Salary Discussion Questions about why to change org And More specific to HR questions About yourself
Round 3 - Managiral 

(1 Question)

  • Q1. Question about last project work About Yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Company is growing with different skillset and domain

I appeared for an interview in Aug 2020.

Interview Questionnaire 

8 Questions

  • Q1. Position was for UI - Fundamentals of JavaScript (Closure, Promises, Event Loop, filter vs map, Event delegation)
  • Q2. Lifecycle of React Component, State vs Props, Optimization techniques, Redux vs Context
  • Q3. Coding challenge (JS) - remove duplicate entries from array
  • Ans. 

    Remove duplicate entries from array of strings using JavaScript

    • Use Set to remove duplicates

    • Convert Set back to array

    • Use spread operator to convert Set to array

  • Answered by AI
  • Q4. Coding Challenge (JS) - determine if words in given array are anagram or not
  • Ans. 

    Determines if words in given array are anagram or not using JS

    • Create a function that takes an array of strings as input

    • Loop through the array and sort each string alphabetically

    • Compare the sorted strings to check if they are equal

    • Return true if all strings are anagrams, else false

  • Answered by AI
  • Q5. Client Round (1) - Questions on design system, coding challenge - Let's try to create a modal component in React JS from scratch
  • Q6. Client Round (2) - Questions based on scenarios to test your thinking ability and problem solving approach
  • Q7. Client Round (3) - Questions on all the technologies that you have mentioned in your CV. Additional questions on Agile, DevOps and your understanding of CI-CD.
  • Q8. Client Round (4) - Coding challenge - implement/rewrite any inbuilt method provided by JS (e.g. Array.map, Array.filter, function.bind)

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for fundamentals of JS.
Answering questions of React would be easy if you already work on it.
Try to solve at least 5 problems on Hacker Rank or Hacker Earth, before appearing for interview.
That would help you prepare mentally and logically to bare with the process and develop an attitude of keep trying.

Good luck!

Skills evaluated in this interview

MothersonSumi INfotech & Designs Interview FAQs

How many rounds are there in MothersonSumi INfotech & Designs Junior Developer Trainee interview?
MothersonSumi INfotech & Designs interview process usually has 1 rounds. The most common rounds in the MothersonSumi INfotech & Designs interview process are One-on-one Round.
What are the top questions asked in MothersonSumi INfotech & Designs Junior Developer Trainee interview?

Some of the top questions asked at the MothersonSumi INfotech & Designs Junior Developer Trainee interview -

  1. WHAT IS SEALED CLASS AND WHAT IS EXTENSION METH...read more
  2. DIFFERENCE BETWEEN ABSTRACT AND INTERFA...read more
  3. DIFFERENCE BETWEEN SESSION AND APPLICATI...read more

Tell us how to improve this page.

MothersonSumi INfotech & Designs Junior Developer Trainee Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

ITC Infotech Interview Questions
3.6
 • 342 Interviews
CitiusTech Interview Questions
3.3
 • 278 Interviews
NeoSOFT Interview Questions
3.6
 • 268 Interviews
Tiger Analytics Interview Questions
3.7
 • 227 Interviews
Altimetrik Interview Questions
3.8
 • 223 Interviews
Episource Interview Questions
3.9
 • 221 Interviews
Indium Software Interview Questions
4.1
 • 187 Interviews
Xoriant Interview Questions
4.1
 • 184 Interviews
View all
Software Engineer
538 salaries
unlock blur

₹2.4 L/yr - ₹9.1 L/yr

Senior Software Engineer
380 salaries
unlock blur

₹5.4 L/yr - ₹18.7 L/yr

Module Lead
130 salaries
unlock blur

₹8.8 L/yr - ₹29 L/yr

Project Lead
94 salaries
unlock blur

₹10.4 L/yr - ₹27 L/yr

Technology Specialist
74 salaries
unlock blur

₹5.4 L/yr - ₹21 L/yr

Explore more salaries
Compare MothersonSumi INfotech & Designs with

ITC Infotech

3.6
Compare

CMS IT Services

3.1
Compare

KocharTech

3.9
Compare

Xoriant

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