Upload Button Icon Add office photos
Engaged Employer

i

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

Cloud Analogy Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Cloud Analogy Interview Questions, Process, and Tips

Updated 16 Feb 2025

Top Cloud Analogy Interview Questions and Answers

View all 36 questions

Cloud Analogy Interview Experiences

Popular Designations

40 interviews found

I was interviewed in Feb 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 minutes
Round difficulty - Easy

  • Q1. 

    Count Good Subsets Problem Statement

    Given an array ARR of size N consisting of distinct elements, your task is to determine the total number of good subsets. A subset is considered a good subset if the e...

  • Ans. 

    Count the total number of good subsets in an array where elements can be rearranged to divide the next element.

    • Iterate through all possible subsets of the array.

    • Check if each subset is a good subset by rearranging elements to divide the next element.

    • Count the number of good subsets and return the total count.

  • Answered by AI
  • Q2. 

    Ways To Make Coin Change

    Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these coins. If it's not possible to make...

  • Ans. 

    The task is to find the total number of ways to make change for a specified value using given denominations.

    • Use dynamic programming to solve this problem efficiently.

    • Create a 2D array to store the number of ways to make change for each value up to the specified value.

    • Iterate through each denomination and update the array accordingly.

    • The final answer will be stored in the last cell of the array.

    • Example: For N=3, D=[1, 2...

  • Answered by AI
Round 2 - HR 

Round duration - 15 Minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in NoidaEligibility criteria60%Cloud Analogy interview preparation:Topics to prepare for the interview - Aptitude , Data structures , OOPs , DBMS , Algorithms , Any programming languageTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice aptitude from prep bytes
Tip 2 : Prepare mostly interview asked questions
Tip 3 : Revise your projects and all details of resume

Application resume tips for other job seekers

Tip 1 : Have projects in your resume , do not copy project from somewhere else
Tip 2 : You should know what you write in your CV

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Cloud Analogy Software Developer Interview Questions and Answers

Q1. Count Good Subsets Problem Statement Given an array ARR of size N consisting of distinct elements, your task is to determine the total number of good subsets. A subset is considered a good subset if the elements can be rearranged such that ... read more
View answer (2)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Interview Questionnaire 

3 Questions

  • Q1. Basics of Programming (C, C++, Java).
  • Q2. Basic Programs in any language (I prefer C language)
  • Q3. Tell me about yourself

Top Cloud Analogy Software Developer Interview Questions and Answers

Q1. Count Good Subsets Problem Statement Given an array ARR of size N consisting of distinct elements, your task is to determine the total number of good subsets. A subset is considered a good subset if the elements can be rearranged such that ... read more
View answer (2)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Sep 2022. 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 - HR 

(3 Questions)

  • Q1. About your job profile
  • Q2. Taxation and gst
  • Q3. TDS, ITR ( Accounts Payable/Receivable

Associate Accountant Interview Questions asked at other Companies

Q1. How to do balancesheet reconciliation
View answer (1)

I was interviewed in Feb 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

It was in the evening around 5 PM. Platform used for this round was hackerrank. Questions were more of aptitude based and are of moderate level.

  • Q1. 

    Sum of Minimum and Maximum Elements of All Subarrays of Size K

    You are provided with an array containing N integers along with an integer K. Your task is to compute the total sum of the minimum and maximu...

  • Ans. 

    Calculate the sum of minimum and maximum elements of all subarrays of size K in an array.

    • Iterate through the array and maintain a deque to store the indices of elements in the current window of size K.

    • Keep track of the minimum and maximum elements in the current window and update the sum accordingly.

    • Return the total sum of minimum and maximum elements for all subarrays of size K.

  • Answered by AI
Round 2 - HR 

Round duration - 20 minutes
Round difficulty - Easy

It was late night. Interviewer was asking tricky questions to confuse me

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in GurgaonEligibility criteriaCo cubesCloud Analogy interview preparation:Topics to prepare for the interview - Data Structures, DBMS, Algorithms, Aptitude, Coding, OOPS, PythonTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice a lot from trusted websites 
Tip 2 : Self study is best to tackle any critical questions
Tip 3 : Research about the company thoroughly

Application resume tips for other job seekers

Tip 1 : It should look good to interviewer
Tip 2 : Skills and projects should be filled nicely
Tip 3 : Format should be proper.

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

Cloud Analogy interview questions for popular designations

 Software Developer

 (8)

 Salesforce Developer

 (7)

 Quality Analyst

 (3)

 Senior Content Writer

 (1)

 Business Development Manager

 (1)

 Software Developer Trainee

 (1)

 Java Developer

 (1)

 Inside Sales Manager

 (1)

I was interviewed before Nov 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 50 minutes
Round difficulty - Easy

It was conducted on an online platform which was unknown for us as they sent the link of the test on the mails of the students. It contains 40 questions that were related to the C/C++ language in the MCQ format.

  • Q1. 

    Star Pattern Generation

    Develop a function to print star patterns based on the given number of rows 'N'. Each row in the pattern should follow the format demonstrated in the example.

    The picture illustra...

  • Ans. 

    Function to print star patterns based on the given number of rows 'N'.

    • Iterate through each row from 1 to N

    • For each row, print spaces (N-row) followed by stars (2*row-1)

    • Repeat until all rows are printed

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

  • Q1. 

    Reverse Linked List Problem Statement

    Given a singly linked list of integers, return the head of the reversed linked list.

    Example:

    Initial linked list: 1 -> 2 -> 3 -> 4 -> NULL
    Reversed link...
  • Ans. 

    Reverse a singly linked list of integers and return the head of the reversed linked list.

    • Iterate through the linked list and reverse the pointers to point to the previous node.

    • Keep track of the current, previous, and next nodes while reversing the linked list.

    • Update the head of the reversed linked list as the last node encountered during reversal.

  • Answered by AI
Round 3 - HR 

Round duration - 15 minutes
Round difficulty - Medium

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in KurukshetraEligibility criteriaAbove 60%Cloud Analogy interview preparation:Topics to prepare for the interview - Data Structures, OOPS, Ajax, JavaScript, AlgorithmsTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Practice on Hackerrank
Tip 2 : Do atleast 3 projects.
Tip 3 : Must have knowledge of technical skills mentioned in CV

Application resume tips for other job seekers

Tip 1 : Must be short and effective.
Tip 2 : Do not false things on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

Top Cloud Analogy Software Developer Interview Questions and Answers

Q1. Count Good Subsets Problem Statement Given an array ARR of size N consisting of distinct elements, your task is to determine the total number of good subsets. A subset is considered a good subset if the elements can be rearranged such that ... read more
View answer (2)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Get interview-ready with Top Cloud Analogy Interview Questions

I applied via Campus Placement and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Write the code to reverse the string
  • Ans. 

    Code to reverse a string

    • Use a loop to iterate through the string

    • Create a new string and add each character from the original string in reverse order

    • Return the new string

  • Answered by AI
  • Q2. How to overload constructor in Python?
  • Ans. 

    Overloading constructor in Python allows creating multiple constructors with different parameters.

    • Define multiple constructors with different parameters

    • Use default values for optional parameters

    • Call the appropriate constructor based on the number and type of arguments passed

  • Answered by AI
  • Q3. How to remove leading whitespaces from a string in the Python
  • Ans. 

    Python provides a built-in method to remove leading whitespaces from a string.

    • Use the lstrip() method to remove leading whitespaces from a string.

    • lstrip() method removes all whitespaces from the beginning of the string.

    • Example: string = ' Hello World' string.lstrip() Output: 'Hello World'

  • Answered by AI
  • Q4. Why we use tuple, difference between tuple and list and some basic questions on data structure .
  • Q5. Oops concepts
  • Q6. Write code to create pattern { star (*) pattern was given }
  • Ans. 

    Code to create a star pattern

    • Use nested loops to print the pattern

    • The outer loop controls the number of rows

    • The inner loop controls the number of stars to print in each row

    • Use a combination of spaces and stars to create the pattern

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - First round will be a MCQ round, not too tough only basic questions.

Main is Interview :
For Technical interview ;
Prepare some data structure questions available over internet .
Prepare any language for pattern and some basic 5-6 line code .

That's it . HR round is normal
Tell me about yourself , Why cloud analogy , any experience , what is cloud computing and some basic HR questions as your likes , dislikes etc .

Skills evaluated in this interview

Top Cloud Analogy Salesforce Developer Interview Questions and Answers

Q1. How to remove leading whitespaces from a string in the Python
View answer (1)

Salesforce Developer Interview Questions asked at other Companies

Q1. Write a trigger to update contact when accounts phone changed.
View answer (6)

I was interviewed in Oct 2020.

Round 1 - Coding Test 

Round duration - 60 minutes
Round difficulty - Medium

Round 2 - Coding Test 

(1 Question)

Round duration - 40 minutes
Round difficulty - Medium

  • Q1. 

    Count Subsequences Problem Statement

    Given an integer array ARR of size N, your task is to find the total number of subsequences in which all elements are equal.

    Explanation:

    A subsequence of an array i...

  • Ans. 

    The task is to find the total number of subsequences in which all elements are equal in an integer array.

    • Iterate through the array and count the frequency of each element.

    • For each element, calculate the number of subsequences with all elements equal using the formula (frequency * (frequency - 1) / 2).

    • Sum up the counts for all elements and return the result modulo 10^9 + 7.

  • Answered by AI
Round 3 - HR 

Round duration - 15 minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in NoidaEligibility criteriaCo cubesCloud Analogy interview preparation:Topics to prepare for the interview - Data Structures, DBMS, Algorithms, Aptitude, CodingTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice a lot from trusted websites 
Tip 2 : Self study is best to tackle any critical questions

Application resume tips for other job seekers

Tip 1 : It should look good to interviewer
Tip 2 : Skills and projects should be filled nicely

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Cloud Analogy Software Developer Interview Questions and Answers

Q1. Count Good Subsets Problem Statement Given an array ARR of size N consisting of distinct elements, your task is to determine the total number of good subsets. A subset is considered a good subset if the elements can be rearranged such that ... read more
View answer (2)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Interview Questionnaire 

1 Question

  • Q1. About myself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Was confident about what to speak and when to speak

Inside Sales Manager Interview Questions asked at other Companies

Q1. What are the strategies do you use to achieve sales target
View answer (2)

I applied via Campus Placement and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. About theory of testing.
  • Q2. Very simple questions of testing

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with theory

Quality Analyst Interview Questions asked at other Companies

Q1. How you will maintain the balance between operations and quality so that they do not have any conflicts of interest
View answer (3)

I applied via Campus Placement and was interviewed in Oct 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. All questions related to testing and according to your experience also.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview process was time taking and it was an online process but it was really a nice experience.
One will have 3 to 4 rounds.
HR also give responce to your mail.

Quality Analyst Interview Questions asked at other Companies

Q1. How you will maintain the balance between operations and quality so that they do not have any conflicts of interest
View answer (3)

Cloud Analogy Interview FAQs

How many rounds are there in Cloud Analogy interview?
Cloud Analogy interview process usually has 2-3 rounds. The most common rounds in the Cloud Analogy interview process are Technical, HR and Resume Shortlist.
How to prepare for Cloud Analogy 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 Cloud Analogy. The most common topics and skills that interviewers at Cloud Analogy expect are Articles, Blogs, Content Development, Content Writing and Creative Writing.
What are the top questions asked in Cloud Analogy interview?

Some of the top questions asked at the Cloud Analogy interview -

  1. How to remove leading whitespaces from a string in the Pyt...read more
  2. Write code to create pattern { star (*) pattern was give...read more
  3. You are given a series of strings: ['asa', 'adsf', 'das2g', 'dasd4', 'ds230']. ...read more
How long is the Cloud Analogy interview process?

The duration of Cloud Analogy interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Cloud Analogy Interview Process

based on 32 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
MAQ Software Interview Questions
1.9
 • 100 Interviews
View all

Cloud Analogy Reviews and Ratings

based on 157 reviews

3.6/5

Rating in categories

3.6

Skill development

3.4

Work-life balance

3.6

Salary

3.0

Job security

3.3

Company culture

3.5

Promotions

3.5

Work satisfaction

Explore 157 Reviews and Ratings
Salesforce Developer
324 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Salesforce Administrator
65 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Quality Analyst
63 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Full Stack Developer
39 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Salesforce Developer
34 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Cloud Analogy with

Cognizant

3.7
Compare

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

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