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 31 May 2025
Popular Designations

22 Interview questions

A Java Software Developer was asked 2mo 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 2mo 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
A Java Software Developer was asked 2mo 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 5mo 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

What people are saying about CodeClouds

View All
a team lead
1w
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.
An Intern was asked 5mo 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
An Intern was asked 5mo 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 6mo ago
Q. 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'].

View all Web Developer interview questions
Are these interview questions helpful?
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
A Senior Web Developer was asked
Q. What is the difference between Traits and Interfaces?
Ans. 

Traits are reusable code blocks that can be mixed into classes, while interfaces define a contract that a class must follow.

  • Traits can be used to add methods to a class without inheritance

  • Interfaces define a set of methods that a class must implement

  • A class can implement multiple interfaces, but can only inherit from one class

  • Traits promote code reusability and reduce code duplication

View all Senior Web Developer interview questions

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
  • 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 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

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
  • 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
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
  • Q2. Base web development related questions
Round 2 - Technical 

(2 Questions)

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

(2 Questions)

  • Q1. Basic questions
  • 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
Round 4 - Coding Test 

Web development related coding questions

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.

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.

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 Interview Questions
3.3
 • 198 Interviews
AVASOFT Interview Questions
2.8
 • 174 Interviews
Grey Orange Interview Questions
3.2
 • 40 Interviews
Mobileum Interview Questions
3.3
 • 38 Interviews
SirionLabs Interview Questions
3.8
 • 26 Interviews
SOTI Interview Questions
3.2
 • 24 Interviews
Replicon Interview Questions
3.8
 • 21 Interviews
View all

CodeClouds Reviews and Ratings

based on 394 reviews

4.4/5

Rating in categories

4.2

Skill development

4.4

Work-life balance

4.3

Salary

4.2

Job security

4.4

Company culture

4.1

Promotions

4.2

Work satisfaction

Explore 394 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
208 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

4.1
Compare

Oracle Cerner

3.6
Compare

Duck Creek Technologies

4.4
Compare

FinThrive

3.7
Compare
write
Share an Interview