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

Cloudkaptan Consultancy Services Verified Tick

Compare button icon Compare button icon Compare
4.5

based on 152 Reviews

Filter interviews by

Cloudkaptan Consultancy Services Interview Questions, Process, and Tips

Updated 4 Dec 2024

Top Cloudkaptan Consultancy Services Interview Questions and Answers

View all 13 questions

Cloudkaptan Consultancy Services Interview Experiences

Popular Designations

19 interviews found

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.

Front end Developer Interview Questions asked at other Companies

Q1. Non-Decreasing ArrayYou have been given an integer array/list 'ARR' of size 'N'. Write a solution to check if it could become non-decreasing by modifying at most 1 element. We define an array as non-decreasing, if ARR[i] <= ARR[i + 1] ho... read more
View answer (6)
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.

Software Developer Trainee Interview Questions asked at other Companies

Q1. 1. Tell me about your self 2. Difference Between c & c++. 3. what is class? 4. what is object? 5. what is polymorphism? types of polymorphism explain real example of polymorphism. 6. what is inheritence? Difference between multiple &amp... read more
View answer (2)
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

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)
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

Application Developer Interview Questions asked at other Companies

Q1. Reverse Linked ListGiven a singly linked list of integers. Your task is to return the head of the reversed linked list. For example: The given linked list is 1 -> 2 -> 3 -> 4-> NULL. Then the reverse linked list is 4 -> 3 -&g... read more
View answer (6)

Cloudkaptan Consultancy Services interview questions for popular designations

 Software Engineer

 (4)

 Software Engineer Trainee

 (3)

 Senior Software Engineer

 (2)

 Application Developer

 (1)

 Apprentice

 (1)

 Apprenticeship Trainee

 (1)

 Automation Test Engineer

 (1)

 Front end Developer

 (1)

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

Apprentice Interview Questions asked at other Companies

Q1. 3. What do you know about artificial intelligence and Machine learning?
View answer (2)

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

Sdet Lead Interview Questions asked at other Companies

Q1. write a palindrome program without using any in-build method. if there are 500 test cases and need to run only 50 test cases, then how to approach and do it? what is the framework used in your project? how will you handle if a team member w... read more
View answer (1)
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.

Technical Apprentice Trainee Interview Questions asked at other Companies

Q1. What is power rating of ceiling fan used in our houses?
View answer (1)
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.

Software Engineer Trainee Interview Questions asked at other Companies

Q1. Palindromic Linked ListYou are given a singly Linked List of integers. Your task is to return true if the given singly linked list is a palindrome otherwise returns false. For example: The given linked list is 1 -> 2 -> 3 -> 2->... read more
View answer (4)
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

Automation Test Engineer Interview Questions asked at other Companies

Q1. How to handle scrollbar and mouse activities Jenkins and Github Story Point in Agile
Backlogs in Agile
Jira workflow explain framework pom.xml wap number reverse program StellException
Exception in Selenium diff - getwindowhandles() and get... read more
View answer (2)
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.

Software Engineer Trainee Interview Questions asked at other Companies

Q1. Palindromic Linked ListYou are given a singly Linked List of integers. Your task is to return true if the given singly linked list is a palindrome otherwise returns false. For example: The given linked list is 1 -> 2 -> 3 -> 2->... read more
View answer (4)

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, Aptitude Test and Coding 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, JQuery, Python and Data Warehousing.
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.

Cloudkaptan Consultancy Services Interview Process

based on 21 interviews

Interview experience

3.6
  
Good
View more
Join Cloudkaptan Consultancy Services Committed to Excellence

Interview Questions from Similar Companies

Magic Edtech Interview Questions
3.1
 • 48 Interviews
Affine Interview Questions
3.5
 • 48 Interviews
IT By Design Interview Questions
4.0
 • 36 Interviews
ConsultAdd Interview Questions
3.7
 • 36 Interviews
Junglee Games Interview Questions
3.2
 • 32 Interviews
View all

Cloudkaptan Consultancy Services Reviews and Ratings

based on 152 reviews

4.5/5

Rating in categories

4.4

Skill development

3.9

Work-life balance

4.4

Salary

4.5

Job security

4.5

Company culture

4.4

Promotions

4.3

Work satisfaction

Explore 152 Reviews and Ratings
Software Engineer
65 salaries
unlock blur

₹5 L/yr - ₹12.2 L/yr

Senior Software Engineer
30 salaries
unlock blur

₹10 L/yr - ₹20 L/yr

Software Engineer Trainee
16 salaries
unlock blur

₹5 L/yr - ₹5 L/yr

Automation Test Engineer
7 salaries
unlock blur

₹7.5 L/yr - ₹12.5 L/yr

Lead Engineer
6 salaries
unlock blur

₹22 L/yr - ₹28 L/yr

Explore more salaries
Compare Cloudkaptan Consultancy Services with

Maxgen Technologies

4.5
Compare

VDart

4.5
Compare

ANR Software Private Limited

4.5
Compare

Magic Edtech

3.1
Compare
Did you find this page helpful?
Yes No
write
Share an Interview