Upload Button Icon Add office photos
Engaged Employer

i

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

Reflections Info Systems Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Reflections Info Systems Interview Questions and Answers

Updated 19 Jun 2025
Popular Designations

42 Interview questions

A Senior System Analyst was asked 1w ago
Q. What techniques are used to optimize system performance?
Ans. 

Techniques to optimize system performance include resource management, caching, load balancing, and code optimization.

  • Resource Management: Efficiently allocate CPU, memory, and storage to prevent bottlenecks.

  • Caching: Store frequently accessed data in memory to reduce retrieval time (e.g., using Redis).

  • Load Balancing: Distribute workloads across multiple servers to enhance responsiveness and availability.

  • Code Optim...

View all Senior System Analyst interview questions
A Senior Specialist was asked 1mo ago
Q. Briefly explain your design style.
Ans. 

My design style focuses on user-centric solutions, blending functionality with aesthetics to create intuitive experiences.

  • User-Centric Approach: I prioritize the needs and preferences of users, ensuring that designs are intuitive and accessible. For example, I conduct user research to inform design decisions.

  • Minimalism: I believe in the power of simplicity, using clean lines and ample white space to enhance usabil...

View all Senior Specialist interview questions
A Senior Specialist was asked 1mo ago
Q. What tools do you use most often?
Ans. 

I utilize various tools for development, project management, and collaboration to enhance productivity and streamline workflows.

  • Version Control: I primarily use Git for version control, allowing me to track changes, collaborate with team members, and manage code repositories effectively.

  • Integrated Development Environments (IDEs): Tools like IntelliJ IDEA and Visual Studio Code help me write, debug, and test code e...

View all Senior Specialist interview questions
A Site Reliability Engineer was asked 3mo ago
Q. How do you perform root cause analysis?
Ans. 

Root cause analysis identifies the underlying reasons for incidents to prevent recurrence and improve system reliability.

  • Define the problem clearly: For example, if a service is down, specify the affected components and the impact on users.

  • Gather data: Collect logs, metrics, and user reports related to the incident to understand the context.

  • Identify contributing factors: Use techniques like the '5 Whys' to drill d...

View all Site Reliability Engineer interview questions
A Site Reliability Engineer was asked 3mo ago
Q. What is an SLA, SLO, and SLI?
Ans. 

SLA, SLO, and SLI are key metrics in service reliability, defining agreements and performance indicators for services.

  • SLA (Service Level Agreement): A formal contract between a service provider and a customer outlining expected service levels.

  • Example of SLA: '99.9% uptime guarantee for a web hosting service.'

  • SLO (Service Level Objective): A specific target within an SLA that defines the desired level of service pe...

View all Site Reliability Engineer interview questions
A Php Full Stack Developer was asked 7mo ago
Q. In Laravel, how would you efficiently fetch 5 million records from 3 tables within a single database?
Ans. 

Use Laravel's Eloquent ORM with chunking and eager loading for optimized fetching of 5 million records from 3 tables in a single DB.

  • Use Laravel's Eloquent ORM to fetch records efficiently

  • Use chunking to process large datasets in smaller, manageable chunks

  • Utilize eager loading to reduce the number of queries executed

View all Php Full Stack Developer interview questions
A Php Full Stack Developer was asked 7mo ago
Q. What if an issue arises on a production server that we can't troubleshoot in staging or local environments? How would you fix that issue?
Ans. 

In such cases, it is important to analyze the issue thoroughly on the production server and implement a fix cautiously.

  • First, analyze the logs and error messages on the production server to understand the root cause of the issue.

  • Check for any recent changes or updates that might have caused the problem.

  • If possible, try to replicate the issue in a controlled environment like staging or local to further investigate.

  • ...

View all Php Full Stack Developer interview questions
Are these interview questions helpful?
A Php Full Stack Developer was asked 7mo ago
Q. How do you write custom authentication and middleware in Laravel?
Ans. 

To write a custom authentication & middleware in Laravel, you can create a custom guard and middleware classes.

  • Create a custom guard by extending the 'Illuminate\Auth\Guard' class and implementing the necessary methods like 'validate' and 'user'.

  • Register the custom guard in the 'auth.php' configuration file.

  • Create a custom middleware by extending the 'Illuminate\Auth\Middleware\Authenticate' class and implementing...

View all Php Full Stack Developer interview questions
A Php Full Stack Developer was asked 7mo ago
Q. How do you write a unit test in Laravel?
Ans. 

To write a unit test in Laravel #8, use PHPUnit and create test classes that extend the TestCase class.

  • Create a new test class in the 'tests' directory.

  • Extend the class with PHPUnit's TestCase class.

  • Write test methods within the class to test specific functionality.

  • Use assertions provided by PHPUnit to check if the code behaves as expected.

  • Run the tests using the 'php artisan test' command.

View all Php Full Stack Developer interview questions
A Php Full Stack Developer was asked 7mo ago
Q. What is the difference between Sessions and Cookies in Laravel?
Ans. 

Sessions store data on the server side, while cookies store data on the client side.

  • Sessions store data on the server side, while cookies store data on the client side.

  • Sessions are more secure as the data is stored on the server and not accessible by the client.

  • Cookies are limited in size (4KB) and can be disabled by the client, while sessions have no such limitations.

View all Php Full Stack Developer interview questions

Reflections Info Systems Interview Experiences

16 interviews found

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

I applied via Naukri.com and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Coding Test 

I was assigned to implement basic CRUD operation in an API (the code should be production-ready). I was also instructed to perform Unit tests.

Round 2 - Technical 

(22 Questions)

  • Q1. Laravel #1 - Why we use "composer.lock" file?
  • Ans. 

    The composer.lock file is used to lock the exact versions of dependencies in a project to ensure consistent builds.

    • Prevents different versions of dependencies from being installed on different machines

    • Ensures that all developers are using the same versions of dependencies

    • Helps in maintaining consistency and stability of the project

  • Answered by AI
  • Q2. Laravel #2 - When deleting a package from Vendor folder, will the application works?
  • Ans. 

    Deleting a package from the Vendor folder can break the application if that package is required for functionality.

    • Laravel uses Composer to manage dependencies, which are stored in the Vendor folder.

    • If a package is deleted that is required by your application, you may encounter errors or missing functionality.

    • For example, if you delete a package like 'guzzlehttp/guzzle' and your application makes HTTP requests using it,...

  • Answered by AI
  • Q3. Laravel #3 - How to write a custom authentication & middleware?
  • Ans. 

    To write a custom authentication & middleware in Laravel, you can create a custom guard and middleware classes.

    • Create a custom guard by extending the 'Illuminate\Auth\Guard' class and implementing the necessary methods like 'validate' and 'user'.

    • Register the custom guard in the 'auth.php' configuration file.

    • Create a custom middleware by extending the 'Illuminate\Auth\Middleware\Authenticate' class and implementing the ...

  • Answered by AI
  • Q4. Laravel #4 - How to handle custom request with Validations?
  • Ans. 

    Custom requests with validations in Laravel can be handled using Form Requests.

    • Create a new Form Request using artisan command: php artisan make:request CustomRequest

    • Define validation rules in the authorize() and rules() methods of the CustomRequest class

    • Inject the CustomRequest class into your controller method to automatically validate the incoming request

  • Answered by AI
  • Q5. Laravel #5 - Explain Polymorphism in relationship?
  • Ans. 

    Polymorphism in Laravel relationships allows a model to belong to multiple other models.

    • Polymorphic relationships allow a model to belong to multiple other models.

    • It is useful when a model can belong to more than one other model.

    • For example, a Comment model can belong to either a Post or a Video model.

  • Answered by AI
  • Q6. Laravel #6 - What is a Relationship?
  • Q7. Laravel #7 - How to fetch 5 million records from 3 tables from a single DB in optimized way?
  • Ans. 

    Use Laravel's Eloquent ORM with chunking and eager loading for optimized fetching of 5 million records from 3 tables in a single DB.

    • Use Laravel's Eloquent ORM to fetch records efficiently

    • Use chunking to process large datasets in smaller, manageable chunks

    • Utilize eager loading to reduce the number of queries executed

  • Answered by AI
  • Q8. Laravel #8 - How to write a Unit test?
  • Ans. 

    To write a unit test in Laravel #8, use PHPUnit and create test classes that extend the TestCase class.

    • Create a new test class in the 'tests' directory.

    • Extend the class with PHPUnit's TestCase class.

    • Write test methods within the class to test specific functionality.

    • Use assertions provided by PHPUnit to check if the code behaves as expected.

    • Run the tests using the 'php artisan test' command.

  • Answered by AI
  • Q9. Laravel #9 - How to rollback for specific version in Migration ?
  • Ans. 

    Use the migrate:rollback command with --step option to rollback to a specific version in Laravel migration.

    • Use php artisan migrate:rollback --step=n command to rollback n number of migrations.

    • Specify the number of migrations to rollback to a specific version.

    • For example, php artisan migrate:rollback --step=3 will rollback the last 3 migrations.

  • Answered by AI
  • Q10. Laravel #10 - Difference between Session & Cookies ?
  • Ans. 

    Sessions store data on the server side, while cookies store data on the client side.

    • Sessions store data on the server side, while cookies store data on the client side.

    • Sessions are more secure as the data is stored on the server and not accessible by the client.

    • Cookies are limited in size (4KB) and can be disabled by the client, while sessions have no such limitations.

  • Answered by AI
  • Q11. Laravel #11 - How Laravel finds a specific session for each user?
  • Ans. 

    Laravel uses a unique session identifier to find a specific session for each user.

    • Laravel generates a unique session ID for each user upon login

    • The session ID is stored in a cookie on the user's browser

    • Laravel uses the session ID to retrieve the user's session data from the server

  • Answered by AI
  • Q12. Laravel #12 - Laravel Notifications, Different types of Mailers ?
  • Ans. 

    Laravel Notifications allow you to send notifications across multiple channels. Different types of mailers in Laravel include SMTP, Mailgun, and Sendmail.

    • Laravel Notifications can be sent through email, SMS, Slack, and more

    • SMTP mailer is commonly used for sending emails in Laravel

    • Mailgun is a popular mailer service that can be integrated with Laravel for sending emails

    • Sendmail is another option for sending emails in La...

  • Answered by AI
  • Q13. Laravel #13 - How to send Asynchronous notification?
  • Ans. 

    To send asynchronous notifications in Laravel, use queues to handle background processing.

    • Use Laravel's built-in queue system to send notifications asynchronously.

    • Define a notification class and use the ShouldQueue interface to indicate that the notification should be sent asynchronously.

    • Dispatch the notification using the queue driver of your choice (e.g. database, Redis, Amazon SQS).

  • Answered by AI
  • Q14. Laravel #14 - How Queue works ?
  • Ans. 

    Laravel Queue is a feature that allows you to delay the execution of a time-consuming task, improving application performance.

    • Queues help in offloading time-consuming tasks to be processed in the background

    • Tasks are added to the queue and processed by workers asynchronously

    • Laravel provides drivers like Redis, Beanstalkd, and Amazon SQS for queue management

  • Answered by AI
  • Q15. Laravel #15 - How to Upgrade ?
  • Ans. 

    To upgrade Laravel, you need to follow the official documentation and use Composer to update dependencies.

    • Check the Laravel documentation for the specific version you are upgrading to

    • Update your composer.json file with the new Laravel version

    • Run 'composer update' command in your terminal to update dependencies

    • Check for any deprecated features or changes in the new version and make necessary adjustments

  • Answered by AI
  • Q16. MySQL #1 - Why do we index in DB tables ?
  • Ans. 

    Indexing in DB tables improves query performance by allowing the database to quickly locate specific rows.

    • Indexes help in speeding up data retrieval operations by providing quick access to rows based on the indexed columns.

    • They reduce the number of disk I/O operations required to fetch data, resulting in faster query execution.

    • Indexes can also enforce uniqueness constraints and improve the efficiency of joins between t...

  • Answered by AI
  • Q17. Vue #1 - Why we use the "Key" - directive ?
  • Ans. 

    The 'Key' directive in Vue is used to uniquely identify elements in a list to improve performance and prevent re-rendering.

    • Helps Vue efficiently update the DOM by reusing existing elements instead of creating new ones

    • Prevents unnecessary re-rendering of elements in a list when their order changes

    • Improves performance by allowing Vue to track and update specific elements based on their keys

    • Example:

      Ans. 

      Vue 3 is the latest version of Vue.js with improved performance, new features, and better TypeScript support.

      • Vue 3 uses a new reactivity system called the Composition API, which offers more flexibility and better organization of code compared to Vue 2's Options API.

      • Vue 3 introduces a new compiler that generates optimized code for better performance.

      • Vue 3 provides better TypeScript support with improved type inference a...

    • Answered by AI
  • Q19. Vue #3 - Options API vs Composition API ?
  • Ans. 

    Options API is more verbose and flexible, while Composition API is more organized and reusable.

    • Options API allows defining component options in separate sections like data, methods, computed, etc.

    • Composition API allows organizing code based on logic and reusability with setup() function.

    • Options API is suitable for smaller projects or when starting with Vue, while Composition API is recommended for larger projects or co...

  • Answered by AI
  • Q20. Vue #4 - How to use "env"?
  • Ans. 

    The 'env' function in Vue is used to access environment variables in your application.

    • Use process.env to access environment variables in Vue components

    • Environment variables can be set in a .env file at the root of your project

    • Remember to restart your development server after adding or changing environment variables

  • Answered by AI
  • Q21. Vue #5 - Why we using "Scope" in style?
  • Ans. 

    Using 'Scope' in style allows us to apply styles to specific elements within a component.

    • Scope in style allows us to target specific elements within a component without affecting others

    • It helps in organizing and managing styles more efficiently

    • Scope can be used to prevent styles from leaking out of a component

  • Answered by AI
  • Q22. Common #1 - What if an issue arise on a "Production" server that we can't troubleshoot in "Staging" or "Local", So how to fix that issue ?
  • Ans. 

    In such cases, it is important to analyze the issue thoroughly on the production server and implement a fix cautiously.

    • First, analyze the logs and error messages on the production server to understand the root cause of the issue.

    • Check for any recent changes or updates that might have caused the problem.

    • If possible, try to replicate the issue in a controlled environment like staging or local to further investigate.

    • Consu...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Reflections Info Systems Php Full Stack Developer interview:
  • Laravel
  • Vue
  • PHP
  • MySQL
  • Javascript

Skills evaluated in this interview

Interview Questions & Answers

user image Anonymous

posted on 2 Mar 2025

Interview experience
1
Bad
Difficulty level
-
Process Duration
More than 8 weeks
Result
Not Selected

I appeared for an interview in Feb 2025.

Round 1 - One-on-one 

(1 Question)

  • Q1. Surely it was not in the area I had worked. They were just trying to mould my thoughts as per their needs

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing to talk much here. It was waste of attending. No clarity about expectations and no idea of roles and responsibilities. They had taken my feedback from previous organizations and were trying to match me with those feedbacks. God knows who had given the feedback. No industry standards, JD is a must to as per industry standards.

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 19 Jun 2025

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

I appeared for an interview in Dec 2024, where I was asked the following questions.

  • Q1. Can you describe a challenging data engineering project you worked on and how you handled it?
  • Q2. Where do you see yourself in 5 years?
  • Ans. 

    In five years, I envision myself as a lead data engineer, driving innovative projects and mentoring junior engineers.

    • Leading a team of data engineers on large-scale projects, such as building a real-time data pipeline for analytics.

    • Contributing to open-source data engineering tools and frameworks to enhance community collaboration.

    • Pursuing advanced certifications in cloud technologies and big data to stay ahead in the ...

  • Answered by AI
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Aug 2024.

Round 1 - Aptitude Test 

I have an aptitude test.

Round 2 - Coding Test 

Coding with the fundamentals of Java.

Interview Preparation Tips

Interview preparation tips for other job seekers - For beginners, this company is often regarded as the best, yet it has several drawbacks, including layoffs, inadequate salary compensation, a shortage of projects, and HR requesting resignations without sufficient explanations. While they do provide training, projects are assigned without our consent and there is a lack of proper project management. Additionally, some seniors may raise their voices at us. Employees frequently work 12-hour shifts with no changes in designation or promotion, and salary levels remain very low.

QA Trainee Interview Questions & Answers

user image Anonymous

posted on 27 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Level was moderate to difficult

Round 2 - Technical 

(1 Question)

  • Q1. Manual testing detailed theory questions where asked
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I appeared for an interview in Sep 2024, where I was asked the following questions.

  • Q1. 1. What is an SLA, SLO, SLI?
  • Ans. 

    SLA, SLO, and SLI are key metrics in service reliability, defining agreements and performance indicators for services.

    • SLA (Service Level Agreement): A formal contract between a service provider and a customer outlining expected service levels.

    • Example of SLA: '99.9% uptime guarantee for a web hosting service.'

    • SLO (Service Level Objective): A specific target within an SLA that defines the desired level of service perform...

  • Answered by AI
  • Q2. How to perform root cause analysis?
  • Ans. 

    Root cause analysis identifies the underlying reasons for incidents to prevent recurrence and improve system reliability.

    • Define the problem clearly: For example, if a service is down, specify the affected components and the impact on users.

    • Gather data: Collect logs, metrics, and user reports related to the incident to understand the context.

    • Identify contributing factors: Use techniques like the '5 Whys' to drill down i...

  • Answered by AI
  • Q3. How do you manage incidents? what procedures do you follow?
  • Q4. More on Fundamentals of Site Reliability Engineering

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong on your fundamentals of Site Reliability Engineering

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 3 Jul 2024

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

I applied via Job Portal and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Left join question
  • Q2. Power BI questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is inheritance
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Inheritance allows a class to reuse code from another class, promoting code reusability and reducing redundancy.

    • The class that is being inherited from is called the parent class or superclass, while the class that inherits is called the child class or subclass.

    • Child classes can add new properties a...

  • Answered by AI
  • Q2. Callback and event coding
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. DSA write code, quick sort, palindrome
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Indeed and was interviewed before Nov 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude questions for competitive exams for a duration of 1 hour.

Round 2 - HR 

(2 Questions)

  • Q1. Self introduction and career goals
  • Q2. Being empathetic to fellow employees
Round 3 - One-on-one 

(2 Questions)

  • Q1. Knowledge on technologies related to the skill set
  • Q2. Latest trends in technologies
  • Ans. 

    Some latest trends in technologies include artificial intelligence, machine learning, blockchain, Internet of Things (IoT), and edge computing.

    • Artificial intelligence (AI) is being used in various industries for automation and decision-making processes.

    • Machine learning algorithms are becoming more advanced and are being used for predictive analytics and data processing.

    • Blockchain technology is being implemented in area...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. What has been your experience with architectural designs?
  • Ans. 

    I have extensive experience in architectural designs, focusing on scalable, maintainable, and efficient system architectures.

    • Led the design of a microservices architecture for an e-commerce platform, improving scalability and deployment speed.

    • Implemented a layered architecture in a healthcare application, enhancing maintainability and separation of concerns.

    • Utilized design patterns like MVC and Singleton to optimize sy...

  • Answered by AI
  • Q2. What techniques are used to optimize system performance?
  • Ans. 

    Techniques to optimize system performance include resource management, caching, load balancing, and code optimization.

    • Resource Management: Efficiently allocate CPU, memory, and storage to prevent bottlenecks.

    • Caching: Store frequently accessed data in memory to reduce retrieval time (e.g., using Redis).

    • Load Balancing: Distribute workloads across multiple servers to enhance responsiveness and availability.

    • Code Optimizati...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Reflections is the ideal place to consider if you are seeking a job change.

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Reflections Info Systems?
Ask anonymously on communities.

Reflections Info Systems Interview FAQs

How many rounds are there in Reflections Info Systems interview?
Reflections Info Systems interview process usually has 1-2 rounds. The most common rounds in the Reflections Info Systems interview process are Technical, Aptitude Test and HR.
How to prepare for Reflections Info Systems 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 Reflections Info Systems. The most common topics and skills that interviewers at Reflections Info Systems expect are SQL, Python, Javascript, SDLC and RDBMS.
What are the top questions asked in Reflections Info Systems interview?

Some of the top questions asked at the Reflections Info Systems interview -

  1. Then she askd a ques that, i am given with test scenarios and have to do all te...read more
  2. Common #1 - What if an issue arise on a "Production" server that we can't trou...read more
  3. Laravel #7 - How to fetch 5 million records from 3 tables from a single DB in o...read more
How long is the Reflections Info Systems interview process?

The duration of Reflections Info Systems interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.8/5

based on 17 interview experiences

Difficulty level

Easy 8%
Moderate 92%

Duration

Less than 2 weeks 62%
2-4 weeks 38%
View more

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 51 Interviews
IT By Design Interview Questions
3.6
 • 41 Interviews
ConsultAdd Interview Questions
3.6
 • 37 Interviews
View all

Reflections Info Systems Reviews and Ratings

based on 80 reviews

3.9/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

3.6

Salary

3.3

Job security

4.0

Company culture

3.4

Promotions

3.7

Work satisfaction

Explore 80 Reviews and Ratings
Apps & Integration Architect (.Net)

Kochi,

Bangalore / Bengaluru

+1

12-17 Yrs

Not Disclosed

Technical Project Manager

Kochi,

Bangalore / Bengaluru

+1

13-18 Yrs

Not Disclosed

Senior .Net Developer

Kochi,

Bangalore / Bengaluru

+1

7-12 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
47 salaries
unlock blur

₹4.4 L/yr - ₹13.2 L/yr

Software Engineer
35 salaries
unlock blur

₹2.4 L/yr - ₹5.5 L/yr

Data Engineer
13 salaries
unlock blur

₹2 L/yr - ₹5 L/yr

System Analyst
13 salaries
unlock blur

₹5.5 L/yr - ₹13 L/yr

Machine Learning Engineer
11 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Explore more salaries
Compare Reflections Info Systems with

Maxgen Technologies

4.6
Compare

JoulestoWatts Business Solutions

3.0
Compare

Value Point Systems

3.6
Compare

F1 Info Solutions and Services

3.7
Compare
write
Share an Interview