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

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)
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 ?
  • Q2. Truncate command
  • Q3. Opps concept what is inheritnace?
  • Q4. What is objects in opps ?
  • Q5. Dimand star patten
  • Q6. Short an array by bubble sort

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

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 graphThe city of Ninjaland is analogous to the unweighted graph. The city has ‘N’ houses numbered from 1 to ‘N’ respectively and are connected by M bidirectional roads. If a road is connecting two houses ‘X’ a... read more
View answer (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)

Cloud Analogy interview questions for popular designations

 Software Developer

 (8)

 Salesforce Developer

 (7)

 Quality Analyst

 (3)

 Ai Ml Engineer

 (1)

 Associate Accountant

 (1)

 AWS Cloud Engineer

 (1)

 BD Executive

 (1)

 Business Development Associate

 (1)

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 (5)

Get interview-ready with Top Cloud Analogy Interview Questions

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 SubsetsYou are given an array ‘ARR’ of size ‘N’ consisting of distinct elements. Your task is to find the total number of good subsets. A subset is called a good subset when you can rearrange the elements of the subset in such a ... read more
View answer (4)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)
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 SubsetsYou are given an array ‘ARR’ of size ‘N’ consisting of distinct elements. Your task is to find the total number of good subsets. A subset is called a good subset when you can rearrange the elements of the subset in such a ... read more
View answer (4)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

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.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
MAQ Software Interview Questions
1.9
 • 97 Interviews
View all

Cloud Analogy Reviews and Ratings

based on 152 reviews

3.6/5

Rating in categories

3.6

Skill development

3.3

Work-life balance

3.6

Salary

3.0

Job security

3.3

Company culture

3.5

Promotions

3.4

Work satisfaction

Explore 152 Reviews and Ratings
Salesforce Developer
322 salaries
unlock blur

₹2.2 L/yr - ₹18.4 L/yr

Salesforce Administrator
65 salaries
unlock blur

₹3 L/yr - ₹11.4 L/yr

Quality Analyst
63 salaries
unlock blur

₹3 L/yr - ₹9 L/yr

Full Stack Developer
39 salaries
unlock blur

₹4.7 L/yr - ₹14 L/yr

Senior Salesforce Developer
34 salaries
unlock blur

₹8.4 L/yr - ₹29.4 L/yr

Explore more salaries
Compare Cloud Analogy with

Cognizant

3.8
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