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
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Brief about myself

Senior Content Writer Interview Questions asked at other Companies

Q1. How would you write an engaging smo content? How will create innovative content on same products months after month? You're not a technical person, so how will you create convincing technical articles?
View answer (2)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Dronacharya College of Engineering, Greater Noida and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Coding Test 

There is a total of 4 coding questions and you have to complete any 3 codes to get selected for the next round i.e. Technical Round.

Round 2 - Technical 

(1 Question)

  • Q1. Not got shortlisted for this round
Round 3 - HR 

(1 Question)

  • Q1. Not got shortlisted for this round

Interview Preparation Tips

Interview preparation tips for other job seekers - 4 Coding Questions

1. You have to print a pattern like this

4 3 2 1
3 2 1
2 1
1
2 1
3 2 1
4 3 2 1

2. Find the number that needs to be removed to make a palindrome.
input = 12334
output = 2

3. Print the sum of the palindrome number between to number given.

Input = 10, 45
Palindrome numbers between these two are 11, 22, 33, 44
Output = 1+1+2+2+3+3+4+4
= 20

4. Generate a N-digit password whose sum and multiplication are two times the digit and equal.
Input = 4
Output = 1124

5 = 11125
6 = 111126

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)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via campus placement at Lovely Professional University (LPU) and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic 30 aptitude based questions

Round 2 - Technical 

(2 Questions)

  • Q1. 1 easy coding problem
  • Q2. Print 1,1.5,2,2.5,3 in an array
  • Ans. 

    Create an array of strings containing 1, 1.5, 2, 2.5, 3

    • Initialize an array of strings

    • Add the numbers 1, 1.5, 2, 2.5, 3 as strings to the array

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep studying
DSA, DBMS , networking, & SQL query + work on projects

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
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. When we will face Attempt to de-refresh null object
  • Ans. 

    Attempt to de-reference null object occurs when trying to access or manipulate a null object in Salesforce development.

    • Always check if an object is null before trying to access its properties or methods

    • Use safe navigation operator '?' to avoid null pointer exceptions

    • Example: Account acc = null; System.debug(acc.Name); // This will throw Attempt to de-reference null object error

    • Example: Account acc = null; System.debug(

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure give the logical and accurate answer

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)

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 - HR 

(1 Question)

  • Q1. Tell me about yourself

Full Stack Developer Interview Questions asked at other Companies

Q1. Query and Matrix Problem Statement You are given a binary matrix with 'M' rows and 'N' columns, initially consisting of all 0s. You will receive 'Q' queries, which can be of four types: Query 1: 1 R indexQuery 2: 1 C indexQuery 3: 2 R index... read more
Add answer

Get interview-ready with Top Cloud Analogy Interview Questions

Developer Traninee Interview Questions & Answers

user image Anonymous

posted on 25 Oct 2023

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

I applied via campus placement at Krishna Institute of Engineering and Technology, Ghaziabad and was interviewed in Sep 2023. 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 - Coding Test 

It's was a great experience: it was about pen paper test

Round 3 - Technical 

(1 Question)

  • Q1. They have asked OOPS concept and sql

Software Developer Interview Questions & Answers

user image Harsh Ruhela

posted on 15 Feb 2023

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

I applied via Campus Placement and was interviewed in Jan 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Aptitude round was not so tough, moderate level questions were there.

Round 3 - Technical 

(3 Questions)

  • Q1. In Technical round questions were from resume, oops, dbms and two coding questions.
  • Q2. Q1. Palindrome numbers in a given range.
  • Ans. 

    A program to find palindrome numbers in a given range.

    • Iterate through the given range of numbers

    • Convert each number to a string and check if it is equal to its reverse

    • If yes, add it to the list of palindrome numbers

  • Answered by AI
  • Q3. Q2. Carry generated in a sum of two numbers.
  • Ans. 

    Carry is generated when the sum of two digits is greater than 9.

    • Carry is a digit that is carried over to the next place value in the sum.

    • For example, in the sum 56 + 78, the carry generated is 1 (5+7=12, carry 1, 6+8+1=15).

    • Carry is important in addition of large numbers and in binary addition.

  • Answered by AI
Round 4 - HR 

(3 Questions)

  • Q1. HR round was easy with some basic HR questions and discussions.
  • Q2. Q1. Tells us about the company.
  • Q3. Q2. Why we should hire you.

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on your key skills, practice very well, research about the company you are going for interview.

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
Easy
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Group Discussion 

They will provide you with a group discussion topic and assess your performance based on your key points and communication skills.

Round 2 - Aptitude Test 

They will provide you the Aptitude test and give you the marking in the same.

Round 3 - One-on-one 

(1 Question)

  • Q1. It will be a round with Business Development Manager. To check your skills and knowledge.
Round 4 - HR 

(1 Question)

  • Q1. It will be final HR round for the finalising the salary and leaves.

Business Development Manager Interview Questions asked at other Companies

Q1. If your not getting support from bank or agent, then what will make further to generate business, what is the approach or strategy to be implemented during such cases to convince the customers ?
View answer (14)
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at GLA Institute of Technology and Management, Mathura and was interviewed in Dec 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

Mcq questiojn answering given

Round 3 - Technical 

(2 Questions)

  • Q1. What is salesforce developer
  • Ans. 

    Salesforce developer is a professional who develops and customizes applications on the Salesforce platform.

    • Salesforce developers use Apex and Visualforce to create custom applications and functionality

    • They work closely with stakeholders to understand business requirements and design solutions

    • They also integrate Salesforce with other systems and manage data within the platform

    • Examples of Salesforce developer roles inclu...

  • Answered by AI
  • Q2. Why we use apex programming language
  • Ans. 

    Apex is used for building custom business logic and integrations on the Salesforce platform.

    • Apex is a strongly-typed, object-oriented programming language.

    • It allows developers to create custom code to extend Salesforce functionality.

    • Apex can be used to build triggers, controllers, and classes for custom business logic.

    • It can also be used to integrate Salesforce with external systems.

    • Apex code runs natively on the Sales...

  • Answered by AI
Round 4 - Aptitude Test 

Quant and verbal percentage question number series question

Interview Preparation Tips

Interview preparation tips for other job seekers - please suggest best question answer for interview preparation

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

I applied via Campus Placement and was interviewed in Oct 2022. There were 3 interview rounds.

Round 1 - Coding Test 

Coding test contains 4 questions in which we have to do only 3
1. It was based on a pattern ,we have to print the pattern
2. Reverse array with some additional work
3. Find the number to delete so that it makes a palindrome number .for ex-122321 Here 2 at index 0 or 1 should be deleted to make a palindrome number.
4.We have to find the difference of stable numbers and unstable number
Stable number is which contains same no. of each digit like 112233
Unstable no. which has different no. of each digit like 1123

Round 2 - Technical 

(1 Question)

  • Q1. Last atmost 20 minutes 1.Dsa question to find common factor of two numbers 2. Find sum of numbers of diagonals in matrix Other Dbms , Oops questions
Round 3 - HR 

(1 Question)

  • Q1. Last atmost 20 minutes 1. About myself 2. About interesting which is not in resume 3. While and do while loop syntax 4. Difference between c and c++ Some other hr questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Just focus on coding part as first round is coding. In interview also they just verify that candidate is done coding or not

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)

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.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
MAQ Software Interview Questions
1.9
 • 98 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
322 salaries
unlock blur

₹2.1 L/yr - ₹18.5 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