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 Software Developer Trainee Interview Questions and Answers

Updated 29 Dec 2023

Cludo Technology Consultants Software Developer Trainee Interview Experiences

1 interview 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.

Interview questions from similar companies

I appeared for an interview before Mar 2020.

Interview Questionnaire 

1 Question

  • Q1. Given the distances between bus stops, and the charges, you need to find the ticket price as per the given condition.

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview consisted of three rounds.
First round was a written test, wherein 3 questions were asked based on quantitative aptitude and logical reasoning. Questions were not of multiple choice and you had to pen in your answers.
Second round was an HR round, which was more like a casual interaction with the HR. They then give you technical training where you got to develop some formulae to the given problem statement. You can make your decision, whether you would want to continue with the job or not at this stage, as the type of work you do during the technical training is similar to the one you do after getting in to the job.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Tell if a binary tree is BST or not
  • Ans. 

    Check if a binary tree is a Binary Search Tree (BST) or not

    • In a BST, the left subtree of a node contains only nodes with keys less than the node's key, and the right subtree contains only nodes with keys greater than the node's key

    • Perform an in-order traversal of the binary tree and check if the resulting array is sorted

    • Keep track of the minimum and maximum values allowed for each node while traversing the tree

  • Answered by AI
  • Q2. Three sum problem
Round 2 - Technical 

(2 Questions)

  • Q1. Concepts of OOPs. Gave a code to read and implement a function with a given input using OOPs concept.
  • Q2. Reverse a linked list
  • Ans. 

    Reverse a singly linked list and return the reversed list.

    • Iterate through the linked list and reverse the pointers

    • Use three pointers to keep track of current, previous, and next nodes

    • Update the head pointer to the last node as the new head

  • Answered by AI

Skills evaluated in this interview

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

Practice standard questions

Round 2 - Technical 

(2 Questions)

  • Q1. Search in rotated sorted array
  • Ans. 

    Search for a target element in a rotated sorted array.

    • Use binary search to find the pivot point where the array is rotated.

    • Divide the array into two sorted subarrays based on the pivot point.

    • Perform binary search on the appropriate subarray to find the target element.

  • Answered by AI
  • Q2. Trim a bst in leet code
  • Ans. 

    Trim a binary search tree by removing nodes outside a given range.

    • Start by checking if the root node is within the given range.

    • If the root node is outside the range, trim it by recursively trimming its left or right subtree.

    • If the root node is within the range, recursively trim its left and right subtrees.

  • 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 Campus Placement and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Gave alien dictionary (hard question) from gfg.

Round 2 - One-on-one 

(1 Question)

  • Q1. Gave medium questions from graph, basically BFS, DFS questions. Left view of a BST.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA properly, mainly focus on medium questions.
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Based on job description
Round 2 - Technical 

(1 Question)

  • Q1. Some artchitecture questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

3 - 4 DSA questions from GeeksforGeeks

Round 2 - One-on-one 

(2 Questions)

  • Q1. Describe OOPS concepts in java
  • Ans. 

    OOPS concepts in Java are the principles of Object-Oriented Programming such as Inheritance, Encapsulation, Polymorphism, and Abstraction.

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

    • Polymorphism: Ability of a method to do different things based on the object it is acting upon.

    • Abstraction: Hiding th...

  • Answered by AI
  • Q2. DSA questions mostly easy to moderate

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Rotten oranges question can be found on leetcode
Round 2 - Technical 

(1 Question)

  • Q1. Trie data structure implementation
  • Ans. 

    Trie is a tree data structure used for efficient retrieval of key-value pairs.

    • Trie is typically used for storing and searching strings efficiently.

    • Each node in a trie represents a single character of a string.

    • Trie allows for prefix search, making it useful for autocomplete features.

    • Common operations on a trie include insertion, deletion, and search.

    • Example: Trie data structure can be used to implement a dictionary with

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. OOPS concepts is must .
  • Q2. Basic java like super, this keywords etc
Interview experience
4
Good
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Sep 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Two basic DSA questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. How to reverse a string
  • Ans. 

    To reverse a string, iterate through the characters and swap the first and last characters until reaching the middle.

    • Create a function that takes a string as input

    • Initialize two pointers, one at the beginning and one at the end of the string

    • Swap the characters at the two pointers and move them towards the center until they meet

  • Answered by AI
  • Q2. Oops concept questions
Round 3 - One-on-one 

(2 Questions)

  • Q1. How to add two numbers which are given as linked lists
  • Ans. 

    To add two numbers given as linked lists, iterate through both lists simultaneously and keep track of carry.

    • Iterate through both linked lists simultaneously

    • Keep track of carry while adding digits

    • Create a new linked list to store the result

  • Answered by AI
  • Q2. Project disscussion

Skills evaluated in this interview

Cludo Technology Consultants Interview FAQs

How many rounds are there in Cludo Technology Consultants Software Developer Trainee interview?
Cludo Technology Consultants interview process usually has 3 rounds. The most common rounds in the Cludo Technology Consultants interview process are Resume Shortlist, Aptitude Test and Technical.
What are the top questions asked in Cludo Technology Consultants Software Developer Trainee interview?

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

  1. Tell me about the plot e...read more
  2. 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 Software Developer Trainee Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Brane Enterprises Interview Questions
2.0
 • 136 Interviews
Acies Interview Questions
3.7
 • 36 Interviews
Winman Software Interview Questions
4.0
 • 29 Interviews
3Pillar Global Interview Questions
3.3
 • 19 Interviews
LogicMonitor Interview Questions
3.7
 • 14 Interviews
Ixia Solutions Interview Questions
2.7
 • 8 Interviews
SalesHandy Interview Questions
3.4
 • 6 Interviews
ETON SOLUTIONS Interview Questions
2.5
 • 5 Interviews
View all
Software Engineer
4 salaries
unlock blur

₹1.4 L/yr - ₹2 L/yr

Technical Support Executive
4 salaries
unlock blur

₹1.2 L/yr - ₹1.6 L/yr

Software Developer
3 salaries
unlock blur

₹1.8 L/yr - ₹2.4 L/yr

Delivery Manager
3 salaries
unlock blur

₹1.4 L/yr - ₹3.6 L/yr

Service Delivery Manager
3 salaries
unlock blur

₹3 L/yr - ₹3.1 L/yr

Explore more salaries
Compare Cludo Technology Consultants with

Brane Enterprises

2.0
Compare

Duck Creek Technologies

4.4
Compare

3Pillar Global

3.3
Compare

Winman Software

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