Upload Button Icon Add office photos
Engaged Employer

i

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

GadgEon Verified Tick

Compare button icon Compare button icon Compare
4.3

based on 85 Reviews

Filter interviews by

GadgEon Senior Software Engineer Interview Questions and Answers for Experienced

Updated 5 Aug 2024

GadgEon Senior Software Engineer Interview Experiences for Experienced

2 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. About the projects worked on?
  • Q2. Angular questions
Round 2 - HR 

(2 Questions)

  • Q1. Salary revision
  • Q2. Joining dates and notice periods

Interview Questionnaire 

1 Question

  • Q1. Angular and node questions, covered almost every topics

Senior Software Engineer Interview Questions Asked at Other Companies for Experienced

Q1. Duplicate In ArrayYou are given an array ‘ARR’ of size ‘N’ contai ... read more
Q2. Anagram PairsPre-requisites: Anagrams are defined as words or nam ... read more
asked in Visa
Q3. Given a grid containing 0s and 1s and source row and column, in h ... read more
asked in Capgemini
Q4. Kth Largest NumberYou will be given a stream of numbers, and you ... read more
asked in Mphasis
Q5. Trapping Rain Water You have been given a long type array/list 'A ... read more

Senior Software Engineer Jobs at GadgEon

View all

Interview questions from similar companies

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

(1 Question)

  • Q1. Straight forward JS based theoretical questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What are Promises
  • Ans. 

    Promises are objects representing the eventual completion or failure of an asynchronous operation.

    • Promises are used in JavaScript to handle asynchronous operations.

    • They can be in one of three states: pending, fulfilled, or rejected.

    • Promises can be chained using .then() to handle success and .catch() to handle errors.

    • Example: Fetching data from an API returns a Promise that resolves with the data or rejects with an erro

  • Answered by AI
  • Q2. Is Node.js Single Threaded or Multiple Threaded
  • Ans. 

    Node.js is single threaded, but uses multiple threads for I/O operations.

    • Node.js uses a single thread to handle all JavaScript code execution.

    • It uses multiple threads from a thread pool to handle I/O operations asynchronously.

    • This allows Node.js to handle high concurrency without blocking the main thread.

    • Example: When reading a file, Node.js will use a separate thread from the pool to perform the I/O operation.

  • Answered by AI
Round 2 - Coding Test 

Reverse the Array of Strings

Interview Preparation Tips

Interview preparation tips for other job seekers - Good Place to work

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain Complete Framework used in your organisation
  • Ans. 

    Our organization uses a comprehensive framework that includes multiple technologies and tools for software development.

    • Our framework includes front-end technologies like React and Angular for building user interfaces.

    • For back-end development, we use Node.js and Spring Boot to create robust server-side applications.

    • We also utilize databases such as MySQL and MongoDB for data storage and retrieval.

    • Continuous integration ...

  • Answered by AI
  • Q2. Programm for reverse string,Complete core java concept with implementation in framework

Interview Questionnaire 

15 Questions

  • Q1. What is entity framework.
  • Ans. 

    Entity Framework is an Object-Relational Mapping (ORM) framework that enables developers to work with relational databases using .NET objects.

    • EF is a tool for creating data access layer in .NET applications

    • It allows developers to work with databases using C# or VB.NET code instead of SQL

    • EF supports LINQ queries and provides automatic change tracking

    • EF can generate database schema from code-first approach

    • EF can also gen...

  • Answered by AI
  • Q2. What is dependency injection
  • Ans. 

    Dependency injection is a design pattern used to remove hard-coded dependencies and make code more modular and testable.

    • Dependencies are injected into a class rather than being hard-coded

    • This allows for easier testing and swapping of dependencies

    • Commonly used in frameworks like Spring and Angular

  • Answered by AI
  • Q3. Oops depth level question
  • Q4. Whatvis generics and collection
  • Ans. 

    Generics and collections are fundamental concepts in Java programming.

    • Generics allow for type safety and reusability of code.

    • Collections are data structures that store and manipulate groups of objects.

    • Examples of collections include ArrayList, LinkedList, and HashMap.

    • Generics can be used with collections to ensure type safety.

    • Collections provide methods for adding, removing, and accessing elements.

  • Answered by AI
  • Q5. What is sql injection
  • Ans. 

    SQL injection is a type of cyber attack where malicious SQL statements are inserted into an entry field to manipulate the database.

    • SQL injection attacks exploit vulnerabilities in web applications that do not properly validate user input.

    • Attackers can use SQL injection to steal sensitive data, modify or delete data, or even take control of the entire database.

    • Preventing SQL injection involves using parameterized querie...

  • Answered by AI
  • Q6. How to handle security in rest api
  • Ans. 

    Security in REST API can be handled by implementing authentication, authorization, encryption, and input validation.

    • Implement authentication using tokens or OAuth2

    • Implement authorization by defining roles and permissions

    • Encrypt sensitive data using SSL/TLS

    • Validate input data to prevent injection attacks

    • Implement rate limiting to prevent DDoS attacks

  • Answered by AI
  • Q7. What is soap. And what us differences between rest and soap
  • Ans. 

    SOAP is a protocol for exchanging structured information in the implementation of web services. REST is an architectural style for building web services.

    • SOAP stands for Simple Object Access Protocol

    • SOAP uses XML for message exchange

    • SOAP requires more bandwidth and processing power than REST

    • REST uses HTTP for communication

    • REST is more flexible and scalable than SOAP

    • RESTful APIs are easier to implement and maintain than

  • Answered by AI
  • Q8. How ro get table data in store procedures
  • Ans. 

    Table data can be retrieved in store procedures using SELECT statement.

    • Use SELECT statement to retrieve data from table in store procedures.

    • Specify the table name and columns to retrieve data from.

    • Use WHERE clause to filter data based on conditions.

    • Use ORDER BY clause to sort data based on column values.

  • Answered by AI
  • Q9. What is index in table
  • Ans. 

    An index in a table is a data structure that improves the speed of data retrieval operations.

    • Indexes are created on one or more columns of a table.

    • They allow for faster searching and sorting of data.

    • Indexes can be unique or non-unique.

    • Examples of indexes include primary keys, foreign keys, and clustered indexes.

  • Answered by AI
  • Q10. What happen if add index on all column in table
  • Ans. 

    Adding index on all columns in a table can slow down write operations and increase storage space.

    • Adding index on all columns can increase the storage space required for the table.

    • It can also slow down write operations as the index needs to be updated for every write operation.

    • It may improve read performance for queries that use all columns in the table.

    • It is generally not recommended to add index on all columns in a ta

  • Answered by AI
  • Q11. What is trigger
  • Ans. 

    A trigger is a piece of code that automatically executes in response to a specific event or change in a system.

    • Triggers are commonly used in databases to automatically perform actions when certain data is inserted, updated, or deleted.

    • Triggers can be used to enforce business rules, validate data, or perform complex calculations.

    • Examples of triggers include sending an email notification when a new record is added to a d...

  • Answered by AI
  • Q12. Difference between sp and function
  • Ans. 

    Stored procedures are precompiled and can return multiple result sets, while functions are not precompiled and can only return a single value.

    • Stored procedures are used to perform a set of operations and can return multiple result sets.

    • Functions are used to perform a single operation and can only return a single value.

    • Stored procedures are precompiled and stored in the database, while functions are compiled at runtime.

    • ...

  • Answered by AI
  • Q13. Mvc life cycle
  • Q14. What is action filter
  • Ans. 

    Action filter is a feature in ASP.NET MVC that allows you to execute code before or after an action method is executed.

    • Action filters are attributes that can be applied to controller actions or globally to all actions in the application.

    • They can be used for authentication, caching, logging, exception handling, and more.

    • Examples of action filters include AuthorizeAttribute, OutputCacheAttribute, HandleErrorAttribute, an

  • Answered by AI
  • Q15. Sequence of filters
  • Ans. 

    Sequence of filters in software development

    • Define the problem and requirements

    • Choose appropriate filters based on the problem

    • Implement and test the filters in sequence

    • Refine and optimize the filters as needed

  • Answered by AI

Skills evaluated in this interview

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

Round 1 - Technical 

(1 Question)

  • Q1. Print star and some basic java
Round 2 - One-on-one 

(1 Question)

  • Q1. Mostly about your previous experience
Round 3 - One-on-one 

(1 Question)

  • Q1. Same nothing fancy.............
Round 4 - HR 

(1 Question)

  • Q1. They will judge your attitude

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join. Bad management. Join if have experience in service based company

I applied via Naukri.com and was interviewed before Apr 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I applied for Salesforce Technologies and questions were asked around Profile, Sharing Settings, Sharing Rules, Workflow, Process Builder, Flows. From Development part a trigger was asked to be written an...

Interview Preparation Tips

Interview preparation tips for other job seekers - Majorly there will be 3 rounds. 2 Technical Round, 1 Managerial Round.

For the 2 Technical Round prepare well on whatever your resume says also the most basic questions are asked.

Managerial Round depends on your Experience if you applied for Senior position then what kind of work you have done and questions will be scenario based. Ex: If you had worked on financial domain project question will be on that.
And if you are not that much experienced then Aptitude questions will be asked to check your problem solving skills.
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. How Jenkins is working?
  • Ans. 

    Jenkins is a popular open-source automation server used for continuous integration and continuous delivery of software.

    • Jenkins automates the building, testing, and deployment of software projects.

    • It integrates with version control systems like Git to trigger builds when code changes are pushed.

    • Jenkins pipelines allow for defining complex build and deployment workflows as code.

    • Plugins extend Jenkins functionality, enabl...

  • Answered by AI
  • Q2. What is kubernetes?
  • Ans. 

    Kubernetes is an open-source container orchestration platform for automating deployment, scaling, and management of containerized applications.

    • Kubernetes helps in automating the deployment, scaling, and management of containerized applications.

    • It provides features like self-healing, load balancing, storage orchestration, and automated rollouts and rollbacks.

    • Kubernetes allows for declarative configuration, making it eas...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't go with the company?

Skills evaluated in this interview

I applied via Referral and was interviewed before Sep 2021. There were 5 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 

(1 Question)

  • Q1. All about angular basic and deep questioning
Round 3 - Technical 

(1 Question)

  • Q1. Basic routing and SPA
Round 4 - Behavioral 

(1 Question)

  • Q1. Detail qbout angular and node js
  • Ans. 

    Angular is a front-end framework while Node.js is a back-end runtime environment.

    • Angular is used for building dynamic web applications with a focus on the client-side.

    • Node.js is used for building server-side applications with JavaScript.

    • Angular uses TypeScript for building applications while Node.js uses JavaScript.

    • Angular has a large community and a lot of pre-built components while Node.js has a vast library of modul...

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Salary discussion as per interview

Interview Preparation Tips

Topics to prepare for Winjit Technologies Senior Software Engineer interview:
  • OOPS
  • Angular
  • HTML
  • CSS
  • Javascript
Interview preparation tips for other job seekers - Be calmly to take the interview. Preapare at least basic things to attend the interview.

Skills evaluated in this interview

GadgEon Interview FAQs

How many rounds are there in GadgEon Senior Software Engineer interview for experienced candidates?
GadgEon interview process for experienced candidates usually has 2 rounds. The most common rounds in the GadgEon interview process for experienced candidates are One-on-one Round and HR.
How to prepare for GadgEon Senior Software Engineer interview for experienced candidates?
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 GadgEon. The most common topics and skills that interviewers at GadgEon expect are C++, Python, .Net, Azure and C#.
What are the top questions asked in GadgEon Senior Software Engineer interview for experienced candidates?

Some of the top questions asked at the GadgEon Senior Software Engineer interview for experienced candidates -

  1. Angular and node questions, covered almost every top...read more
  2. angular questi...read more

Tell us how to improve this page.

GadgEon Senior Software Engineer Salary
based on 153 salaries
₹4.5 L/yr - ₹18.3 L/yr
27% less than the average Senior Software Engineer Salary in India
View more details

GadgEon Senior Software Engineer Reviews and Ratings

based on 16 reviews

4.2/5

Rating in categories

3.9

Skill development

4.3

Work-life balance

4.0

Salary

4.3

Job security

4.0

Company culture

3.5

Promotions

3.8

Work satisfaction

Explore 16 Reviews and Ratings
Senior Software Engineer
153 salaries
unlock blur

₹4.5 L/yr - ₹18.3 L/yr

Software Engineer
120 salaries
unlock blur

₹3 L/yr - ₹10.3 L/yr

Technical Lead
61 salaries
unlock blur

₹8.4 L/yr - ₹25 L/yr

Senior Test Engineer
33 salaries
unlock blur

₹5.2 L/yr - ₹13.8 L/yr

Software Developer
30 salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Explore more salaries
Compare GadgEon with

Infosys

3.7
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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