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

Filter interviews by

Cloudkaptan Consultancy Services Application Developer Interview Questions, Process, and Tips

Updated 7 Apr 2024

Cloudkaptan Consultancy Services Application Developer Interview Experiences

1 interview 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 questions from similar companies

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

It is MCQ based test which contain both aptitude and technical question

Round 2 - Technical 

(1 Question)

  • Q1. Technical question was asked
Round 3 - HR 

(1 Question)

  • Q1. HR question was asked
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 

Reasoning
math
English
java
JavaScript

Round 3 - Coding Test 

Java based questions

Round 4 - HR 

(2 Questions)

  • Q1. About yourself, what you expect in next five years
  • Q2. Salary expectation, always expect high because they negotiate very much

Interview Preparation Tips

Interview preparation tips for other job seekers - Candidates Should have Good Communication,
Java based code.
Don't hesitate to ask Salary Expectation , Say Higher as you Expect
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Question asked from javascript and Angular.
Round 2 - Behavioral 

(1 Question)

  • Q1. Asking how will you handle pressure and whats your strength and weekness.
Round 3 - HR 

(1 Question)

  • Q1. Discussion on Salary negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - I have given my interview for the role of Software Developer, the recruiter schedule an interview:-
1. Techincal Round - clear
2. Managerial Round- clear
The recruiter(Talent Acquisition Team) told me that they will give hike on current salary but in HR round they lied and said company will hire you on current salary after disscussing with HR on salary negotiation i agreed with the same package because at that time I was unemployed.
He said will give you an update regarding offer letter, From that date he never came back and does not release offer letter i followup with recruiter, I called several times but she doesn't pick my call even not replying on msg/whatsapp.

My advice for jobseekers to stay away from this company it will waste your time and energy.
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Quant and sql questions were asked plus basic C

Round 2 - Coding Test 

Basic to medium level DSA questions were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare strong fundamentals

I applied via Walk-in and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test

Round 2 - Group Discussion 

Current affairs

Round 3 - Technical 

(1 Question)

  • Q1. Puzzle , sql related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself, whatever you know just be confident
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - Coding Test 

60mintues DSA level coding exam

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. React js, ReactHooks, es67 features, bootstrap
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Closures, hostings, react js, redux, hooks basic
  • Q2. Html5, css3, basic javascript stuff

I applied via Campus Placement and was interviewed before Sep 2021. 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 - Aptitude Test 

Questions related to reasoning, some puzzles.

Round 3 - Coding Test 

Coding problems related to C.

Round 4 - Technical 

(2 Questions)

  • Q1. Question related to 3 candle puzzle.
  • Q2. Linked List Graph Queue Algorithm
  • Ans. 

    Linked List Graph Queue Algorithm is a data structure used to represent graphs and perform operations on them.

    • Linked List Graph Queue Algorithm is used to represent graphs as a collection of nodes and edges.

    • It is used to perform operations like traversal, searching, and sorting on graphs.

    • It is implemented using linked lists to store the nodes and edges of the graph and a queue to perform operations on them.

    • Example: Bre...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview is easy to crack. Sometimes there are questions related to puzzle. Take your time and answer

Skills evaluated in this interview

Cloudkaptan Consultancy Services Interview FAQs

How many rounds are there in Cloudkaptan Consultancy Services Application Developer interview?
Cloudkaptan Consultancy Services interview process usually has 1 rounds. The most common rounds in the Cloudkaptan Consultancy Services interview process are Technical.
What are the top questions asked in Cloudkaptan Consultancy Services Application Developer interview?

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

  1. Sorting of array in decending order and print 2nd smallest number without using...read more
  2. Difference btw bubble sort and selection s...read more
  3. Types of constructor and demostrate it using co...read more

Tell us how to improve this page.

Cloudkaptan Consultancy Services Application Developer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Join Cloudkaptan Consultancy Services Committed to Excellence

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 49 Interviews
IT By Design Interview Questions
3.5
 • 40 Interviews
ConsultAdd Interview Questions
3.5
 • 36 Interviews
View all
Software Engineer
68 salaries
unlock blur

₹5 L/yr - ₹14 L/yr

Senior Software Engineer
34 salaries
unlock blur

₹10 L/yr - ₹20 L/yr

Software Engineer Trainee
18 salaries
unlock blur

₹3 L/yr - ₹8.1 L/yr

Software Trainee
10 salaries
unlock blur

₹5 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

Value Point Systems

3.6
Compare

JoulestoWatts Business Solutions

2.9
Compare

F1 Info Solutions and Services

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