Upload Button Icon Add office photos

Filter interviews by

CWS Technology PHP Developer Interview Questions and Answers

Updated 23 Jan 2022

CWS Technology PHP Developer Interview Experiences

1 interview found

PHP Developer Interview Questions & Answers

user image Anonymous

posted on 23 Jan 2022

I applied via Naukri.com and was interviewed in Jul 2021. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. What are your salary expectations?
  • Q2. Why are you looking for a change?
Round 2 - Technical 

(1 Question)

  • Q1. Basics Questions of PHP like Arrays, Fileuplaod, Ajax image uplaod, Datatables,

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear your basics and you should know to Code CRUD with ajax and datatables

Interview questions from similar companies

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

(2 Questions)

  • Q1. How do you reverse a list in Python?
  • Ans. 

    To reverse a list in Python, you can use the built-in reverse() method or slicing technique.

    • Use the reverse() method to reverse the list in place: list.reverse()

    • Use slicing to create a new reversed list: reversed_list = list[::-1]

  • Answered by AI
  • Q2. Use the reverse method()
  • Ans. 

    The reverse method() is used to reverse the order of elements in an array.

    • Use the reverse() method on an array to reverse the order of its elements.

    • Example: $arr = [1, 2, 3]; reverse($arr); // Output: [3, 2, 1]

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Customize your resume for each job.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(2 Questions)

  • Q1. What is session , cookies
  • Ans. 

    Sessions and cookies are used to store user data on the server and client side respectively.

    • Sessions store user data on the server side

    • Cookies store user data on the client side

    • Sessions are more secure as data is stored on the server

    • Cookies can be used for tracking user behavior or preferences

  • Answered by AI
  • Q2. Can we use git without github
  • Ans. 

    Yes, Git can be used without GitHub for version control and collaboration.

    • Git is a distributed version control system that can be used locally or on a private server.

    • Developers can use Git to track changes, collaborate with team members, and manage code without using GitHub.

    • Git can be used with other remote repositories like Bitbucket or GitLab.

    • Developers can also set up their own Git server for hosting repositories.

    • Gi...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - SCREENING 

(2 Questions)

  • Q1. CLOSURE IN Javascript ?
  • Ans. 

    Closure in JavaScript is a function that has access to its own scope, as well as the outer scope in which it was defined.

    • A closure allows a function to access variables from its outer function even after the outer function has finished executing.

    • Closures are commonly used in event handlers, callbacks, and in functional programming.

    • Example: function outerFunction() { let outerVar = 'I am outer'; return function innerFun

  • Answered by AI
  • Q2. Class and ID difference
  • Ans. 

    Class is used to style multiple elements, while ID is used to style a single element.

    • Class can be used multiple times in a document, while ID should be unique

    • Class is denoted by a period (.), ID is denoted by a hash (#)

    • Class can be applied to multiple elements, ID can only be applied to one element

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. System Design question
  • Q2. Leetcode medium question on backtracking

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - HR 

(3 Questions)

  • Q1. They ask me about my previous job description details and education details
  • Q2. About carrier goals
  • Q3. About my responsibility in side the current company
Round 2 - Technical 

(2 Questions)

  • Q1. They ask me about core concept of react js and next js
  • Q2. Ask me about core concepts of mongo Db and Node js
Round 3 - HR 

(1 Question)

  • Q1. They told me about company curriculum, goals and ethics

Interview Preparation Tips

Topics to prepare for HyScaler Junior Software Developer interview:
  • React.Js
  • Node.Js
  • MongoDB
  • Linux
Interview preparation tips for other job seekers - This is one of the most well structured company and they used latest technology to build product and services. Very supportive seniors and Hrs. So i highly recommend for job seekers to work in this company
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. What is debugging
  • Ans. 

    Debugging is the process of identifying and fixing errors or bugs in software code.

    • Identifying and isolating issues in the code

    • Using tools like breakpoints and print statements to track down bugs

    • Fixing errors to ensure the code runs correctly

    • Testing the code to verify that the bugs have been resolved

  • Answered by AI
  • Q2. How debugging can be achieved
  • Ans. 

    Debugging can be achieved by identifying and fixing errors in the code.

    • Use debugging tools like breakpoints to pause the code execution and inspect variables

    • Review the code logic and look for syntax errors or logical mistakes

    • Utilize logging to track the flow of the program and identify issues

    • Test the code with different inputs to reproduce and isolate the bugs

    • Collaborate with team members to get fresh perspectives on t

  • Answered by AI
  • Q3. Tell me about Yourself

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Referral and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Find the nearest palindrome number for the given number.
  • Ans. 

    To find the nearest palindrome number for a given number, we can increment or decrement the number until we find a palindrome.

    • Start by checking if the given number is a palindrome. If it is, then it is the nearest palindrome number.

    • If the given number is not a palindrome, increment or decrement the number and check if the new number is a palindrome.

    • Repeat the process until a palindrome number is found. The closest pali...

  • Answered by AI
  • Q2. Find the common prefix for a given list of strings.
  • Ans. 

    Find the common prefix for a given list of strings.

    • Iterate through the characters of the first string and compare with the corresponding characters of other strings.

    • Stop when a mismatch is found or when reaching the end of the shortest string.

    • Return the common prefix found.

  • Answered by AI

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Sep 2022. There were 4 interview rounds.

Round 1 - Coding Test 

Given a pattern and we need to complete the pattern within 40mins, also allows completing this problem in any language ( c,c++, python, java).

Round 2 - Technical 

(2 Questions)

  • Q1. Went through a technical interview, and was asked to solve some coding questions(4 - 5), and some technical stuff. It is one on one interview.
  • Q2. Also, test our reasoning skills and explanation of an algorithm.
Round 3 - One-on-one 

(1 Question)

  • Q1. Another technical round.
Round 4 - HR 

(2 Questions)

  • Q1. This is the final phase of the recruitment
  • Q2. Tell me about your family, friends, and intermediate.
  • Ans. 

    I have a close-knit family and a supportive group of friends. I also have intermediate skills in various programming languages.

    • My family is very important to me and we have a strong bond.

    • I have a few close friends who have always been there for me.

    • In terms of programming, I have intermediate skills in languages like Java, Python, and JavaScript.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Snovasys Junior Software Developer interview:
  • Design Patterns
  • Python
  • C
  • Java
  • Data Structures
Interview preparation tips for other job seekers - Prepare for patterns, and revise the basics of your proposed programming language.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
-

I applied via Referral and was interviewed in Feb 2023. There was 1 interview round.

Round 1 - HR 

(3 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a front end developer with 5 years of experience in creating user-friendly and visually appealing websites.

    • 5 years of experience in front end development

    • Proficient in HTML, CSS, and JavaScript

    • Strong understanding of responsive design principles

    • Experience with front end frameworks like React and Angular

    • Ability to collaborate with designers and backend developers to implement website features

    • Portfolio showcasing pre

  • Answered by AI
  • Q2. Why do you want to join Webdew
  • Ans. 

    I want to join Webdew because of their reputation for innovative web development and their focus on creating user-friendly experiences.

    • Webdew has a strong track record of delivering cutting-edge web development projects.

    • I am impressed by their portfolio of user-friendly websites and applications.

    • I believe joining Webdew will provide me with opportunities to learn and grow as a front-end developer.

    • Their company culture ...

  • Answered by AI
  • Q3. What were your day-to-day responsibilities at your last job?
  • Ans. 

    As a front end developer, my day-to-day responsibilities at my last job included designing and developing user interfaces, collaborating with the design team, and ensuring cross-browser compatibility.

    • Designing and developing user interfaces

    • Collaborating with the design team

    • Ensuring cross-browser compatibility

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I advise others for HR rounds to be calm and relaxed and patiently give the answers to the questions asked by HR.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How do you reverse a list in Python?
  • Ans. 

    To reverse a list in Python, you can use the built-in reverse() method or slicing technique.

    • Use the reverse() method to reverse the list in place: list.reverse()

    • Use slicing to create a new reversed list: reversed_list = list[::-1]

  • Answered by AI
  • Q2. Use the reverse method()
  • Ans. 

    The reverse method() is used to reverse the order of elements in an array.

    • Use the reverse() method on an array to reverse the order of its elements.

    • Example: $arr = [1, 2, 3]; reverse($arr); // Output: [3, 2, 1]

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Customize your resume for each job.

CWS Technology Interview FAQs

How many rounds are there in CWS Technology PHP Developer interview?
CWS Technology interview process usually has 2 rounds. The most common rounds in the CWS Technology interview process are HR and Technical.
How to prepare for CWS Technology 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 CWS Technology. The most common topics and skills that interviewers at CWS Technology expect are Javascript, HTML, CSS, Codeigniter and JQuery.

Tell us how to improve this page.

People are getting interviews through

based on 1 CWS Technology 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.1k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.6
 • 3.6k Interviews
LTIMindtree Interview Questions
3.9
 • 2.7k Interviews
Mphasis Interview Questions
3.4
 • 773 Interviews
KPIT Technologies Interview Questions
3.5
 • 281 Interviews
Webdew Interview Questions
4.5
 • 106 Interviews
View all
CWS Technology PHP Developer Salary
based on 8 salaries
₹1.8 L/yr - ₹3.6 L/yr
30% less than the average PHP Developer Salary in India
View more details

CWS Technology PHP Developer Reviews and Ratings

based on 2 reviews

4.9/5

Rating in categories

5.0

Skill development

4.9

Work-Life balance

4.0

Salary & Benefits

4.9

Job Security

5.0

Company culture

4.9

Promotions/Appraisal

4.9

Work Satisfaction

Explore 2 Reviews and Ratings
PHP Developer
8 salaries
unlock blur

₹1.8 L/yr - ₹3.6 L/yr

Software Developer
4 salaries
unlock blur

₹4.2 L/yr - ₹7.5 L/yr

Technical Lead
4 salaries
unlock blur

₹9.7 L/yr - ₹12 L/yr

Web Designer
4 salaries
unlock blur

₹2.9 L/yr - ₹4.7 L/yr

Business Development Executive
4 salaries
unlock blur

₹3.6 L/yr - ₹4.8 L/yr

Explore more salaries
Compare CWS Technology with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.6
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