Upload Button Icon Add office photos

Filter interviews by

Appmonks Php and Web Developer Interview Questions and Answers

Updated 13 Apr 2023

Appmonks Php and Web Developer Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-

I applied via Indeed and was interviewed in Mar 2023. There were 2 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 - machine test 

(4 Questions)

  • Q1. Assign a task to complete responsive webpage.
  • Ans. 

    To complete a responsive webpage, use media queries, flexible grids, and fluid images.

    • Use a mobile-first approach

    • Set breakpoints for different screen sizes

    • Use relative units like em or rem

    • Use flexible grids like Bootstrap or CSS Grid

    • Use fluid images with max-width set to 100%

    • Test on different devices and browsers

  • Answered by AI
  • Q2. Use of Php codeigniter and all data should came from database is must for that task.
  • Q3. Should have knowledge of php.
  • Q4. Should have knowledge of MySql

Interview Preparation Tips

Interview preparation tips for other job seekers - I had a worst Experience with this company. First they gave me a task to create a Webpage for machine test round then they called me for F2F interview, I came for an interview from Pune to Thane and just because of I'm 25 minutes late they didn't took my interview or they didn't gave me a single minute to explain the reason why I'm late; they just said "It's not a dharmshala, Go back", Seems like they don't have any manners to talk and secondly, they don't value others people time. They simply waste my 1 week. Thank God! For not being a part of this shit company.

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Technical 

(2 Questions)

  • Q1. Diff btwn this and arrow in javascript
  • Ans. 

    The 'this' keyword in JavaScript refers to the current object, while the arrow function does not bind its own 'this'.

    • The 'this' keyword in JavaScript refers to the object that is executing the current function.

    • Arrow functions do not bind their own 'this' value, instead they inherit the 'this' value from the enclosing lexical context.

    • Using 'this' in a regular function can lead to unexpected behavior, especially in neste...

  • Answered by AI
  • Q2. Diff btwn let, var, const
  • Ans. 

    let, var, and const are all used to declare variables in JavaScript, but they have different scopes and behaviors.

    • let is block-scoped and can be reassigned, var is function-scoped and can be reassigned, const is block-scoped and cannot be reassigned

    • Using let:

    • let x = 10;

    • x = 20; // valid

    • Using var:

    • var y = 5;

    • y = 8; // valid

    • Using const:

    • const z = 15;

    • z = 25; // error, cannot reassign const variable

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - stick with basics of javascript and react

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Why use php ?
  • Ans. 

    PHP is a popular server-side scripting language used for web development.

    • PHP is easy to learn and use for web development.

    • PHP has a large community and extensive documentation for support.

    • PHP is compatible with various operating systems and web servers.

    • PHP can be embedded directly into HTML code for dynamic web pages.

    • PHP can interact with databases like MySQL to create dynamic content.

  • Answered by AI
  • Q2. Php popular framewrk?.

Skills evaluated in this interview

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

Medium level aptitude test

Round 2 - Coding Test 

I was not shortlisted for this round

Interview Questionnaire 

8 Questions

  • Q1. How many array function & string function is there in PHP?
  • Ans. 

    PHP has over 100 array functions and over 200 string functions.

    • Array functions include: array_push(), array_pop(), array_merge(), array_slice(), etc.

    • String functions include: strlen(), str_replace(), substr(), strtolower(), etc.

    • PHP also has functions for working with regular expressions, dates, and more.

    • The exact number of functions may vary depending on the version of PHP being used.

  • Answered by AI
  • Q2. What is ajax? how many attributes?
  • Ans. 

    Ajax is a technique used to update parts of a web page without reloading the entire page. It stands for Asynchronous JavaScript and XML.

    • Ajax allows for asynchronous communication between the client and server.

    • It uses JavaScript to send and receive data from the server without interfering with the display and behavior of the existing page.

    • Ajax can be used to dynamically update content, submit forms without refreshing th...

  • Answered by AI
  • Q3. Findout count of dublicate record in mysql & write a query
  • Ans. 

    Query to find count of duplicate records in MySQL

    • Use GROUP BY clause to group the records by the column(s) that may have duplicates

    • Use HAVING clause to filter out the groups with count less than 2

    • Use COUNT() function to count the number of records in each group

  • Answered by AI
  • Q4. What is helpers in coddeigniter?
  • Ans. 

    Helpers in CodeIgniter are utility functions that assist in common tasks and can be used throughout the application.

    • Helpers are standalone functions that can be loaded and used anywhere in the application.

    • They provide a way to avoid writing repetitive code by providing ready-to-use functions.

    • CodeIgniter comes with a set of built-in helpers, such as URL, Form, File, and Date helpers.

    • Custom helpers can also be created to...

  • Answered by AI
  • Q5. What is MVC?
  • Ans. 

    MVC is a software architectural pattern that separates an application into three main components: Model, View, and Controller.

    • Model represents the data and business logic of the application.

    • View is responsible for displaying the data to the user.

    • Controller handles user input, updates the model, and interacts with the view.

    • MVC promotes separation of concerns and improves code organization and maintainability.

    • Example: In...

  • Answered by AI
  • Q6. What is diff bet array_merge and array_combine?
  • Ans. 

    array_merge merges two or more arrays into one, while array_combine creates an array by using one array for keys and another for its values.

    • array_merge combines the values of two or more arrays into a single array

    • array_combine creates an array using one array for keys and another for its values

    • array_merge preserves numeric keys, while array_combine uses the first array for keys and the second for values

    • array_merge can ...

  • Answered by AI
  • Q7. How my db engine present in mysql?
  • Ans. 

    MySQL has multiple storage engines including InnoDB, MyISAM, and more.

    • MySQL has a pluggable storage engine architecture

    • InnoDB is the default storage engine for MySQL

    • MyISAM is another popular storage engine

    • Other storage engines include Memory, CSV, and more

  • Answered by AI
  • Q8. What is diff bet myisam & innodb?
  • Ans. 

    MyISAM is faster but doesn't support transactions, while InnoDB is slower but supports transactions and foreign keys.

    • MyISAM is the default storage engine for MySQL, while InnoDB is an alternative.

    • MyISAM is faster for read-heavy applications, while InnoDB is better for write-heavy applications.

    • MyISAM doesn't support transactions or foreign keys, while InnoDB does.

    • MyISAM uses table-level locking, while InnoDB uses row-le...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - the interview was on microsoft team

Skills evaluated in this interview

Appmonks Interview FAQs

How many rounds are there in Appmonks Php and Web Developer interview?
Appmonks interview process usually has 2 rounds. The most common rounds in the Appmonks interview process are Resume Shortlist.
What are the top questions asked in Appmonks Php and Web Developer interview?

Some of the top questions asked at the Appmonks Php and Web Developer interview -

  1. Assign a task to complete responsive webpa...read more
  2. Use of Php codeigniter and all data should came from database is must for that ...read more
  3. Should have knowledge of ph...read more

Tell us how to improve this page.

Appmonks Php and Web Developer Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.9
 • 560 Interviews
Citicorp Interview Questions
3.7
 • 560 Interviews
Bajaj Finserv Interview Questions
4.0
 • 497 Interviews
HSBC Group Interview Questions
4.0
 • 489 Interviews
Xyz Company Interview Questions
3.8
 • 450 Interviews
American Express Interview Questions
4.2
 • 359 Interviews
UBS Interview Questions
4.0
 • 337 Interviews
BNY Interview Questions
3.9
 • 333 Interviews
Morgan Stanley Interview Questions
3.7
 • 303 Interviews
View all
Web Developer
5 salaries
unlock blur

₹2.4 L/yr - ₹3 L/yr

IOS Developer
4 salaries
unlock blur

₹2.4 L/yr - ₹3.6 L/yr

Web Developer & Designer
3 salaries
unlock blur

₹1.1 L/yr - ₹2.4 L/yr

Explore more salaries
Compare Appmonks with

Bajaj Finserv

4.0
Compare

Wells Fargo

3.9
Compare

JPMorgan Chase & Co.

4.0
Compare

HSBC Group

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