Upload Button Icon Add office photos
Engaged Employer

i

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

CodeClouds Verified Tick

Compare button icon Compare button icon Compare
4.5

based on 429 Reviews

Filter interviews by

CodeClouds Senior Software Engineer Interview Questions and Answers

Updated 13 Sep 2024

CodeClouds Senior Software Engineer Interview Experiences

2 interviews found

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

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

Round 1 - Coding Test 

They do a technical mock test

Round 2 - Technical 

(3 Questions)

  • Q1. Oop Concept questions
  • Q2. Database related Questions
  • Q3. SVN related Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Over all Experience was good. I recommend this company.
Round 1 - Technical 

(2 Questions)

  • Q1. Props and its role in
  • Q2. States and its role in
  • Ans. 

    States play a crucial role in the functioning of a country's government and administration.

    • States are administrative divisions within a country.

    • They have their own governments and are responsible for managing their own affairs.

    • States play a key role in the federal system of government, where power is shared between the central government and the states.

    • They are responsible for implementing policies and programs at the ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be cool. Calm and relax. Stay alert.

Senior Software Engineer Interview Questions Asked at Other Companies

asked in UST
Q1. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q2. Pascal's Triangle Construction You are provided with an integer ' ... read more
Q3. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in Info Edge
Q4. Buy and Sell Stock Problem Statement Imagine you are Harshad Meht ... read more
asked in DBS Bank
Q5. Tell me about yourself. What technology are you using? What is a ... read more

Interview questions from similar companies

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

(2 Questions)

  • Q1. Backend Questions regarding
  • Q2. UI Questions regarding Angular

Interview Preparation Tips

Interview preparation tips for other job seekers - Good
Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Java,oop, microservice, JPA
  • Q2. Spring boot , MySQL
Round 2 - Technical 

(2 Questions)

  • Q1. Java, spring boot
  • Q2. Microservice, rest api
Interview experience
3
Average
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Reverse link list
  • Q2. Count number of digits
  • Ans. 

    Count the number of digits in a given string

    • Iterate through each character in the string

    • Check if the character is a digit using isdigit() function

    • Increment a counter if the character is a digit

    • Return the final count of digits

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What is Apache Kafka?
  • Ans. 

    Apache Kafka is a distributed streaming platform used for building real-time data pipelines and streaming applications.

    • Apache Kafka is designed to handle high-throughput, fault-tolerant, and scalable real-time data streams.

    • It allows for the publishing and subscribing to streams of records, similar to a message queue.

    • Kafka is often used for log aggregation, stream processing, event sourcing, and real-time analytics.

    • It p...

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. How do you manage stress?

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Coding Test 

It started with basic introduction, than move ahead with Java, Spring boot question in the end, he asked one leetcode medium question based on DP . Ques : Find a minimum number of jumps required to reach the end of the array, and each index , it can jump arr[index] time at max, you need to calculate minimum number of steps required to reach at the end.

Interview Preparation Tips

Interview preparation tips for other job seekers - Java , Spring boot and Data structures
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Hacker rank coding tesr

Round 2 - Technical 

(2 Questions)

  • Q1. Relational database queries
  • Q2. Coding Question on JavaScript
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Job Portal and was interviewed in Mar 2023. There were 2 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 

(2 Questions)

  • Q1. Word formation Algorithm question
  • Q2. Architecture of project.
  • Ans. 

    The architecture of the project is based on microservices with a containerized approach using Docker and Kubernetes.

    • Utilizes microservices architecture for scalability and flexibility

    • Containerized approach using Docker for easy deployment and management

    • Orchestrated with Kubernetes for automated scaling and monitoring

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your introduction short because you might loose coding time for problem. They will end interview at sharp time. Unprofessional, and does not share the feedback.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jul 2023. There was 1 interview round.

Round 1 - Coding Test 

It was good ...questions were easy and straight forward..basic questions based on ds algo

I was interviewed before Mar 2021.

Round 1 - Technical 

(3 Questions)

  • Q1. How to check a number is power of 2
  • Ans. 

    To check if a number is a power of 2, we can use bitwise operations.

    • A power of 2 has only one bit set to 1, so we can use the bitwise AND operator to check if the number is a power of 2.

    • If n is a power of 2, then n & (n-1) will be 0.

    • For example, 8 (1000 in binary) is a power of 2, and 8 & 7 (0111 in binary) is 0.

  • Answered by AI
  • Q2. Sort a stack without using another data structure
  • Ans. 

    Sort a stack without using another data structure

    • Use recursion to pop the top element and insert it at the bottom of the remaining stack

    • Repeat until the stack is sorted in ascending order

    • Time complexity: O(n^2), space complexity: O(n) due to recursion

  • Answered by AI
  • Q3. Check weather array have continuous increasing than decreasing value
  • Ans. 

    Check if array has continuous increasing and decreasing values

    • Loop through the array and check if each element is greater than the previous one

    • Once you find the maximum element, check if the remaining elements are in decreasing order

    • If yes, return true else false

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Design a cricinfo (LLD)
  • Ans. 

    Design a cricinfo (LLD)

    • Identify the entities: players, teams, matches, scorecards, tournaments, etc.

    • Define the relationships between entities

    • Create a database schema to store the data

    • Implement APIs to fetch and update data

    • Design a UI to display the information

    • Consider scalability and performance

    • Ensure data security and privacy

  • Answered by AI
Round 3 - HR 

(3 Questions)

  • Q1. Share details of your previous job.
  • Q2. Why should we hire you?
  • Q3. What are your strengths and weaknesses?

Interview Preparation Tips

Interview preparation tips for other job seekers - Do study basic Data Structure questions and also prepare for Low level design.
Do work on behavioral questions too.

Skills evaluated in this interview

CodeClouds Interview FAQs

How many rounds are there in CodeClouds Senior Software Engineer interview?
CodeClouds interview process usually has 1-2 rounds. The most common rounds in the CodeClouds interview process are Technical and Coding Test.
What are the top questions asked in CodeClouds Senior Software Engineer interview?

Some of the top questions asked at the CodeClouds Senior Software Engineer interview -

  1. States and its role...read more
  2. Oop Concept questi...read more
  3. Database related Questi...read more

Tell us how to improve this page.

CodeClouds Senior Software Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
CodeClouds Senior Software Engineer Salary
based on 16 salaries
₹4.2 L/yr - ₹12.5 L/yr
51% less than the average Senior Software Engineer Salary in India
View more details

CodeClouds Senior Software Engineer Reviews and Ratings

based on 6 reviews

4.5/5

Rating in categories

4.1

Skill development

4.2

Work-life balance

4.5

Salary

4.6

Job security

4.5

Company culture

4.1

Promotions

4.3

Work satisfaction

Explore 6 Reviews and Ratings
Web Developer
192 salaries
unlock blur

₹2.4 L/yr - ₹8.1 L/yr

Senior Web Developer
77 salaries
unlock blur

₹4.2 L/yr - ₹10.5 L/yr

Html Developer
57 salaries
unlock blur

₹2.4 L/yr - ₹7.5 L/yr

Quality Analyst
45 salaries
unlock blur

₹3 L/yr - ₹8.4 L/yr

Front end Developer
38 salaries
unlock blur

₹3.1 L/yr - ₹9 L/yr

Explore more salaries
Compare CodeClouds with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

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