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 Salesforce Developer Interview Questions, Process, and Tips

Updated 15 Nov 2024

Top Cloud Analogy Salesforce Developer Interview Questions and Answers

View all 9 questions

Cloud Analogy Salesforce Developer Interview Experiences

7 interviews found

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

Salesforce Developer Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Write a trigger to update contact when accounts phone changed.
asked in Infosys
Q2. How do you make the child records read only of its parent record' ... read more
asked in TCS
Q3. Difference between Roles & Profiles, Difference between Workf ... read more
asked in Infosys
Q4. How do load both parent and child records at a time using data lo ... read more
asked in Infosys
Q5. How do you call a controllor method from javascript in visualforc ... read more
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
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:
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 

Mcq questiojn answering given

Round 3 - Technical 

(2 Questions)

  • Q1. What is salesforce developer
  • Q2. Why we use apex programming language
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

Cloud Analogy interview questions for designations

 Salesforce Developer Trainee

 (1)

 Software Developer

 (8)

 Java Developer

 (1)

 Software Developer Intern

 (1)

 Full Stack Developer

 (1)

 Software Developer Trainee

 (1)

 Full Stack Software Developer

 (1)

 QA Engineer

 (1)

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

Get interview-ready with Top Cloud Analogy Interview Questions

I applied via campus placement at Maharishi Dayanand University (MDU), Rohtak and was interviewed in Mar 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 
Round 2 - Technical 

(1 Question)

  • Q1. About Oops, syntax ,dbms , logical approach
Round 3 - HR 

(1 Question)

  • Q1. Family bckgrnd, strengths,weakness

Interview Preparation Tips

Interview preparation tips for other job seekers - learn basics ,oops in detail,dbms,projects must be descriptive

I applied via campus placement at Uttar Pradesh Technical University (UPTU) 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

Interview questions from similar companies

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

I was interviewed in Jul 2022.

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 

Basic pattern program was given to. we have to solve it using a minimum number of loops(It doesn't matter whether it is nested or not).

Round 3 - Coding Test 

A bit harder pattern program than the previous one, again same constraints as the last round.

Round 4 - Technical 

(1 Question)

  • Q1. 1. Pojects and interests. 2. questions on OOPS. 3. Basic SQL queries. 4. Some math puzzles.
Round 5 - HR 

(1 Question)

  • Q1. 1. General introduction. 2. Some situation-based questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your answer clear and short and you can crack it with ease.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Asked to code future, batch apex, callout & sample LWC
  • Q2. Recent technical implementation
  • Ans. 

    Implemented a custom Lightning component for a client to streamline their lead management process.

    • Created a custom Lightning component using Aura framework

    • Integrated the component with Salesforce lead objects and workflows

    • Implemented client-specific business logic and validation rules

    • Tested the component thoroughly to ensure functionality and performance

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

(2 Questions)

  • Q1. System design round basics
  • Q2. Design book my show in salesforce
Round 3 - One-on-one 

(2 Questions)

  • Q1. Manger, why looking for a change
  • Ans. 

    Seeking new challenges and growth opportunities in a dynamic environment.

    • Looking to expand my skill set and work on more complex projects

    • Interested in exploring new technologies and methodologies

    • Seeking a company culture that aligns with my values and career goals

  • Answered by AI
  • Q2. Salesforce current integrations in my project
  • Ans. 

    My project currently integrates with external systems such as SAP, Marketo, and Slack.

    • Integration with SAP for syncing customer data

    • Integration with Marketo for lead management

    • Integration with Slack for real-time notifications

  • Answered by AI

Interview Preparation Tips

Topics to prepare for ClearTax Senior Salesforce Developer interview:
  • Apex
  • Salesforce CRM
  • LWC
  • Integration
Interview preparation tips for other job seekers - Report your honest feedback to HR. so it will help other people in future

Skills evaluated in this interview

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

I was interviewed in Jul 2022.

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 - Coding Test 

Basic pattern program was given to. we have to solve it using a minimum number of loops(It doesn't matter whether it is nested or not).

Round 3 - Coding Test 

A bit harder pattern program than the previous one, again same constraints as the last round.

Round 4 - Technical 

(1 Question)

  • Q1. 1. Pojects and interests. 2. questions on OOPS. 3. Basic SQL queries. 4. Some math puzzles.
Round 5 - HR 

(1 Question)

  • Q1. 1. General introduction. 2. Some situation-based questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your answer clear and short and you can crack it with ease.

Cloud Analogy Interview FAQs

How many rounds are there in Cloud Analogy Salesforce Developer interview?
Cloud Analogy interview process usually has 2-3 rounds. The most common rounds in the Cloud Analogy interview process are Technical, Coding Test and HR.
What are the top questions asked in Cloud Analogy Salesforce Developer interview?

Some of the top questions asked at the Cloud Analogy Salesforce Developer 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. How to overload constructor in Pyth...read more

Tell us how to improve this page.

Cloud Analogy Salesforce Developer Interview Process

based on 7 interviews

3 Interview rounds

  • Resume Shortlist Round
  • Coding Test Round
  • Technical Round
View more
Cloud Analogy Salesforce Developer Salary
based on 323 salaries
₹2.2 L/yr - ₹18.6 L/yr
34% more than the average Salesforce Developer Salary in India
View more details

Cloud Analogy Salesforce Developer Reviews and Ratings

based on 50 reviews

3.6/5

Rating in categories

3.8

Skill development

3.2

Work-life balance

3.6

Salary

3.1

Job security

3.2

Company culture

3.5

Promotions

3.3

Work satisfaction

Explore 50 Reviews and Ratings
Salesforce Developer
323 salaries
unlock blur

₹2.2 L/yr - ₹18.6 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