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 and Answers

Updated 28 May 2025
Popular Designations

57 Interview questions

A Salesforce Developer was asked 4mo ago
Q. Explain the execution process.
Ans. 

The execution process in Salesforce involves various stages from request to response, including triggers, workflows, and Apex code.

  • 1. Request Initiation: A user action or API call triggers the execution process.

  • 2. Context Setup: Salesforce sets up the execution context, including user permissions and record access.

  • 3. Trigger Execution: Before and after triggers are executed for the affected records.

  • 4. Workflow Rul...

View all Salesforce Developer interview questions
A Salesforce Developer was asked 4mo ago
Q. Do you know about user management?
Ans. 

User management in Salesforce involves creating, managing, and securing user accounts and their access to data.

  • User Roles: Define user roles to control access levels, e.g., Admin, Sales Rep.

  • Profiles: Assign profiles to users to set permissions, e.g., Read/Write access to specific objects.

  • Permission Sets: Use permission sets to grant additional permissions without changing profiles.

  • User Licenses: Manage different t...

View all Salesforce Developer interview questions
A Salesforce Developer was asked 4mo ago
Q. Explain the security model of Salesforce.
Ans. 

Salesforce's security model ensures data protection through various layers like organization-wide defaults, role hierarchy, and sharing rules.

  • Organization-Wide Defaults (OWD): Sets baseline access levels for all records, e.g., Public Read Only.

  • Role Hierarchy: Allows users higher in the hierarchy to access records owned by users below them.

  • Sharing Rules: Custom rules to grant additional access to specific groups, e...

View all Salesforce Developer interview questions
A Software Developer was asked 4mo ago
Q. What is the concept of OOP?
Ans. 

OOP (Object-Oriented Programming) is a programming paradigm based on objects that encapsulate data and behavior.

  • Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).

  • Inheritance: Mechanism to create a new class based on an existing class, promoting code reuse (e.g., a 'Dog' class inheriting from an 'Animal' class).

  • Polymorphism: Ability to treat objects of different class...

View all Software Developer interview questions
A Software Developer was asked 4mo ago
Q. How do you find the frequency of characters and words in a string?
Ans. 

This task involves counting the occurrences of each character and word in a given string.

  • Use a dictionary to store character frequencies. Example: 'hello' -> {'h': 1, 'e': 1, 'l': 2, 'o': 1}

  • For word frequency, split the string by spaces and use a dictionary. Example: 'hello world hello' -> {'hello': 2, 'world': 1}

  • Consider using Python's collections.Counter for a more concise solution.

  • Handle punctuation and c...

View all Software Developer interview questions
A Software Developer was asked 4mo ago
Q. How do you find the sum of one half of the diagonals of a matrix?
Ans. 

Calculate the sum of the diagonal elements in the upper or lower half of a matrix.

  • Identify the matrix size (n x n).

  • For upper half, sum elements where row index < column index.

  • For lower half, sum elements where row index > column index.

  • Example: For matrix [[1,2,3],[4,5,6],[7,8,9]], upper half sum = 2 + 3 + 6 = 11.

  • Example: For the same matrix, lower half sum = 4 + 7 + 8 + 9 = 28.

View all Software Developer interview questions

Cloud Analogy HR Interview Questions

7 questions and answers

Q. Where do you see yourself in 3 years within the company?
Q. What strategies do you use to handle client objections during sales negotia ... read more
Q. Introduce yourself.
A Salesforce Developer was asked 4mo ago
Q. Given an integer n, return true if it is a power of two. Otherwise, return false. An integer n is a power of two, if there exists an integer x such that n == 2x.
Ans. 

A number is a power of 2 if it can be expressed as 2 raised to an integer exponent, like 1, 2, 4, 8, 16, etc.

  • Definition: A number n is a power of 2 if there exists an integer x such that n = 2^x.

  • Binary Representation: A power of 2 has exactly one '1' in its binary representation. For example, 4 (100) and 8 (1000).

  • Mathematical Check: You can check if n > 0 and (n & (n - 1)) == 0. For instance, for n = 8, (8 ...

View all Salesforce Developer interview questions
Are these interview questions helpful?
A Salesforce Developer was asked 4mo ago
Q. Write an SQL query to find the second highest salary from the Employee table.
Ans. 

To find the second highest salary in SQL, we can use various methods like subqueries or the DISTINCT keyword.

  • Using Subquery: SELECT MAX(salary) FROM employees WHERE salary < (SELECT MAX(salary) FROM employees);

  • Using DISTINCT: SELECT DISTINCT salary FROM employees ORDER BY salary DESC LIMIT 1 OFFSET 1;

  • Using ROW_NUMBER: SELECT salary FROM (SELECT salary, ROW_NUMBER() OVER (ORDER BY salary DESC) AS rank FROM emplo...

View all Salesforce Developer interview questions
A Salesforce Developer was asked 4mo ago
Q. Given a 2D matrix, find the sum of the elements on the right diagonal.
Ans. 

Calculate the sum of elements on the right diagonal of a 2D matrix.

  • The right diagonal elements are those where the row index and column index sum to the number of columns minus one.

  • For a matrix of size n x n, the right diagonal elements are at positions (0, n-1), (1, n-2), ..., (n-1, 0).

  • Example: For the matrix [[1, 2, 3], [4, 5, 6], [7, 8, 9]], the right diagonal is 3, 5, 7. Sum = 3 + 5 + 7 = 15.

  • Iterate through th...

View all Salesforce Developer interview questions
A Software Developer was asked 4mo ago
Q. Reverse the string while counting the characters in each word.
Ans. 

Reverse a string while counting the characters in each word, providing a clear output of the reversed string and character counts.

  • String Reversal: To reverse a string, iterate through it from the end to the beginning, appending each character to a new string.

  • Character Counting: Split the string into words, then count the characters in each word using a loop or built-in functions.

  • Example: For the input 'Hello World...

View all Software Developer interview questions

Cloud Analogy Interview Experiences

59 interviews found

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview 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
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
  • 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
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.
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

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.
  • Q2. Write a code to print pyramid pattern
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

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
Round 2 - Technical 

(2 Questions)

  • Q1. Explain Sequrity model
  • Q2. Explain Data modelling

Skills evaluated in this interview

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

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. What is Apex?
  • Q2. Custom settings, Custom meta types, custom lables

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared if you are applying for Salesforce developer role with all the Modules
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. Four pillars of OOPs and also write a code on Interface
  • Ans. 

    The four pillars of OOP are encapsulation, inheritance, polymorphism, and abstraction, essential for building robust software.

    • Encapsulation: Bundling data and methods that operate on the data within one unit (class). Example: A class 'Car' with properties like 'speed' and methods like 'accelerate()'.

    • Inheritance: Mechanism where one class inherits properties and methods from another. Example: 'ElectricCar' inherits from...

  • Answered by AI
  • Q2. A coding question on Linked List that a how a linked list reversed

Software Developer Interview Questions & Answers

user image Akshat Nigam

posted on 28 Mar 2025

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. What is DSA, what is SOQL queries
  • Ans. 

    DSA stands for Data Structures and Algorithms; SOQL is Salesforce Object Query Language for querying Salesforce data.

    • DSA is essential for efficient problem-solving in programming.

    • Common data structures include arrays, linked lists, stacks, and queues.

    • Algorithms can be sorting (e.g., quicksort) or searching (e.g., binary search).

    • SOQL is similar to SQL but specifically designed for Salesforce data.

    • Example of SOQL: SELECT...

  • Answered by AI
  • Q2. Basic programming questions. Oops concepts

Top trending discussions

View All
Interview Hub
1w
a client servicing executive
FeedCard Image
Got a question about Cloud Analogy?
Ask anonymously on communities.

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 One-on-one Round.
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.

Overall Interview Experience Rating

4.2/5

based on 52 interview experiences

Difficulty level

Easy 18%
Moderate 82%

Duration

Less than 2 weeks 85%
2-4 weeks 12%
4-6 weeks 3%
View more

Interview Questions from Similar Companies

MAQ Software Interview Questions
1.9
 • 105 Interviews
Webkul Software Interview Questions
4.0
 • 71 Interviews
Tudip Technologies Interview Questions
2.9
 • 67 Interviews
MindGate Solutions Interview Questions
3.3
 • 67 Interviews
Bacancy Technology Interview Questions
4.3
 • 60 Interviews
Softenger Interview Questions
4.0
 • 60 Interviews
OodlesTechnologies Interview Questions
3.2
 • 59 Interviews
View all

Cloud Analogy Reviews and Ratings

based on 176 reviews

3.6/5

Rating in categories

3.8

Skill development

3.5

Work-life balance

3.8

Salary

3.1

Job security

3.5

Company culture

3.6

Promotions

3.5

Work satisfaction

Explore 176 Reviews and Ratings
Salesforce Developer
339 salaries
unlock blur

₹2.8 L/yr - ₹18.5 L/yr

Quality Analyst
77 salaries
unlock blur

₹2.7 L/yr - ₹7.7 L/yr

Salesforce Administrator
66 salaries
unlock blur

₹3.9 L/yr - ₹9 L/yr

Full Stack Developer
52 salaries
unlock blur

₹5.7 L/yr - ₹14.4 L/yr

Senior Salesforce Developer
42 salaries
unlock blur

₹9.5 L/yr - ₹20.9 L/yr

Explore more salaries
Compare Cloud Analogy with

Tekwissen

4.8
Compare

Softenger

4.0
Compare

XcelServ Solutions

4.4
Compare

Capital Numbers Infotech

4.4
Compare
write
Share an Interview