Upload Button Icon Add office photos

Reflections Info Systems

Compare button icon Compare button icon Compare

Filter interviews by

Reflections Info Systems Php Full Stack Developer Interview Questions, Process, and Tips

Updated 29 Oct 2024

Reflections Info Systems Php Full Stack Developer Interview Experiences

1 interview 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?
  • 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 from similar companies

I applied via Naukri.com and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. To find if a number is Prime or not and optimise your written code.
  • Ans. 

    Check if a number is prime and optimize the code.

    • Start by checking if the number is less than 2, in which case it is not prime.

    • Iterate from 2 to the square root of the number and check if any of them divide the number evenly.

    • If a divisor is found, the number is not prime. Otherwise, it is prime.

  • Answered by AI
  • Q2. Css question related to flex box, Grid and cross browser compatibility
  • Q3. To call an API in react and optimise your written code.
  • Ans. 

    To optimise API calls in React, use asynchronous functions and caching techniques.

    • Use async/await to handle API calls

    • Implement caching to reduce network requests

    • Use memoization to avoid unnecessary re-renders

    • Consider using a state management library like Redux

    • Use performance profiling tools like React DevTools

  • Answered by AI
  • Q4. Questions on JS concepts like Objects and Prototype Inheritance.

Interview Preparation Tips

Interview preparation tips for other job seekers - Know your basic concepts and prepare well for the interview.

Skills evaluated in this interview

I applied via Campus Placement

Round 1 - Coding Test 

Online Coding Test included some aptitude questions, technical questions followed by 3 coding questions

Round 2 - Technical 

(1 Question)

  • Q1. My technical interview included an introduction about myself followed by my background, projects I've made, internships I've done, and in which language I was comfortable. and the interviewer asked me to w...

Interview Preparation Tips

Interview preparation tips for other job seekers - Answer confidently and give examples. and you can also connect the questions asked to your past projects.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. General fit to profile filtration
Round 2 - Technical 

(3 Questions)

  • Q1. To the profile applied for
  • Q2. Explain an actual component
  • Ans. 

    An actual component is a reusable and modular piece of software that performs a specific function within a larger system.

    • Components are often designed to be independent and can be easily integrated into different systems.

    • Examples of components include buttons, input fields, and dropdown menus in a user interface.

    • Components can have their own logic, styling, and functionality, making them versatile building blocks for s

  • Answered by AI
  • Q3. Design the architecture
  • Ans. 

    Designing the architecture for a software system involves planning the structure and components of the system.

    • Identify the key components of the system and their interactions

    • Choose appropriate technologies and frameworks for each component

    • Consider scalability, performance, security, and maintainability

    • Create a detailed diagram or documentation of the architecture

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. Attitude towards work

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not bluff they will catch you immediately as even their management are hardcore coders

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed before Apr 2022. There were 3 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 

25 MCQ questions online with time limit

Round 3 - Assignment 

Create webapp . Frontend, Backend , data encryption

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

I appeared for an interview in Oct 2023.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Easy to medium
profit and loss questions
Permutation and combination

Round 3 - Aptitude Test 

Easy to medium
45 mins

Round 4 - Technical 

(4 Questions)

  • Q1. Basic concept of Oops Java basic
  • Q2. Constructor Overloading
  • Q3. Operator overloading in Java?
  • Ans. 

    Operator overloading allows operators to be redefined for user-defined types in Java.

    • Operator overloading is not supported in Java as it can lead to ambiguity and confusion.

    • Java does not allow custom operators to be defined or existing operators to be overloaded.

    • Instead of operator overloading, Java provides method overloading where methods with the same name but different parameters can be defined.

  • Answered by AI
  • Q4. Define java and it's features
  • Ans. 

    Java is a high-level, object-oriented programming language known for its platform independence and robust features.

    • Java is platform-independent, meaning it can run on any device with a Java Virtual Machine (JVM)

    • It is object-oriented, allowing for modular and reusable code

    • Java is known for its robust standard library, which includes tools for networking, I/O, and more

    • It supports multithreading, allowing for concurrent e...

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Introduction Present events

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Easy aptitude, 30 min with 20 question

Interview Preparation Tips

Interview preparation tips for other job seekers - learn OOPs concept and thorough about your project
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Simple aptitude questions.

Round 2 - HR 

(2 Questions)

  • Q1. What's your strength ?
  • Ans. 

    My strength lies in my problem-solving skills and ability to learn quickly.

    • Strong problem-solving skills

    • Quick learner

    • Adaptability to new technologies

    • Ability to work well under pressure

  • Answered by AI
  • Q2. Are you willing to work under pressure?
  • Ans. 

    Yes, I am comfortable working under pressure and have experience delivering high-quality work in tight deadlines.

    • I have successfully completed projects with tight deadlines in my previous roles.

    • I am able to prioritize tasks effectively and remain focused under pressure.

    • I thrive in challenging situations and see them as opportunities to showcase my skills.

    • I have experience working on urgent bug fixes and resolving issue

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If you have a good carrier then don't go there.

I applied via Campus Placement and was interviewed in Aug 2021. There were 4 interview rounds.

Round 1 - Coding Test 

1st test was aptitude and a easy coding test

Round 2 - Coding Test 

The 2nd test was pure coding based test on hacker rank platform and contains 2 easy and 2 medium question

Round 3 - Technical 

(1 Question)

  • Q1. Round 3 was technical interview and asked from basics of computer programming and architecture
Round 4 - HR 

(4 Questions)

  • Q1. What is your family background?
  • Q2. Why are you looking for a change?
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Advice is just improve basics of programming and DSA with a database management and basicsa of os and networks
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Based on JavaScript and Java.

Round 2 - Assignment 

A task based on JavaScript.

Reflections Info Systems Interview FAQs

How many rounds are there in Reflections Info Systems Php Full Stack Developer interview?
Reflections Info Systems interview process usually has 2 rounds. The most common rounds in the Reflections Info Systems interview process are Coding Test and Technical.
What are the top questions asked in Reflections Info Systems Php Full Stack Developer interview?

Some of the top questions asked at the Reflections Info Systems Php Full Stack Developer 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

Tell us how to improve this page.

Reflections Info Systems Php Full Stack Developer Interview Process

based on 1 interview

Interview experience

4
  
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
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