Upload Button Icon Add office photos

Reflections Info Systems

Compare button icon Compare button icon Compare

Filter interviews by

Reflections Info Systems Interview Questions, Process, and Tips

Updated 18 Mar 2025

Top Reflections Info Systems Interview Questions and Answers

View all 36 questions

Reflections Info Systems Interview Experiences

Popular Designations

13 interviews found

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

I applied via Referral and was interviewed before Jul 2022. There were 4 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 - Aptitude Test 

45 minutes. Difficulty level - medium

Round 3 - Technical 

(3 Questions)

  • Q1. Describe academic projects
  • Ans. 

    Developed a web-based student management system using Java and MySQL

    • Implemented user authentication and authorization functionalities

    • Designed database schema to store student information

    • Utilized Java Servlets for server-side logic

    • Used HTML, CSS, and JavaScript for front-end development

  • Answered by AI
  • Q2. Describe Oops concepts
  • Ans. 

    Oops concepts refer to Object-Oriented Programming principles such as Inheritance, Encapsulation, Polymorphism, and Abstraction.

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

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

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

    • Abstraction: Hiding the complex implementation det

  • Answered by AI
  • Q3. Basic programming questions
Round 4 - HR 

(1 Question)

  • Q1. Self introduction, Positives and negatives, Reason for break,...

Software Engineer Trainee Interview Questions asked at other Companies

Q1. Palindromic Linked List Problem Statement Given a singly linked list of integers, determine if it is a palindrome. Return true if it is a palindrome, otherwise return false. Example: Input: 1 -> 2 -> 3 -> 2 -> 1 -> NULL Outpu... read more
View answer (1)
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?
  • 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

Top Reflections Info Systems Php Full Stack Developer Interview Questions and Answers

Q1. 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 ?
View answer (1)

Php Full Stack Developer Interview Questions asked at other Companies

Q1. 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 ?
View answer (1)

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.
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?
  • Q2. How to perform root cause analysis?
  • 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

Site Reliability Engineer Interview Questions asked at other Companies

Q1. what is diff cloud formation vs terraform, release management like blue green etc.
View answer (1)

Reflections Info Systems interview questions for popular designations

 Software Engineer

 (3)

 Technical Lead

 (1)

 Php Full Stack Developer

 (1)

 Software Engineer Trainee

 (1)

 Node JS Developer

 (1)

 Senior Delivery Manager

 (1)

 Data Analyst

 (1)

 Site Reliability Engineer

 (1)

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.

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (225)

Get interview-ready with Top Reflections Info Systems Interview Questions

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

QA Trainee Interview Questions asked at other Companies

Q1. What is regression testing, smoke testing,unit testing?
View answer (1)

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

Data Analyst Interview Questions asked at other Companies

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)
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

Node JS Developer Interview Questions asked at other Companies

Q1. 2. What are the main modules of Node.js? Explain in detail.
View answer (3)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. DSA write code, quick sort, palindrome

Technical Lead Interview Questions asked at other Companies

Q1. 1. Explain 5 mins the flow from requirement analysis to production deployment and tools used in the process. 2. What is auto-scaling in a microservices architecture? 3. Difference between micro-service and serverless. 4. If you were going t... read more
View answer (4)
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

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (225)

Senior Delivery Manager Interview Questions & Answers

user image Abhijeet Kulkarni

posted on 22 Oct 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 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 

(2 Questions)

  • Q1. Explain exiating project
  • Ans. 

    The existing project is a software development initiative aimed at creating a new customer relationship management system for a large retail company.

    • The project involves gathering requirements from stakeholders

    • Designing the system architecture

    • Developing the software

    • Testing and quality assurance

    • Deployment and ongoing support

    • Regular status updates and communication with stakeholders

  • Answered by AI
  • Q2. How to execute project in an agile mode if its fixed price
  • Ans. 

    Execute project in agile mode with fixed price by prioritizing features, collaborating closely with stakeholders, and adjusting scope as needed.

    • Prioritize features based on value to the customer

    • Collaborate closely with stakeholders to ensure alignment on project goals and priorities

    • Adjust scope as needed to deliver the most valuable features within the fixed price

    • Use iterative development and frequent feedback to make

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be genuine.

Skills evaluated in this interview

Senior Delivery Manager Interview Questions asked at other Companies

Q1. What are the different type of projects we support like FTFP, TnM etc
View answer (1)

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, Javascript, Python, 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. Common #1 - What if an issue arise on a "Production" server that we can't trou...read more
  2. Laravel #3 - How to write a custom authentication & middlewa...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.

Reflections Info Systems Interview Process

based on 14 interviews

Interview experience

3.6
  
Good
View more

Interview Questions from Similar Companies

Webdew Interview Questions
4.4
 • 106 Interviews
HyScaler Interview Questions
4.5
 • 92 Interviews
Quantsapp Interview Questions
2.8
 • 35 Interviews
Appsierra Interview Questions
4.4
 • 32 Interviews
View all

Reflections Info Systems Reviews and Ratings

based on 66 reviews

3.7/5

Rating in categories

3.8

Skill development

3.8

Work-life balance

3.4

Salary

3.1

Job security

3.8

Company culture

3.2

Promotions

3.5

Work satisfaction

Explore 66 Reviews and Ratings
Senior Software Engineer
47 salaries
unlock blur

₹4.4 L/yr - ₹13.2 L/yr

Software Engineer
40 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

Accel Frontline

4.0
Compare

Northcorp Software

4.3
Compare

Elentec Power India (EPI) Pvt. Ltd.

3.7
Compare

HyScaler

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