Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by CodeClouds Team. If you also belong to the team, you can get access from here

CodeClouds Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

CodeClouds Interview Questions and Answers

Updated 7 Aug 2025
Popular Designations

31 Interview questions

A Devops Engineer was asked 5d ago
Q. What is a three-tier architecture?
Ans. 

Three-tier architecture is a software architecture pattern that separates applications into three layers: presentation, application, and data.

  • Presentation Layer: User interface, e.g., web browsers or mobile apps.

  • Application Layer: Business logic, e.g., server-side applications like Node.js or Java EE.

  • Data Layer: Database management, e.g., MySQL, PostgreSQL, or MongoDB.

View all Devops Engineer interview questions
A Senior Software Engineer was asked 5d ago
Q. How does wildcard routing work in Angular?
Ans. 

Wildcard routing in Angular allows you to handle unmatched routes effectively, directing users to a specific component.

  • Wildcard routes are defined using '**' in the routing module.

  • Example: { path: '**', component: NotFoundComponent } directs unmatched routes to NotFoundComponent.

  • Place wildcard routes at the end of your route definitions to ensure they catch all unmatched paths.

  • Useful for creating 404 pages or redi...

View all Senior Software Engineer interview questions
A Senior Web Developer was asked 1w ago
Q. How do you optimize the speed of a Magento project?
Ans. 

Optimizing a Magento project involves improving performance, reducing load times, and enhancing user experience.

  • Enable Full Page Caching to reduce server load and speed up page delivery.

  • Optimize images using tools like ImageMagick or TinyPNG to decrease file sizes without losing quality.

  • Utilize a Content Delivery Network (CDN) to distribute content globally and reduce latency.

  • Minify CSS, JavaScript, and HTML files...

View all Senior Web Developer interview questions
A Senior Web Developer was asked 1w ago
Q. What would you do if you were unable to resolve an issue for a long time?
Ans. 

I would analyze the issue, seek collaboration, and explore alternative solutions to resolve the problem effectively.

  • Conduct a thorough analysis of the issue to understand its root cause.

  • Collaborate with team members or stakeholders for fresh perspectives.

  • Break down the problem into smaller, manageable parts to tackle it step by step.

  • Research similar issues in documentation or online forums for potential solutions.

  • ...

View all Senior Web Developer interview questions
A Web Software Engineer was asked 2w ago
Q. What is the Laravel framework and how is it utilized in web development?
Ans. 

Laravel is a popular PHP framework for web development, known for its elegant syntax and robust features.

  • MVC Architecture: Laravel follows the Model-View-Controller pattern, separating application logic from presentation.

  • Eloquent ORM: Provides an easy way to interact with databases using an object-oriented approach, e.g., $user = User::find(1);

  • Routing: Simplifies URL routing, allowing developers to define routes e...

View all Web Software Engineer interview questions
A Web Software Engineer was asked 2w ago
Q. What are the principles of object-oriented programming in PHP?
Ans. 

Object-oriented programming in PHP is based on four main principles: encapsulation, inheritance, polymorphism, and abstraction.

  • Encapsulation: Bundling data and methods that operate on the data within one unit, e.g., a class. Example: class User { private $name; }

  • Inheritance: Mechanism to create a new class using properties and methods of an existing class. Example: class Admin extends User {}

  • Polymorphism: Ability ...

View all Web Software Engineer interview questions

CodeClouds HR Interview Questions

5 questions and answers

Q. Tell me about your experience at your previous company.
Q. Introduce yourself.
Q. Why do you want to join Codeclouds?
A Quality Analyst was asked 2mo ago
Q. What is Regression Testing?
Ans. 

Regression Testing ensures that new code changes do not adversely affect existing functionalities.

  • Verifies that recent changes haven't broken existing features.

  • Can be automated to save time and increase efficiency.

  • Example: After adding a new feature, testing existing login functionality.

  • Often performed after bug fixes or enhancements.

  • Includes both manual and automated testing approaches.

View all Quality Analyst interview questions
Are these interview questions helpful?
A Quality Analyst was asked 2mo ago
Q. What is the Bug Life Cycle?
Ans. 

The Bug Life Cycle outlines the stages a bug goes through from identification to resolution in software testing.

  • 1. New: A bug is identified and logged for the first time.

  • 2. Assigned: The bug is assigned to a developer for fixing.

  • 3. In Progress: The developer is actively working on resolving the bug.

  • 4. Fixed: The developer has resolved the bug and it is ready for testing.

  • 5. Retest: The QA team tests the fix to ensu...

View all Quality Analyst interview questions
A Java Software Developer was asked 4mo ago
Q. Which method is used to write a class?
Ans. 

A class in Java is defined using the 'class' keyword followed by its name and body containing fields and methods.

  • Classes are defined using the 'class' keyword: 'class ClassName {}'

  • A class can contain fields (variables) and methods (functions) to define its behavior.

  • Example: 'class Car { String color; void drive() { ... } }'

  • Classes can also extend other classes using 'extends' for inheritance.

  • Example: 'class Electr...

View all Java Software Developer interview questions
A Java Software Developer was asked 4mo ago
Q. Tell me about the different types of loops in Java.
Ans. 

Java has three primary loop types: for, while, and do-while, each serving different iteration needs.

  • for loop: Used when the number of iterations is known. Example: for (int i = 0; i < 5; i++) { System.out.println(i); }

  • while loop: Used when the number of iterations is not known. Example: int i = 0; while (i < 5) { System.out.println(i); i++; }

  • do-while loop: Similar to while, but guarantees at least one iterat...

View all Java Software Developer interview questions

CodeClouds Interview Experiences

47 interviews found

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

I applied via LinkedIn and was interviewed before Mar 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 - Technical 

(1 Question)

  • Q1. Basic questions of JavaScript and other stuffs related to the role for which the candidate has applied. It was an online test not an interview discussion
Round 3 - One-on-one 

(1 Question)

  • Q1. A technical round discussing about my skills, experiences, background and other questions related to the tech stack the candidate is applying. The interview questions were quite in depth and the interviewe...
Round 4 - HR 

(1 Question)

  • Q1. Behavioral questions, leadership questions and basic informational questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well. Focus highly on your basics, all your basics should be clear and you should have clear and in depth knowledge of whatever you know. Your CV should contain only the information that you're certain you can answer and nothing extra. Your projects should be clear and it will be better if you've them deployed
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I appeared for an interview before Aug 2024, where I was asked the following questions.

  • Q1. What is three tire arcitecture ?
  • Ans. 

    Three-tier architecture is a software architecture pattern that separates applications into three layers: presentation, application, and data.

    • Presentation Layer: User interface, e.g., web browsers or mobile apps.

    • Application Layer: Business logic, e.g., server-side applications like Node.js or Java EE.

    • Data Layer: Database management, e.g., MySQL, PostgreSQL, or MongoDB.

  • Answered by AI
  • Q2. What is docker & kubernetes

Intern Interview Questions & Answers

user image dipnarayan sen

posted on 3 Jan 2025

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

General Computer Science Questions.

Round 2 - Technical 

(3 Questions)

  • Q1. 2NF and 3NF difference
  • Ans. 

    2NF eliminates partial dependencies, while 3NF eliminates transitive dependencies.

    • 2NF eliminates partial dependencies by ensuring all non-key attributes are fully functionally dependent on the primary key.

    • 3NF eliminates transitive dependencies by ensuring that non-key attributes are not dependent on other non-key attributes.

    • Example: In a table with columns A, B, and C where A is the primary key, if B depends on A and C...

  • Answered by AI
  • Q2. Alternative of using loop to print 1 to 100
  • Ans. 

    Using recursion to print numbers from 1 to 100 without a loop

    • Create a recursive function that takes a number as input and prints it

    • Call the function with 1 as the initial input and increment the input by 1 in each recursive call

    • Stop the recursion when the input reaches 100

  • Answered by AI
  • Q3. Delete and Truncate Difference
  • Ans. 

    Delete removes rows from a table while truncate removes all rows from a table.

    • Delete is a DML command while truncate is a DDL command.

    • Delete operation can be rolled back while truncate operation cannot be rolled back.

    • Delete operation fires triggers on each row deletion while truncate operation does not fire triggers.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Jul 2025, where I was asked the following questions.

  • Q1. How to optimise seep Magento Project
  • Ans. 

    Optimizing a Magento project involves improving performance, reducing load times, and enhancing user experience.

    • Enable Full Page Caching to reduce server load and speed up page delivery.

    • Optimize images using tools like ImageMagick or TinyPNG to decrease file sizes without losing quality.

    • Utilize a Content Delivery Network (CDN) to distribute content globally and reduce latency.

    • Minify CSS, JavaScript, and HTML files to d...

  • Answered by AI
  • Q2. What will you do if an issue is not solving for long time
  • Ans. 

    I would analyze the issue, seek collaboration, and explore alternative solutions to resolve the problem effectively.

    • Conduct a thorough analysis of the issue to understand its root cause.

    • Collaborate with team members or stakeholders for fresh perspectives.

    • Break down the problem into smaller, manageable parts to tackle it step by step.

    • Research similar issues in documentation or online forums for potential solutions.

    • Consi...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - A good company to work with.

Skills evaluated in this interview

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

I appeared for an interview in Aug 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Basic questions on Core PHP, Laravel, MySql and jQuery.
Round 2 - Technical 

(1 Question)

  • Q1. Advanced questions on core php, laravel, wordpress, mysql, jqyery.
Round 3 - Aptitude Test 

MCQs on core php and laravel. It was quite hard and confussing.

Round 4 - One-on-one 

(1 Question)

  • Q1. Normal communications

Web Developer Interview Questions & Answers

user image Anonymous

posted on 11 Dec 2024

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

(1 Question)

  • Q1. Which data structure is used to reverse an array?
  • Ans. 

    The data structure used to reverse an array is a stack.

    • A stack data structure can be used to reverse an array by pushing each element onto the stack and then popping them off in reverse order.

    • Example: If we have an array of strings ['apple', 'banana', 'cherry'], we can reverse it using a stack to get ['cherry', 'banana', 'apple'].

  • Answered by AI

Team Lead Interview Questions & Answers

user image Anonymous

posted on 26 Jun 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Questions regarding javascript
  • Q2. Questions regarding php and wordpress
Round 2 - Technical 

(2 Questions)

  • Q1. Questions regarding Node js
  • Q2. Questions regarding wordpress
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. What is Inheritance ? How It Is Executed In program?
  • Q2. Class is written By Which Method?
  • Ans. 

    A class in Java is defined using the 'class' keyword followed by its name and body containing fields and methods.

    • Classes are defined using the 'class' keyword: 'class ClassName {}'

    • A class can contain fields (variables) and methods (functions) to define its behavior.

    • Example: 'class Car { String color; void drive() { ... } }'

    • Classes can also extend other classes using 'extends' for inheritance.

    • Example: 'class ElectricCar...

  • Answered by AI
  • Q3. Tell Me About The Different Loops in Java?
  • Ans. 

    Java has three primary loop types: for, while, and do-while, each serving different iteration needs.

    • for loop: Used when the number of iterations is known. Example: for (int i = 0; i < 5; i++) { System.out.println(i); }

    • while loop: Used when the number of iterations is not known. Example: int i = 0; while (i < 5) { System.out.println(i); i++; }

    • do-while loop: Similar to while, but guarantees at least one iteration. ...

  • Answered by AI
  • Q4. Who Discovered the java ?
  • Ans. 

    Java was developed by James Gosling and his team at Sun Microsystems in the mid-1990s.

    • James Gosling is known as the 'father of Java'.

    • Java was initially called 'Oak' before being renamed.

    • The first public release of Java was in 1995.

    • Java was designed to be platform-independent, using the 'Write Once, Run Anywhere' (WORA) principle.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. It was mostly based on SQL and php
Round 2 - Technical 

(1 Question)

  • Q1. Viva technical interview
Round 3 - Technical 

(1 Question)

  • Q1. Another viva technical interview
Round 4 - One-on-one 

(1 Question)

  • Q1. Interview with COO
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Basics of JS and some coding challenges related to array

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. Laravel migration
  • Q2. Wildcard routing Angular
  • Ans. 

    Wildcard routing in Angular allows you to handle unmatched routes effectively, directing users to a specific component.

    • Wildcard routes are defined using '**' in the routing module.

    • Example: { path: '**', component: NotFoundComponent } directs unmatched routes to NotFoundComponent.

    • Place wildcard routes at the end of your route definitions to ensure they catch all unmatched paths.

    • Useful for creating 404 pages or redirecti...

  • Answered by AI

Top trending discussions

View All
Interview Hub
1w (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about CodeClouds?
Ask anonymously on communities.

CodeClouds Interview FAQs

How many rounds are there in CodeClouds interview?
CodeClouds interview process usually has 2-3 rounds. The most common rounds in the CodeClouds interview process are Technical, HR and Resume Shortlist.
How to prepare for CodeClouds 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 CodeClouds. The most common topics and skills that interviewers at CodeClouds expect are Javascript, MySQL, HTML, PHP and Team Building.
What are the top questions asked in CodeClouds interview?

Some of the top questions asked at the CodeClouds interview -

  1. What is document object mod...read more
  2. Basic questions of JavaScript and other stuffs related to the role for which th...read more
  3. What is the Laravel framework and how is it utilized in web developme...read more
What are the most common questions asked in CodeClouds HR round?

The most common HR questions asked in CodeClouds interview are -

  1. Why should we hire y...read more
  2. Tell me about yourse...read more
How long is the CodeClouds interview process?

The duration of CodeClouds interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.5/5

based on 51 interview experiences

Difficulty level

Easy 3%
Moderate 94%
Hard 3%

Duration

Less than 2 weeks 67%
2-4 weeks 24%
4-6 weeks 3%
6-8 weeks 6%
View more

Interview Questions from Similar Companies

Chetu Interview Questions
3.4
 • 206 Interviews
AVASOFT Interview Questions
2.7
 • 177 Interviews
Oracle Cerner Interview Questions
3.6
 • 163 Interviews
Mobileum Interview Questions
3.2
 • 41 Interviews
Grey Orange Interview Questions
3.2
 • 40 Interviews
SirionLabs Interview Questions
3.7
 • 27 Interviews
SOTI Interview Questions
3.1
 • 24 Interviews
View all

CodeClouds Reviews and Ratings

based on 403 reviews

4.4/5

Rating in categories

4.2

Skill development

4.4

Work-life balance

4.2

Salary

4.1

Job security

4.4

Company culture

4.0

Promotions

4.2

Work satisfaction

Explore 403 Reviews and Ratings
Lead Web Developer

Kolkata

4-7 Yrs

Not Disclosed

Graphic Designer

Kolkata

0-2 Yrs

Not Disclosed

Product Engineer

Kolkata

2-5 Yrs

Not Disclosed

Explore more jobs
Web Developer
205 salaries
unlock blur

₹3.5 L/yr - ₹8.1 L/yr

Senior Web Developer
87 salaries
unlock blur

₹5 L/yr - ₹10.5 L/yr

Html Developer
54 salaries
unlock blur

₹3.3 L/yr - ₹7.5 L/yr

Front end Developer
52 salaries
unlock blur

₹3 L/yr - ₹8.4 L/yr

Quality Analyst
48 salaries
unlock blur

₹4 L/yr - ₹8.4 L/yr

Explore more salaries
Compare CodeClouds with

Chetu

3.4
Compare

AVASOFT

2.7
Compare

Oracle Cerner

3.6
Compare

Agilysys Technologies India

3.4
Compare
write
Share an Interview