Upload Button Icon Add office photos

Filter interviews by

Gamut InfoSystems Interview Questions and Answers

Updated 24 Sep 2023

Gamut InfoSystems Interview Experiences

Popular Designations

3 interviews found

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

I applied via Referral and was interviewed before Sep 2022. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. What is an ERP solution?
  • Ans. 

    An ERP solution is a software system that integrates various business functions and processes into a single platform.

    • Integrates different departments like finance, HR, sales, etc.

    • Improves efficiency by streamlining processes and data flow

    • Provides real-time data for better decision-making

    • Examples: SAP, Oracle ERP, Microsoft Dynamics

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Please give an introduction of yourself?

Skills evaluated in this interview

Software Tester Interview Questions asked at other Companies

Q1. Which is a best technique to generate automated test report ?
View answer (1)

I applied via Job Portal and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. .net questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good..they will ask technical questions

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)

I applied via Recruitment Consultant and was interviewed in Feb 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic Oops , Basic Angular, Basic SQL, Web API

Interview Preparation Tips

Interview preparation tips for other job seekers - Please brush up basic knowledge

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)

Jobs at Gamut InfoSystems

View all

Interview questions from similar companies

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

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

Round 1 - Coding Test 

DSA based round. Taken by external company. I would say to medium level questions asked.

Round 2 - One-on-one 

(2 Questions)

  • Q1. This was based on LLD.
  • Q2. Why SQL and not NoSQL?
  • Ans. 

    SQL is preferred for structured data, transactions, complex queries, and ACID compliance.

    • SQL is better for structured data and relationships between data.

    • SQL is preferred for transactions and ensuring data integrity.

    • SQL is more suitable for complex queries involving multiple tables.

    • SQL databases provide ACID compliance for data consistency and reliability.

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. Past project experience with a Tech Lead.
  • Ans. 

    Worked on a project with a Tech Lead to develop a new feature for a web application.

    • Collaborated closely with the Tech Lead to define project requirements and timelines

    • Received guidance and mentorship from the Tech Lead on best practices and coding standards

    • Participated in regular code reviews and discussions with the Tech Lead to ensure quality and consistency

    • Implemented feedback and suggestions provided by the Tech L

  • Answered by AI
  • Q2. More into the problems I have solved previously and the working culture discussion.

Interview Preparation Tips

Topics to prepare for Idfy Senior Software Engineer interview:
  • DSA
  • LLD
  • Past project

Skills evaluated in this interview

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

Interview Questionnaire 

7 Questions

  • Q1. 1) What is volatile? 2) What is constant? 3) Can we use volatile and const at a time?4) What is ISR how it works?
  • Ans. 

    Answers to questions related to software engineering concepts.

    • Volatile is a keyword used to indicate that a variable's value can be changed unexpectedly.

    • Constant is a keyword used to indicate that a variable's value cannot be changed once it is assigned.

    • Volatile and const can be used together to indicate that a variable's value cannot be changed and that it may change unexpectedly.

    • ISR stands for Interrupt Service Routi...

  • Answered by AI
  • Q2. What is pointer? Explain dangling pointer, null pointer, void pointer.
  • Ans. 

    A pointer is a variable that stores the memory address of another variable. Dangling, null, and void pointers are types of pointers.

    • Dangling pointer: a pointer that points to a memory location that has been deallocated or freed

    • Null pointer: a pointer that does not point to any memory location

    • Void pointer: a pointer that has no specific data type and can point to any data type

  • Answered by AI
  • Q3. Storage classes explain all the storage classes in c.
  • Ans. 

    Storage classes in C define the scope and lifetime of variables.

    • auto: default storage class for local variables

    • register: stores variables in CPU registers for faster access

    • static: retains value between function calls

    • extern: used to access global variables across multiple files

  • Answered by AI
  • Q4. Compilation stages.
  • Q5. Projects done at previous company with clear explanation.
  • Q6. CAN, SPI, I2C, UART differences.
  • Q7. Explain CAN data frame.
  • Ans. 

    CAN data frame is a message format used in Controller Area Network (CAN) protocol.

    • CAN data frame consists of 7 fields: Start of Frame (SOF), Arbitration ID, Control Bits, Data Length Code (DLC), Data Field, Cyclic Redundancy Check (CRC), and End of Frame (EOF).

    • The Arbitration ID field is used to identify the message priority and the source of the message.

    • The Data Field can contain up to 8 bytes of data.

    • The CRC field is...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just go through whatever things you have kept on your resume. Go through the project. Practice C as much as possible most of the questions will be asked on C programming.

Skills evaluated in this interview

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

Interview Questionnaire 

1 Question

  • Q1. All related to project worked on wlan testing and networking concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall Good.
They gave taken 3 technical and 1hr round

I applied via Naukri.com and was interviewed before Sep 2020. There were 6 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Python program like print day, month and year from current date and fibonacci series
  • Q2. Bluetooth concept basics

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare only program and basic concepts
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Find in rotated sorted array
  • Ans. 

    Search for a target value in a rotated sorted array.

    • Use binary search to find the pivot point where the array is rotated.

    • Determine which half of the array the target value lies in based on the pivot point.

    • Continue binary search in the appropriate half of the array to find the target value.

  • Answered by AI
  • Q2. Design IMDB. how will you manage concurrent ratings
  • Ans. 

    Design IMDB with concurrent ratings management

    • Implement a locking mechanism to ensure only one user can update a rating at a time

    • Use a queue system to handle multiple rating requests in an orderly manner

    • Consider using distributed systems to handle high concurrency levels

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Design vehicle rental system. Api design
  • Ans. 

    Design a vehicle rental system API

    • Create endpoints for listing available vehicles, booking a vehicle, and returning a vehicle

    • Include authentication and authorization mechanisms for users and admins

    • Implement payment gateway integration for processing rental payments

    • Include features like vehicle search, filtering, and reviews/ratings

    • Consider scalability and performance optimizations for handling high traffic

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com

Interview Questionnaire 

1 Question

  • Q1.  What are Option Strict and Option Explicit? What are all the differences between Dispose and Finalize()? What is the difference between System.String and System.StringBuilder classes? What is Delegate? ...
  • Ans. 

    Answers to common interview questions for Software Engineer position

    • Option Strict and Option Explicit are compiler directives in VB.NET

    • Dispose() is used to release unmanaged resources while Finalize() is used for garbage collection

    • System.String is immutable while System.StringBuilder is mutable

    • Delegate is a type that represents a reference to a method

    • Value types store data directly while reference types store a referen...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - selection process-
1st round-online test(prpare all kind of logical, verbal, and .net related questions)
2nd round- technical round(prepare all .net interview questions,sql server questions, winforms, web api)
3rd round- hr discussion

I applied via Campus Placement and was interviewed before May 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Will be given Requirement to write code for Restraunt. Based on that have write code for delivering orders by delivery boys.

Round 2 - Technical 

(1 Question)

  • Q1. OOPS Concepts, Java Basics, Collections, MultiThreading

Interview Preparation Tips

Topics to prepare for LogiNext Solutions Software Engineer interview:
  • Java
  • OOPS
  • MySQL
  • Pattern Programming
Interview preparation tips for other job seekers - Focus on DSA and Logical Programming

Gamut InfoSystems Interview FAQs

How many rounds are there in Gamut InfoSystems interview?
Gamut InfoSystems interview process usually has 3 rounds. The most common rounds in the Gamut InfoSystems interview process are Resume Shortlist, Technical and HR.
How to prepare for Gamut InfoSystems 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 Gamut InfoSystems. The most common topics and skills that interviewers at Gamut InfoSystems expect are ERP Package, Project Delivery, DTD, Project Review and business objects xi.
What are the top questions asked in Gamut InfoSystems interview?

Some of the top questions asked at the Gamut InfoSystems interview -

  1. What is an ERP soluti...read more
  2. Basic Oops , Basic Angular, Basic SQL, Web ...read more
  3. .net questi...read more

Tell us how to improve this page.

Gamut InfoSystems Interview Process

based on 2 interviews

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Idfy Interview Questions
3.6
 • 15 Interviews
KDK Software Interview Questions
3.1
 • 15 Interviews
View all

Gamut InfoSystems Reviews and Ratings

based on 80 reviews

3.6/5

Rating in categories

3.9

Skill development

3.4

Work-life balance

3.5

Salary

3.7

Job security

3.6

Company culture

3.2

Promotions

3.5

Work satisfaction

Explore 80 Reviews and Ratings
Project Manager - ERP Projects

Delhi/Ncr,

Mumbai

7-12 Yrs

₹ 13-23 LPA

Data Analyst - Power BI, Kolkata

Kolkata

3-7 Yrs

Not Disclosed

Support Executive

Kolkata

0-4 Yrs

Not Disclosed

Explore more jobs
Software Engineer
69 salaries
unlock blur

₹3.2 L/yr - ₹8.4 L/yr

Software Developer
21 salaries
unlock blur

₹2.2 L/yr - ₹7 L/yr

Senior Software Engineer
17 salaries
unlock blur

₹4.8 L/yr - ₹12.6 L/yr

ERP Functional Consultant
13 salaries
unlock blur

₹2.9 L/yr - ₹12 L/yr

Associate Software Engineer
12 salaries
unlock blur

₹3.6 L/yr - ₹5 L/yr

Explore more salaries
Compare Gamut InfoSystems with

Global Edge Software

3.5
Compare

Trawex Technologies

4.5
Compare

Moveinsync Technology Solutions

3.4
Compare

Pagarbook

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