AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
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
4.3

based on 394 Reviews

Play video Play video Video summary
  • About
  • Reviews
    394
  • Salaries
    1.1k
  • Interviews
    42
  • Jobs
    35
  • Benefits
    136
  • Photos
    15

Filter interviews by

CodeClouds Interview Questions and Answers

Updated 31 May 2025
Popular Designations

23 Interview questions

A Quality Analyst was asked 1mo 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 Quality Analyst was asked 1mo 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
A Java Software Developer was asked 3mo 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 3mo 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

What people are saying about CodeClouds

View All
a team lead
2w
Need Job opportunity
With 12 years of experience across diverse technology stacks and a strong leadership background in solution architecture and team management: Frontend: React.js and Vue.js, with 11 years of experience in JavaScript Backend: 12 years in PHP and 7 years in Node.js Cloud: 3 years of hands-on experience with AWS Databases: MySQL, SQL Server, MongoDB Containerization: Docker PHP CMS & Frameworks: 11 years of experience with WordPress Team Leadership & Communication: 8 years of experience leading development teams and directly managing client communication Proven ability to lead cross-functional teams and deliver scalable, high-performance web applications. Strong expertise in architecting resilient systems, designing dependable APIs, and optimizing database performance. Need Job opportunities.
Got a question about CodeClouds?
Ask anonymously on communities.
A Java Software Developer was asked 3mo ago
Q. Who discovered 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.

View all Java Software Developer interview questions
An Intern was asked 6mo ago
Q. What is the difference between DELETE and TRUNCATE?
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.

View all Intern interview questions
An Intern was asked 6mo ago
Q. What are the alternatives to using a loop to print numbers from 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

View all Intern interview questions
Are these interview questions helpful?
An Intern was asked 6mo ago
Q. What is the difference between 2NF and 3NF?
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 ...

View all Intern interview questions
A Web Developer was asked 7mo ago
Q. How do you upload files in a NodeJS application?
Ans. 

To upload files in a Node.js application, you can use the 'multer' middleware package.

  • Install 'multer' package using npm

  • Set up multer middleware in your Node.js application

  • Create a route in your application to handle file uploads

  • Use 'multer' to process and save uploaded files to a specified destination

View all Web Developer interview questions
A Web Developer was asked 7mo ago
Q. Explain the Event Loop in NodeJS.
Ans. 

Event Loop in NodeJS manages asynchronous operations by executing callback functions when certain events occur.

  • Event Loop continuously checks the Call Stack and Callback Queue to see if there are any functions that need to be executed.

  • If the Call Stack is empty, Event Loop will move functions from the Callback Queue to the Call Stack for execution.

  • Event Loop allows NodeJS to handle multiple requests concurrently w...

View all Web Developer interview questions
1 2 3

CodeClouds Interview Experiences

42 interviews found

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
    Add your answer
  • 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
    Add your answer
  • 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
    Add your answer
Anonymous

Web Software Engineer Interview Questions & Answers

user image Prithul Paul

posted on 21 Feb 2025

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.
  • Add your answer
Round 2 - Technical 

(1 Question)

  • Q1. Advanced questions on core php, laravel, wordpress, mysql, jqyery.
  • Add your answer
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
  • Add your answer
Anonymous

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
    Add your answer
Anonymous

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
  • Add your answer
  • Q2. Questions regarding php and wordpress
  • Add your answer
Round 2 - Technical 

(2 Questions)

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

(1 Question)

  • Q1. Salary discussion
  • Add your answer
Anonymous

Java Software Developer Interview Questions & Answers

user image Anonymous

posted on 11 Apr 2025

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?
  • Add your answer
  • 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
    Add your answer
  • 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
    Add your answer
  • 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
    Add your answer
Anonymous

Web Developer Interview Questions & Answers

user image Anonymous

posted on 3 Jun 2024

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

(1 Question)

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

(1 Question)

  • Q1. Viva technical interview
  • Add your answer
Round 3 - Technical 

(1 Question)

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

(1 Question)

  • Q1. Interview with COO
  • Add your answer
Anonymous

Reactjs Developer Interview Questions & Answers

user image Anonymous

posted on 11 Dec 2024

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

Anonymous

HR Executive Interview Questions & Answers

user image Anonymous

posted on 21 Aug 2024

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

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a seasoned HR professional with 10+ years of experience in recruitment, employee relations, and performance management.

    • Bachelor's degree in Human Resources Management

    • SHRM-CP certification

    • Led successful recruitment campaigns resulting in 20% increase in employee retention

    • Implemented training programs that improved employee satisfaction by 15%

  • Answered by AI
    Add your answer
  • Q2. Why you want to join Codeclouds
  • Ans. 

    I want to join Codeclouds because of their reputation for innovation and growth opportunities.

    • Impressed by Codeclouds' track record of innovation in software development

    • Excited about the potential for growth and advancement within the company

    • Positive reviews from current employees about the company culture and work environment

  • Answered by AI
    Add your answer
Anonymous

Senior Engineer Interview Questions & Answers

user image Anonymous

posted on 22 Jan 2025

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

I appeared for an interview before Jan 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Inheritance related questions
  • Add your answer
  • Q2. Base web development related questions
  • Add your answer
Round 2 - Technical 

(2 Questions)

  • Q1. In depth oops question
  • Add your answer
  • Q2. Database related questions
  • Add your answer
Round 3 - HR 

(2 Questions)

  • Q1. Basic questions
  • Add your answer
  • Q2. Expected salary
  • Ans. 

    My expected salary is based on my experience, skills, and the market rate for Senior Engineers.

    • Consider my years of experience in the industry

    • Take into account my specialized skills and certifications

    • Research the current market rate for Senior Engineers in this location

    • Negotiable based on benefits package offered

  • Answered by AI
    Add your answer
Round 4 - Coding Test 

Web development related coding questions

Anonymous

Html Developer Interview Questions & Answers

user image Anonymous

posted on 4 Dec 2024

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

They asked me to design a template.

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through the everything you mentioned in your cv.
Anonymous
More about working at CodeClouds
  • HQ - Pipitea, Wellington, New Zealand
  • Software Product
  • 501-1k Employees (India)
  • Hardware & Networking

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. What is ACID proper...read more
  3. What is normalizati...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.

CodeClouds Interviews By Designations

  • CodeClouds Web Developer Interview Questions
  • CodeClouds Html Developer Interview Questions
  • CodeClouds Quality Analyst Interview Questions
  • CodeClouds Project Manager Interview Questions
  • CodeClouds Software Developer Interview Questions
  • CodeClouds Senior Software Engineer Interview Questions
  • CodeClouds Reactjs Developer Interview Questions
  • CodeClouds Team Lead Interview Questions
  • Show more
  • CodeClouds Senior Engineer Interview Questions
  • CodeClouds Software Tester Interview Questions

Interview Questions for Popular Designations

  • Web Developer Interview Questions
  • Html Developer Interview Questions
  • Quality Analyst Interview Questions
  • Business Analyst Interview Questions
  • Consultant Interview Questions
  • Associate Software Engineer Interview Questions
  • Java Developer Interview Questions
  • System Engineer Interview Questions
  • Show more
  • Data Analyst Interview Questions
  • Manager Interview Questions

Overall Interview Experience Rating

4.5/5

based on 46 interview experiences

Difficulty level

Easy 4%
Moderate 93%
Hard 4%

Duration

Less than 2 weeks 71%
2-4 weeks 21%
6-8 weeks 7%
View more

Interview Questions from Similar Companies

Chetu
Chetu Interview Questions
3.3
 • 199 Interviews
AVASOFT
AVASOFT Interview Questions
2.8
 • 175 Interviews
Oracle Cerner
Oracle Cerner Interview Questions
3.6
 • 162 Interviews
Agilysys Technologies India
Agilysys Technologies India Interview Questions
3.4
 • 55 Interviews
Grey Orange
Grey Orange Interview Questions
3.2
 • 40 Interviews
Mobileum
Mobileum Interview Questions
3.3
 • 38 Interviews
Netenrich Technologies
Netenrich Technologies Interview Questions
3.6
 • 29 Interviews
Cornerstone OnDemand
Cornerstone OnDemand Interview Questions
3.6
 • 27 Interviews
SirionLabs
SirionLabs Interview Questions
3.8
 • 26 Interviews
SOTI
SOTI Interview Questions
3.2
 • 24 Interviews
View all

CodeClouds Reviews and Ratings

based on 394 reviews

4.3/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 394 Reviews and Ratings
Jobs at CodeClouds
CodeClouds
Lead Web Developer

Kolkata

4-7 Yrs

Not Disclosed

CodeClouds
Node.js Developer

Kolkata

2-5 Yrs

Not Disclosed

CodeClouds
Business Analyst

Kolkata

1-4 Yrs

Not Disclosed

Explore more jobs
CodeClouds Salaries in India
Web Developer
205 salaries
unlock blur

₹3.5 L/yr - ₹8.1 L/yr

Senior Web Developer
77 salaries
unlock blur

₹5.1 L/yr - ₹10.5 L/yr

Front end Developer
52 salaries
unlock blur

₹3 L/yr - ₹8.4 L/yr

Html Developer
48 salaries
unlock blur

₹3.5 L/yr - ₹7.5 L/yr

Quality Analyst
47 salaries
unlock blur

₹3.8 L/yr - ₹8.4 L/yr

Explore more salaries
Compare CodeClouds with
Thomson Reuters

Thomson Reuters

4.1
Compare
Oracle Cerner

Oracle Cerner

3.6
Compare
Chetu

Chetu

3.4
Compare
Duck Creek Technologies

Duck Creek Technologies

4.4
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • CodeClouds Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter