Upload Button Icon Add office photos

Filter interviews by

Mosh E-com Services PHP Developer Interview Questions, Process, and Tips

Updated 5 Aug 2024

Mosh E-com Services PHP Developer Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Assignment 

Google sheet API. Save records in sheet, read them in laravel, save in local database and show them in laravel blade template

Round 2 - One-on-one 

(6 Questions)

  • Q1. What is middleware and its type
  • Ans. 

    Middleware is software that acts as a bridge between an application and the server, handling requests and responses.

    • Middleware can modify incoming requests before they reach the application.

    • It can also modify outgoing responses before they are sent back to the client.

    • Types of middleware include authentication middleware, logging middleware, error handling middleware, etc.

    • Examples of middleware in PHP frameworks include...

  • Answered by AI
  • Q2. Reverse routing in laravel
  • Ans. 

    Reverse routing in Laravel is the process of generating URLs based on route names.

    • Reverse routing helps in generating URLs dynamically without hardcoding them in the views.

    • It allows for easier maintenance and flexibility when changing routes.

    • Example: route('profile') will generate the URL for the 'profile' route.

  • Answered by AI
  • Q3. What is Joins and types
  • Ans. 

    Joins are used to combine rows from two or more tables based on a related column between them.

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • INNER JOIN returns rows when there is at least one match in both tables.

    • LEFT JOIN returns all rows from the left table and the matched rows from the right table.

    • RIGHT JOIN returns all rows from the right table and the matched rows from the left table.

    • FULL ...

  • Answered by AI
  • Q4. What is index ?
  • Ans. 

    Index is a reference point or value that helps in accessing data quickly in an array or database.

    • Index is a numeric value that represents the position of an element in an array.

    • It starts from 0 in most programming languages.

    • Using index, we can quickly retrieve or update data in an array.

    • For example, in PHP, $arr[0] refers to the first element of the array $arr.

  • Answered by AI
  • Q5. What is Eloquent ORM?
  • Ans. 

    Eloquent ORM is an advanced PHP implementation of the Active Record pattern for working with databases.

    • Eloquent ORM is included with the Laravel PHP framework.

    • It allows developers to interact with databases using PHP objects instead of writing SQL queries.

    • Eloquent models represent database tables and can be used to perform CRUD operations.

    • Relationships between database tables can be defined using Eloquent's model relat

  • Answered by AI
  • Q6. What are commands in laravel?
  • Ans. 

    Commands in Laravel are artisan commands that help developers perform various tasks such as database migrations, seeding, and creating controllers.

    • Artisan commands are run through the command line interface using the 'php artisan' command.

    • Some common artisan commands include 'php artisan migrate' for running database migrations, 'php artisan db:seed' for seeding the database with dummy data, and 'php artisan make:contr...

  • Answered by AI
Round 3 - Discussion with CTO 

(2 Questions)

  • Q1. Experience related questions
  • Q2. Projects related questions

Interview Preparation Tips

Topics to prepare for Mosh E-com Services PHP Developer interview:
  • Laravel and external API
Interview preparation tips for other job seekers - If you have only relevant experience like working with large number of data, then only apply. They offered me less salary than my current salary saying I don't have relevant experience.

Skills evaluated in this interview

Interview questions from similar companies

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

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Oops concepts in PHP
  • Ans. 

    Object-oriented programming concepts in PHP

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

    • Inheritance: allowing a class to inherit properties and methods from another class

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

    • Abstraction: hiding the complex implementation details and showing only the necessary features

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Little difficult for the freshers

Round 2 - Coding Test 

A little programming oriented questions were there

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice more for good opportunities

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

Round 1 - Technical 

(2 Questions)

  • Q1. Basic knowledge of php
  • Q2. Laravel framework & structure knowledge of laravel

Interview Preparation Tips

Interview preparation tips for other job seekers - Please clear the basic structure...
Good knowledge of oops concept

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

Interview Questionnaire 

1 Question

  • Q1. What level of this company

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview was a technical one but was majorly a easy test.The interview wanted to test bothmy knowledge and communication skills. The interview was computer science related . Please go throughly word by word and recheck my resume to ensure that you are a best yit for the position
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

General aptitude, computer science fundamentals multiple-choice questions, and data structures and algorithms multiple-choice questions were asked.

Round 2 - Technical 

(2 Questions)

  • Q1. Given a string, write a function to reverse the string.
  • Ans. 

    Function to reverse a given string

    • Create an empty string to store the reversed string

    • Iterate through the input string in reverse order and append each character to the new string

    • Return the reversed string

  • Answered by AI
  • Q2. Given a sorted array of integers, write a function to perform a binary search to find the index of a target value. If the target value is not found, return -1.
  • Ans. 

    Binary search function to find target value in sorted array

    • Define function that takes sorted array and target value as input

    • Initialize variables for start, end, and middle indices

    • Use while loop to iterate until start is less than or equal to end

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. About the company
  • Q2. What are three significant achievements in your life?
  • Ans. 

    Graduating with honors, winning a hackathon, volunteering in a developing country

    • Graduated with honors from university with a degree in Computer Science

    • Won first place in a hackathon competition by developing a unique and innovative software solution

    • Volunteered in a developing country to help build schools and provide education to underprivileged children

  • Answered by AI
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Mostly js questions, not so many of angular or react.
  • Q2. Like fizbuzz or things like that.

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't apply here, the culture here is horrible.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Ui development and component related
  • Q2. Performance of technology and challenges
Round 2 - HR 

(2 Questions)

  • Q1. Personal introduction and location details
  • Q2. Negatition of salries excepectations

Interview Preparation Tips

Interview preparation tips for other job seekers - It's very good organization. Freindly nature in team operation is good from leads hikes also ok
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - HR 

(1 Question)

  • Q1. Basic html css questions
Round 2 - Aptitude Test 

Logical reasoning, quantitative analysis and computer test

Round 3 - Technical 

(1 Question)

  • Q1. Basic html, css, javascript questions
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. JavaScript Related Questions
  • Q2. ReactJs Related Questions
Round 2 - One-on-one 

(2 Questions)

  • Q1. Reactjs Use Effects and UseRef
  • Q2. JavaScript Closures,Map,CallBack

Interview Preparation Tips

Interview preparation tips for other job seekers - NA

Mosh E-com Services Interview FAQs

How many rounds are there in Mosh E-com Services PHP Developer interview?
Mosh E-com Services interview process usually has 3 rounds. The most common rounds in the Mosh E-com Services interview process are Assignment and One-on-one Round.
How to prepare for Mosh E-com Services PHP Developer 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 Mosh E-com Services. The most common topics and skills that interviewers at Mosh E-com Services expect are Bootstrap, PHP, LAMP, Laravel and MongoDB.
What are the top questions asked in Mosh E-com Services PHP Developer interview?

Some of the top questions asked at the Mosh E-com Services PHP Developer interview -

  1. What is middleware and its t...read more
  2. What is Eloquent O...read more
  3. What are commands in larav...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Mosh E-com Services interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Amazon Interview Questions
4.1
 • 4.9k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all
Web Developer
6 salaries
unlock blur

₹2 L/yr - ₹3 L/yr

E-Commerce Executive
4 salaries
unlock blur

₹2.2 L/yr - ₹3.2 L/yr

Senior Executive
3 salaries
unlock blur

₹2 L/yr - ₹2.2 L/yr

Team Lead
3 salaries
unlock blur

₹3.9 L/yr - ₹3.9 L/yr

Explore more salaries
Compare Mosh E-com Services with

TCS

3.7
Compare

Accenture

3.9
Compare

Wipro

3.7
Compare

Cognizant

3.8
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview