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 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)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jan 2025.

Round 1 - Aptitude Test 

Proficient in problem-solving.

Round 2 - Coding Test 

I am skilled at coding, but I do not practice daily.

Round 3 - Case Study 

Good at case study time

Round 4 - HR 

(1 Question)

  • Q1. Can you tell me about yourself?
Round 5 - One-on-one 

(2 Questions)

  • Q1. I have no idea about this round
  • Q2. Nothing to ask about anything
Round 6 - Technical 

(2 Questions)

  • Q1. What types of questions do companies typically ask during interviews?
  • Q2. Nothing to ask about technical round
Round 7 - Group Discussion 

I may not excel in group discussions, but I possess a considerable amount of knowledge.

Round 8 - Assignment 

I always give my best in any task.

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing to share anything

AWS Cloud Engineer Interview Questions asked at other Companies

Q1. What is DDOS Attack and what you will use to prevent it.
View answer (1)
Cloud Analogy Interview Questions and Answers for Freshers
illustration image
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Aptitude Test 

Number system , lcm ,hcf ,blood relations

Round 2 - Technical 

(6 Questions)

  • Q1. Find that aray is palindrome or not ?
  • Ans. 

    Check if array of strings is a palindrome or not.

    • Iterate through the array and compare each string with its reverse to check for palindrome.

    • Ignore spaces and punctuation while checking for palindrome.

    • Example: ['madam', 'racecar', 'hello', 'level'] should return true.

  • Answered by AI
  • Q2. Truncate command
  • Q3. Opps concept what is inheritnace?
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class can inherit attributes and methods from another class.

    • Allows a class to inherit attributes and methods from another class

    • Promotes code reusability and reduces redundancy

    • Creates a parent-child relationship between classes

    • Types of inheritance include single, multiple, multilevel, and hierarchical

    • Example: Class 'Animal' can be a parent class with attrib...

  • Answered by AI
  • Q4. What is objects in opps ?
  • Ans. 

    Objects in OOPs refer to instances of classes that encapsulate data and behavior.

    • Objects are created based on a class blueprint

    • Objects have attributes (data) and methods (behavior)

    • Objects allow for data encapsulation and abstraction

    • Example: Class 'Car' can have objects like 'Toyota', 'Honda', etc.

  • Answered by AI
  • Q5. Dimand star patten
  • Q6. Short an array by bubble sort
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements, and swaps them if they are in the wrong order.

    • Start by comparing the first two elements of the array and swap them if necessary.

    • Continue comparing adjacent elements and swapping them until the array is sorted.

    • Repeat this process for each element in the array until no more swaps are needed.

  • Answered by AI

Software Development Engineer Intern Interview Questions asked at other Companies

Q1. Say you're dealing with really long integers. They're too long to fit into a regular datatype, so linked lists are used to store them, with each node of the list containing one digit. Now the problem is, given two linked lists, i.e. two rea... read more
View answer (2)

What people are saying about Cloud Analogy

View All
a salesforce developer
2w
Looking for Salesforce Developer Role
Seeking Salesforce Developer Opportunities! Hi everyone! 👋 I’m currently looking for ne... read more
Got a question about Cloud Analogy?
Ask anonymously on communities.
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Introduce Yourself.
  • Q2. You are given two numbers, 'n' and 'm' calculate and print the sum of the series n/1, n/2, n/3, ..., n/m?
  • Ans. 

    The sum of the series n/1, n/2, n/3, ..., n/m is calculated and printed.

    • Iterate from 1 to m and calculate n divided by the current number in the iteration.

    • Add all the calculated values to get the sum of the series.

    • Print the final sum of the series.

  • Answered by AI
  • Q3. You are given a series of strings: ['asa', 'adsf', 'das2g', 'dasd4', 'ds230']. Your task is to print the strings that contain at least one digit. After your initial approach, you were asked to optimize it ...
  • Ans. 

    Print strings with at least one digit from given array.

    • Iterate through each string in the array and check if it contains a digit using regular expressions.

    • Use the regex pattern '\d' to match any digit in a string.

    • Print the strings that match the pattern.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - keep practicing Programming and be prepared to think on your toes. Also never give them the optimized code at the beginning.

Fullstack Developer Intern Interview Questions asked at other Companies

Q1. Shortest Path in an Unweighted Graph The city of Ninjaland is represented as an unweighted graph with houses and roads. There are 'N' houses numbered 1 to 'N', connected by 'M' bidirectional roads. A road connecting two houses 'X' and 'Y' a... read more
View answer (1)

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)

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

I applied via Referral and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Introduction OF Machine Learning
  • Ans. 

    Machine learning is a subset of artificial intelligence that focuses on developing algorithms and models that can learn from and make predictions or decisions based on data.

    • Machine learning involves training algorithms to learn patterns and make predictions from data.

    • It can be supervised, unsupervised, or semi-supervised learning.

    • Examples include image recognition, natural language processing, and recommendation system

  • Answered by AI
  • Q2. Last year project
  • Ans. 

    Developed a machine learning model to predict customer churn for a telecom company.

    • Used historical customer data to train the model

    • Implemented various classification algorithms such as Random Forest and Logistic Regression

    • Evaluated model performance using metrics like accuracy, precision, and recall

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

(1 Question)

  • Q1. Basics of Machine Learning

Interview Preparation Tips

Interview preparation tips for other job seekers - It was a nice Experience but interview was mainly focus on greater understanding of the concepts

Skills evaluated in this interview

Ai Ml Engineer Interview Questions asked at other Companies

Q1. Can you describe a recent machine learning project you built, including a walkthrough of the project and a code sample?
View answer (1)

Get interview-ready with Top Cloud Analogy Interview Questions

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

(2 Questions)

  • Q1. Write a code to reverse the string of your name.
  • Ans. 

    Code to reverse a string of your name

    • Create a function that takes a string as input

    • Use built-in functions like reverse() or loop through the string to reverse it

    • Return the reversed string

  • Answered by AI
  • Q2. Write a code to print pyramid pattern
  • Ans. 

    Code to print pyramid pattern in Python

    • Use nested loops to print spaces and stars in each row

    • Increment the number of stars in each row to form the pyramid shape

    • Example: for a pyramid with 5 rows, the code would look like this:

    • for i in range(5):

    • print(' '*(5-i-1) + '*'*(2*i+1))

  • Answered by AI

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)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Consist of 4 question based on simple coding

Round 2 - Technical 

(2 Questions)

  • Q1. Basic concepts of CS
  • Q2. 2 coding questions
Round 3 - HR 

(1 Question)

  • Q1. Question from resume

Salesforce Developer Trainee Interview Questions asked at other Companies

Q1. What is the difference between class and object?
View answer (1)

Software Developer Interview Questions & Answers

user image Akshay Sarnaik

posted on 25 Jul 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Write @Wire syntax
  • Ans. 

    Annotation used in Java to inject dependencies

    • @Wire annotation is used in Java to inject dependencies

    • It is typically used in frameworks like Dagger or ButterKnife

    • Example: @Wire TextView textView;

  • Answered by AI
  • Q2. Explain clouds and their types
  • Ans. 

    Clouds are visible masses of water droplets or ice crystals suspended in the atmosphere.

    • Clouds are classified based on their altitude, shape, and appearance.

    • Types of clouds include cirrus, cumulus, stratus, and nimbus.

    • High-level clouds are found at altitudes above 20,000 feet, while low-level clouds are below 6,500 feet.

    • Clouds can also be classified as convective, stratiform, or cumulonimbus.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Explain Sequrity model
  • Ans. 

    Security model refers to the framework that defines how security is implemented in a system or application.

    • Security model determines who can access what resources and under what conditions

    • It includes authentication, authorization, encryption, and auditing

    • Examples of security models include discretionary access control (DAC), mandatory access control (MAC), and role-based access control (RBAC)

  • Answered by AI
  • Q2. Explain Data modelling
  • Ans. 

    Data modelling is the process of creating a visual representation of data and its relationships within a system.

    • Identifying entities and their attributes

    • Defining relationships between entities

    • Creating a schema to represent the data

    • Normalization to reduce redundancy

    • Example: Entity-Relationship Diagram (ERD)

  • Answered by AI

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 experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Zoho and other digital marketing
  • Q2. Personality questions
Round 2 - One-on-one 

(2 Questions)

  • Q1. About self introduction
  • Q2. Basic sales questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy

Business Development Associate Interview Questions asked at other Companies

Q1. You are going to the office and you saw a 6 years old poor guy selling pencils. Out of kindness you bought all the pencils(100 pcs) at Rs. 50 and gave him extra Rs. 50 to support his family. Since you don't require those pencils at all. Wha... read more
View answer (40)
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

The selection process consists of submitting a resume, followed by a multiple-choice question (MCQ) round, a technical interview, and finally an HR interview.

Round 2 - Coding Test 

Please write the code for Data Structures and Algorithms questions, as well as the SQL queries.

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)

Software Developer Interview Questions & Answers

user image Shivam Tyagi

posted on 28 May 2024

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Explain Campaigns, Promotions, and Coupons.
  • Ans. 

    Campaigns, Promotions, and Coupons are marketing strategies used to attract customers and increase sales.

    • Campaigns are strategic marketing efforts to promote a product or service over a specific period of time.

    • Promotions are temporary incentives offered to customers to encourage purchases, such as discounts or free gifts.

    • Coupons are vouchers that entitle the holder to a discount on a particular product or service.

    • Examp...

  • Answered by AI
  • Q2. What is Global JS.
  • Ans. 

    Global JS refers to JavaScript variables or functions that are accessible from anywhere in the code.

    • Global JS variables are declared outside of any function and can be accessed from any part of the code.

    • Global JS functions are defined without being enclosed within another function and can be called from anywhere in the code.

    • Using global variables or functions can lead to potential conflicts and security risks.

  • Answered by AI

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)
Contribute & help others!
anonymous
You can choose to be anonymous

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.

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

INTERVIEWS

Bechtel

No Interviews

INTERVIEWS

Cloud Analogy

No Interviews

INTERVIEWS

HighRadius

No Interviews

INTERVIEWS

Greyb

No Interviews

INTERVIEWS

Bechtel

No Interviews

INTERVIEWS

HighRadius

No Interviews

INTERVIEWS

Bechtel

No Interviews

INTERVIEWS

Cloud Analogy

No Interviews

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