Premium Employer

i

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

Filter interviews by

Cloudkaptan Consultancy Services Interview Questions and Answers

Updated 4 Dec 2024
Popular Designations

11 Interview questions

A Senior Software Engineer was asked 9mo ago
Q. What is atomicity?
Ans. 

Atomicity refers to the property of a transaction in a database system that ensures all operations within the transaction are completed successfully or none at all.

  • Atomicity ensures that all operations within a transaction are completed successfully or none at all

  • If any operation within a transaction fails, the entire transaction is rolled back

  • Example: transferring money from one account to another - either the fu...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked 9mo ago
Q. What is denormalization?
Ans. 

Denormalization is the process of adding redundant data to a database to improve read performance.

  • Reduces the need for joins in queries

  • Increases read performance at the expense of slower writes

  • Commonly used in data warehousing and reporting applications

View all Senior Software Engineer interview questions
An Apprentice was asked 11mo ago
Q. Write a function that reverses a string. The input string is given as an array of characters s.
Ans. 

Reverse a string by iterating through the characters and swapping them.

  • Iterate through the string from both ends and swap the characters until reaching the middle.

  • Use a temporary variable to store the character being swapped.

  • Example: 'hello' -> 'olleh'

View all Apprentice interview questions
An Apprentice was asked 11mo ago
Q. What is abstraction?
Ans. 

Abstraction is the process of removing unnecessary details and focusing on essential characteristics.

  • Abstraction involves hiding complex implementation details and exposing only relevant information.

  • It helps in simplifying the problem-solving process by focusing on high-level concepts.

  • For example, in programming, classes and objects are used to implement abstraction by encapsulating data and methods.

  • Abstraction is...

View all Apprentice interview questions
An Apprentice was asked 11mo ago
Q. Write a recursive function to search for an element in an array.
Ans. 

Recursively search for an element in an array of strings

  • Create a recursive function that takes the array, target element, and current index as parameters

  • Check if the current index is out of bounds or if the element at the current index matches the target

  • If the element is found, return the index; otherwise, recursively call the function with the next index

View all Apprentice interview questions
An Automation Test Engineer was asked 12mo ago
Q. Define OOP and its pillars.
Ans. 

Opps stands for Object-oriented programming principles. Pillars refer to the four key concepts of OOP: Inheritance, Encapsulation, Abstraction, and Polymorphism.

  • Opps stands for Object-oriented programming principles

  • Pillars refer to Inheritance, Encapsulation, Abstraction, and Polymorphism

  • Inheritance allows a class to inherit properties and behavior from another class

  • Encapsulation restricts access to certain compon...

View all Automation Test Engineer interview questions
An Application Developer was asked
Q. What are the types of constructors, and can you demonstrate them with code?
Ans. 

There are two types of constructors in Java: default constructor and parameterized constructor.

  • Default constructor has no parameters and is automatically created by the compiler if no constructor is defined.

  • Parameterized constructor takes parameters and is used to initialize the object with specific values.

View all Application Developer interview questions
Are these interview questions helpful?
An Application Developer was asked
Q. Explain the pillars of OOPs.
Ans. 

Pillars of OOPs are four fundamental principles - Inheritance, Encapsulation, Abstraction, and Polymorphism.

  • Inheritance: Allows a class to inherit properties and behavior from another class.

  • Encapsulation: Bundling data and methods that operate on the data into a single unit.

  • Abstraction: Hiding the complex implementation details and showing only the necessary features.

  • Polymorphism: Ability to present the same inter...

View all Application Developer interview questions
An Application Developer was asked
Q. What is the difference between print and println in Java?
Ans. 

print() prints the output without moving to the next line, while println() prints the output and moves to the next line.

  • print() does not add a new line character at the end of the output

  • println() adds a new line character at the end of the output

  • Example: System.out.print("Hello"); // prints Hello without moving to the next line

  • Example: System.out.println("World"); // prints World and moves to the next line

View all Application Developer interview questions
An Application Developer was asked
Q. What is the difference between bubble sort and selection sort?
Ans. 

Bubble sort repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order. Selection sort selects the smallest element from the unsorted portion and swaps it with the first unsorted element.

  • Bubble sort has a time complexity of O(n^2) in worst case, while selection sort has a time complexity of O(n^2) in all cases.

  • Bubble sort is stable, meaning it preserves the relative...

View all Application Developer interview questions

Cloudkaptan Consultancy Services Interview Experiences

19 interviews found

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

(5 Questions)

  • Q1. Pillar of OOPs explain each parts.
  • Ans. 

    Pillars of OOPs are four fundamental principles - Inheritance, Encapsulation, Abstraction, and Polymorphism.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Abstraction: Hiding the complex implementation details and showing only the necessary features.

    • Polymorphism: Ability to present the same interface ...

  • Answered by AI
  • Q2. Types of constructor and demostrate it using code.
  • Ans. 

    There are two types of constructors in Java: default constructor and parameterized constructor.

    • Default constructor has no parameters and is automatically created by the compiler if no constructor is defined.

    • Parameterized constructor takes parameters and is used to initialize the object with specific values.

  • Answered by AI
  • Q3. Sorting of array in decending order and print 2nd smallest number without using inbuilt function.
  • Ans. 

    Sort array in descending order, find 2nd smallest number without using inbuilt function.

    • Iterate through the array and compare each element to find the smallest number.

    • Then iterate again to find the second smallest number.

    • Implement a sorting algorithm like bubble sort or selection sort to sort the array in descending order.

  • Answered by AI
  • Q4. Difference btw print and println in java
  • Ans. 

    print() prints the output without moving to the next line, while println() prints the output and moves to the next line.

    • print() does not add a new line character at the end of the output

    • println() adds a new line character at the end of the output

    • Example: System.out.print("Hello"); // prints Hello without moving to the next line

    • Example: System.out.println("World"); // prints World and moves to the next line

  • Answered by AI
  • Q5. Difference btw bubble sort and selection sort
  • Ans. 

    Bubble sort repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order. Selection sort selects the smallest element from the unsorted portion and swaps it with the first unsorted element.

    • Bubble sort has a time complexity of O(n^2) in worst case, while selection sort has a time complexity of O(n^2) in all cases.

    • Bubble sort is stable, meaning it preserves the relative orde...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was easy 1st round but too many rounds so it is difficult to qualify each round

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. React, JavaScript questions along with some in-built JS methods questions
Round 2 - Technical 

(1 Question)

  • Q1. React, JavaScript concepts along with some scenarios and what HTML+CSS solution to be provided in those scenarios

Interview Preparation Tips

Interview preparation tips for other job seekers - In the first round, two interviewers were there. They asked questions on React and JavaScript. They were fairly lineant.

I cleared the round and was asked to go do a face-to-face round. There were three interviewers. I was given an assignment. The interviewers themselves told my code was clean and I have pretty standard knowledge considering my years of experience. The interview went for about 1.5hrs instead of the actual 1hr. (I didn't take any extra time to complete the assignment.) I was asked a very trivial question in the end and I gave a smart answer to even that I feel.

After all of this, they sent a rejection mail. I asked for a constructive feedback on the same but wasn't provided any. I don't know what's the point to waste another person's day if you simply are not going to hire.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Apr 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

The first round was an aptitude test that assessed basic quantitative, logical reasoning, and verbal ability. This round was crucial in filtering out candidates and required a good grasp of basic math, logical thinking, and comprehension skills. Time management was key, as the questions were numerous and diverse in nature.

Round 2 - Coding Test 

The second round focused on coding skills, specifically in Java. Candidates were given 15 coding problems to solve within 90 minutes. The problems tested various aspects of data structure. Practicing competitive programming and familiarizing oneself with common algorithms and data structures can significantly help in this round.

Round 3 - Technical 

(1 Question)

  • Q1. The first technical interview was heavily focused on the core concepts of Java. Questions ranged from basic syntax and object-oriented programming (OOP) principles to more advanced topics such as multithre...
Round 4 - Technical 

(1 Question)

  • Q1. The second technical interview delved deeper into Java and data structures. Questions were more challenging and required a solid grasp of data structures like arrays, linked lists, stacks, queues. Addition...
Round 5 - One-on-one 

(2 Questions)

  • Q1. The final HR round was a mix of technical and traditional HR questions. Surprisingly, this round included additional data structure and algorithm (DSA) questions, ensuring that the candidate's technical kn...
  • Q2. 1.Do you use social media? What is the use of it? 2.Tell us about your hometown. 3.Why is your CGPA not very high? 4.What do you know about the Software 5.Development Life Cycle (SDLC)? 6.How will you cont...
  • Ans. 

    Yes, I use social media for networking and staying updated. I am from a small town with a close-knit community. My CGPA may not be high due to focusing on practical skills. I am familiar with SDLC and can contribute to Cloud Kaptan with my problem-solving abilities.

    • I use social media for networking with professionals in the industry and staying updated on the latest trends.

    • My hometown is a small town with a close-knit ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Cloudkaptan Consultancy Services Software Developer Trainee interview:
  • Java
  • DSA
  • OOPS
  • SDLC
  • DBMS
Interview preparation tips for other job seekers - Go through Java very well and having a strong problem solving skills will make your chance to get job in Cloud Kaptan very high.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is atomicity
  • Ans. 

    Atomicity refers to the property of a transaction in a database system that ensures all operations within the transaction are completed successfully or none at all.

    • Atomicity ensures that all operations within a transaction are completed successfully or none at all

    • If any operation within a transaction fails, the entire transaction is rolled back

    • Example: transferring money from one account to another - either the full am...

  • Answered by AI
  • Q2. What is denormalization
  • Ans. 

    Denormalization is the process of adding redundant data to a database to improve read performance.

    • Reduces the need for joins in queries

    • Increases read performance at the expense of slower writes

    • Commonly used in data warehousing and reporting applications

  • Answered by AI

Apprentice Interview Questions & Answers

user image Koushiki Manna

posted on 22 Jul 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Reverse a string
  • Ans. 

    Reverse a string by iterating through the characters and swapping them.

    • Iterate through the string from both ends and swap the characters until reaching the middle.

    • Use a temporary variable to store the character being swapped.

    • Example: 'hello' -> 'olleh'

  • Answered by AI
  • Q2. Search array element using recursion
  • Ans. 

    Recursively search for an element in an array of strings

    • Create a recursive function that takes the array, target element, and current index as parameters

    • Check if the current index is out of bounds or if the element at the current index matches the target

    • If the element is found, return the index; otherwise, recursively call the function with the next index

  • Answered by AI
  • Q3. What is abstraction
  • Ans. 

    Abstraction is the process of removing unnecessary details and focusing on essential characteristics.

    • Abstraction involves hiding complex implementation details and exposing only relevant information.

    • It helps in simplifying the problem-solving process by focusing on high-level concepts.

    • For example, in programming, classes and objects are used to implement abstraction by encapsulating data and methods.

    • Abstraction is a ke...

  • Answered by AI

Skills evaluated in this interview

Sdet Lead Interview Questions & Answers

user image Anonymous

posted on 14 Aug 2024

Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was moderate to easy

Round 2 - Coding Test 

It was tough and alot of problem solving

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

I applied via Campus Placement and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

90mins of basic quantitative and logical reasoning questions

Round 2 - Coding Test 

90mins of coding test 15 coding questions all on java. where 9 were coding questions and 6 on choose the correct code.

Round 3 - Technical 

(1 Question)

  • Q1. Basic java and oops concept questions. Two coding questions were given on codechef platform whilst sharing the screen.

Interview Preparation Tips

Interview preparation tips for other job seekers - Need to know java and oops to clear the round.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response
Round 1 - Aptitude Test 

This is easy round not very difficult answer s are easily available in google most of the student pass this round through google.

Round 2 - Coding Test 

They are very unpractical they give 5lpa but they give 5 or some time 8 question in exam and their difficulty level sometime very easy and very hard this is completely your luck.and time only 1 hour .Even their employee don't know DSA properly they just copy leetcode medium question and pest it

Round 3 - Technical 

(2 Questions)

  • Q1. Some interviewr even don't know the java properly and they ask many question but question level is easy and they take 2 coding question from gfg and they send this .They give 5lpa but the interview level s...
  • Q2. Oops related question
Round 4 - HR 

(1 Question)

  • Q1. This round basic things about you but some time they ask cn ,dbms in this round I don't know why they do this they have no fixed hiring process all about luck.
Round 5 - One-on-one 

(2 Questions)

  • Q1. This is ceo round and the round happen offline mode this is very bad round a candidate who clear 5 round they rejected in 1 sec in this round I don't know why ceo do this.
  • Q2. About yourself nothing happen

Interview Preparation Tips

Interview preparation tips for other job seekers - Please don't apply for this company they just harash you in ceo round .I don't why they do this.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Apti round are there… some technical questions

Round 2 - Coding Test 

Given 15 coding,3 mcq .

Round 3 - Technical 

(1 Question)

  • Q1. Define what is opps, pillers
  • Ans. 

    Opps stands for Object-oriented programming principles. Pillars refer to the four key concepts of OOP: Inheritance, Encapsulation, Abstraction, and Polymorphism.

    • Opps stands for Object-oriented programming principles

    • Pillars refer to Inheritance, Encapsulation, Abstraction, and Polymorphism

    • Inheritance allows a class to inherit properties and behavior from another class

    • Encapsulation restricts access to certain components ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Still under process
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

I applied via Referral and was interviewed in Aug 2023. There were 5 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 - Aptitude Test 

There is Aptitude based mcq.

Round 3 - Coding Test 

10 question 1.30 hr.

Round 4 - Technical 

(3 Questions)

  • Q1. Technical interview - Java complete+2 Coding ques live Solve. 1 hr total .
  • Q2. Java based questions.
  • Q3. Java based oops.
Round 5 - HR 

(1 Question)

  • Q1. HR based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - CEO round.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Question from oops and java

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident about java

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Cloudkaptan Consultancy Services?
Ask anonymously on communities.

Cloudkaptan Consultancy Services Interview FAQs

How many rounds are there in Cloudkaptan Consultancy Services interview?
Cloudkaptan Consultancy Services interview process usually has 3-4 rounds. The most common rounds in the Cloudkaptan Consultancy Services interview process are Technical, Coding Test and Aptitude Test.
How to prepare for Cloudkaptan Consultancy Services 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 Cloudkaptan Consultancy Services. The most common topics and skills that interviewers at Cloudkaptan Consultancy Services expect are Javascript, Salesforce, Python, JQuery and Java.
What are the top questions asked in Cloudkaptan Consultancy Services interview?

Some of the top questions asked at the Cloudkaptan Consultancy Services interview -

  1. 1.Do you use social media? What is the use of it? 2.Tell us about your hometown...read more
  2. Sorting of array in decending order and print 2nd smallest number without using...read more
  3. Difference btw bubble sort and selection s...read more
How long is the Cloudkaptan Consultancy Services interview process?

The duration of Cloudkaptan Consultancy Services 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

3.6/5

based on 21 interview experiences

Difficulty level

Easy 15%
Moderate 77%
Hard 8%

Duration

Less than 2 weeks 69%
2-4 weeks 23%
More than 8 weeks 8%
View more
Join Cloudkaptan Consultancy Services Committed to Excellence

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 51 Interviews
IT By Design Interview Questions
3.6
 • 41 Interviews
ConsultAdd Interview Questions
3.6
 • 37 Interviews
View all

Cloudkaptan Consultancy Services Reviews and Ratings

based on 55 reviews

4.3/5

Rating in categories

4.1

Skill development

3.7

Work-life balance

4.3

Salary

4.2

Job security

4.2

Company culture

4.3

Promotions

4.0

Work satisfaction

Explore 55 Reviews and Ratings
Jr. Accountant

Kolkata

0-1 Yrs

Not Disclosed

Full Stack Engineer

Kolkata

3-8 Yrs

Not Disclosed

Flutter Developer

Kolkata

3-8 Yrs

Not Disclosed

Explore more jobs
Software Engineer
89 salaries
unlock blur

₹4.5 L/yr - ₹11.3 L/yr

Senior Software Engineer
44 salaries
unlock blur

₹11.8 L/yr - ₹20 L/yr

Software Engineer Trainee
25 salaries
unlock blur

₹5 L/yr - ₹6 L/yr

Software Trainee
8 salaries
unlock blur

₹6 L/yr - ₹6 L/yr

Automation Test Engineer
8 salaries
unlock blur

₹7.5 L/yr - ₹12.5 L/yr

Explore more salaries
Compare Cloudkaptan Consultancy Services with

Maxgen Technologies

4.6
Compare

JoulestoWatts Business Solutions

3.1
Compare

Value Point Systems

3.6
Compare

F1 Info Solutions and Services

3.8
Compare
write
Share an Interview