Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Cludo Technology Consultants Team. If you also belong to the team, you can get access from here

Cludo Technology Consultants Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Cludo Technology Consultants Interview Questions and Answers

Updated 29 Dec 2023

Cludo Technology Consultants Interview Experiences

Popular Designations

2 interviews found

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

I applied via Campus Placement and was interviewed before Dec 2022. There were 3 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 

Not much, just simple maths, science, gs.

Round 3 - Technical 

(4 Questions)

  • Q1. Based on my projects. As my projects were based on MERN so, mostly asked about API's, mongoDB etc.
  • Q2. Also asked about hobbies and fields you are interested in.
  • Q3. Do you watch movies?
  • Q4. Tell me about the plot etc.
  • Ans. 

    The plot is about a group of software developers who embark on a mission to create a groundbreaking software application.

    • The story revolves around the challenges faced by the developers during the software development process.

    • It explores the dynamics within the team and their interactions with clients and stakeholders.

    • The plot may include elements of innovation, competition, and problem-solving.

    • Examples: The developers...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Cludo Technology Consultants Software Developer Trainee interview:
  • ASP.Net MVC
  • C#.Net
  • JQuery
  • ASP.Net Ajax
  • SQL Server
  • PHP
  • Codeigniter
  • HTML
  • CSS
Interview preparation tips for other job seekers - Don't try to join as it has worst work culture, environment.
No incentive upon your work.
Worst seniors running a syndicate, who doesn't helps you.
And if you are fresher then it is better to wait, work on your skill and apply at better companies.
If you stuck on any problem and not able to solve the problem the no one helps you.
You should not apply for . Net MVC role as you doesn't get any help.
Many freshers resigns because of this within 2-3 months.
Also salary is very less and after probation, you may get 3 months extension so that company has to pay less and make your work more.
Official work hours is 9:30 AM to 6:30 PM but after 1 week they don't let you go before 7 pm, and it increases day by day.
If you ask your senior, may I leave, they don't respond.

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)
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 - HR 

(2 Questions)

  • Q1. She wants to know about your experience!!
  • Q2. Comfortable for travel
  • Ans. 

    Yes

    • I am comfortable with travel and have experience traveling for work purposes.

    • I am familiar with the challenges and logistics involved in business travel.

    • I am adaptable and can easily adjust to different time zones and cultures.

    • I have a valid passport and am willing to travel internationally if required.

    • I am comfortable with long flights and can use travel time efficiently for work-related tasks.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, And find some other bater company. best for new comers

Technical Executive Interview Questions asked at other Companies

Q1. What are the type of building is living purpose?
View answer (4)

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed before Oct 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Technical 

(5 Questions)

  • Q1. Basic Java Questions
  • Q2. Coding, OOPS, Collections
  • Q3. L2 : Techno Manager Round
  • Q4. Project Overview
  • Q5. Spring Boot, Quarkus

Interview Preparation Tips

Interview preparation tips for other job seekers - Not much of compensation
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Coding Test 

1 medium-level leetcode question

Round 2 - Technical 

(2 Questions)

  • Q1. 1 String-based question
  • Q2. 1 Array-based question
Round 3 - Technical 

(1 Question)

  • Q1. Design in-memory file system
  • Ans. 

    Design an in-memory file system for efficient file storage and retrieval

    • Use a tree data structure to represent directories and files

    • Implement caching mechanisms to improve performance

    • Consider using hash tables for fast file lookup

    • Support file operations like read, write, delete, and search

    • Ensure data consistency and durability through proper error handling

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Coding Test 

First round will be coding test which will have Core java questions

Round 2 - Technical 

(4 Questions)

  • Q1. Type of Class Loaders available in java
  • Ans. 

    Java has three types of class loaders: Bootstrap Class Loader, Extension Class Loader, and System Class Loader.

    • Bootstrap Class Loader loads core Java classes located in the bootstrap classpath.

    • Extension Class Loader loads classes from the extensions directory.

    • System Class Loader loads classes from the classpath specified by the CLASSPATH environment variable.

  • Answered by AI
  • Q2. Coding question related find 3nd highest number with single loop and minimum time complexity.
  • Ans. 

    Use a single loop to find the 3rd highest number in an array with minimum time complexity.

    • Iterate through the array and keep track of the three highest numbers encountered so far.

    • Update the three highest numbers as you iterate through the array.

    • Return the third highest number once the loop is completed.

  • Answered by AI
  • Q3. What is diff between cyclicBarrier and countDownLatch?
  • Ans. 

    CyclicBarrier allows a group of threads to wait at a barrier until all threads have reached it, while CountDownLatch allows one or more threads to wait until a set of operations being performed in other threads completes.

    • CyclicBarrier is reusable, while CountDownLatch is not.

    • CyclicBarrier allows all threads to wait for each other, while CountDownLatch allows one thread to wait for others.

    • CyclicBarrier resets automatica...

  • Answered by AI
  • Q4. What is diff between JPARepository and CURDRepository?
  • Ans. 

    JPARepository is a Spring Data interface for JPA-based repositories, while CRUDRepository is a generic interface for CRUD operations.

    • JPARepository extends CRUDRepository and provides additional JPA-specific methods.

    • CRUDRepository is a generic interface for CRUD operations on a repository.

    • JPARepository is typically used for JPA-based repositories, while CRUDRepository can be used for any type of repository.

    • JPARepository...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Second round is pending

Skills evaluated in this interview

I was interviewed in Mar 2021.

Interview Questionnaire 

2 Questions

  • Q1. 1. Test consist of questions on Strings, HashMap, basic DS , 2. DS/Algo Round : Few Questions were asked on HashMap , Sort an array ...
  • Q2. Project Related, Technology Inclination, HTTP v/s HTTPS, diff Networking Protocols -> TCP, UDP ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on Hash Map's , Collection API's , Strings , Arrays ,
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

C++ on an idle in front of the Interviewer

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Why do you want to join this firm?
  • Ans. 

    I am impressed by the firm's innovative projects and collaborative work environment.

    • Impressed by innovative projects

    • Attracted to collaborative work environment

    • Excited about potential for growth and learning opportunities

  • Answered by AI
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed before Aug 2022. There were 3 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 - One-on-one 

(3 Questions)

  • Q1. Question on quick sort
  • Q2. Golang internals
  • Q3. Question on docker and kubernetes
Round 3 - One-on-one 

(1 Question)

  • Q1. Question on design pattern
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Good DSA knowledge requires

Round 2 - One-on-one 

(1 Question)

  • Q1. Merge sorted array
Round 3 - Technical 

(2 Questions)

  • Q1. Java questions, troubleshooting
  • Q2. Merge sorted array
Round 4 - Technical 

(1 Question)

  • Q1. Techno managerial
Round 5 - Aptitude Test 

Not applicable for details disclosure

Round 6 - HR 

(1 Question)

  • Q1. General questions

Cludo Technology Consultants Interview FAQs

How many rounds are there in Cludo Technology Consultants interview?
Cludo Technology Consultants interview process usually has 2-3 rounds. The most common rounds in the Cludo Technology Consultants interview process are Resume Shortlist, HR and Aptitude Test.
How to prepare for Cludo Technology Consultants 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 Cludo Technology Consultants. The most common topics and skills that interviewers at Cludo Technology Consultants expect are Java, Software, ASP.Net, ASP.Net MVC and Business Development.
What are the top questions asked in Cludo Technology Consultants interview?

Some of the top questions asked at the Cludo Technology Consultants interview -

  1. Tell me about the plot e...read more
  2. Comfortable for tra...read more
  3. Based on my projects. As my projects were based on MERN so, mostly asked about ...read more

Tell us how to improve this page.

Cludo Technology Consultants Interview Process

based on 3 interviews

Interview experience

4.7
  
Excellent
View more

Interview Questions from Similar Companies

Brane Enterprises Interview Questions
2.0
 • 133 Interviews
Winman Software Interview Questions
4.0
 • 29 Interviews
3Pillar Global Interview Questions
3.4
 • 19 Interviews
LogicMonitor Interview Questions
3.7
 • 14 Interviews
Ixia Solutions Interview Questions
2.7
 • 8 Interviews
SalesHandy Interview Questions
3.2
 • 6 Interviews
View all

Cludo Technology Consultants Reviews and Ratings

based on 26 reviews

4.1/5

Rating in categories

4.1

Skill development

3.7

Work-life balance

3.5

Salary

3.7

Job security

3.7

Company culture

3.7

Promotions

3.8

Work satisfaction

Explore 26 Reviews and Ratings
Software Engineer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Support Executive
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Delivery Manager
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Service Delivery Manager
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Cludo Technology Consultants with

Brane Enterprises

2.0
Compare

Duck Creek Technologies

4.4
Compare

Velozity Global Solutions

3.4
Compare

3Pillar Global

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