Update appNew update is available. Click here to update.
Salesforce Developer
Cloud Analogy
upvote
share-icon
2 rounds | 4 Coding problems
views
183 views
comment
0 comments
upvote
0 upvotes
Interview preparation journey
expand-icon
Preparation
Duration: 3 months
Topics: Data Structures, Algorithms, OS, Aptitude, OOPS
Tip
Tip

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application process
Where: Campus
Eligibility: Above 7 CGPA
Resume Tip
Resume tip

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Interview rounds
01
Round
Easy
Video Call
Duration45 minutes
Interview date12 Oct 2020
Problems3
Reverse the String

You are given a string 'STR'. The string contains [a-z] [A-Z] [0-9] [special characters]. You have to find the reverse of the string.

For example:

view more
Problem approach

This can be done by iterative swapping using two pointers. The first pointer points to the beginning of the string, whereas the second pointer points to the end. Both pointers keep swapping their elements and go towards each other. Essentially, the algorithm simulates the rotation of a string with respect to its midpoint.
Time Complexity : O(n)

Try solving now
Pattern: Triangle of numbers
Pattern for N = 4


The dots represent spaces.



Input...
view more
Problem approach

printPattern(int n)
{
// Outer loop to handle number of rows n in this case
for (int i = 0; i < n; i++) {
// Inner loop to handle number of columns values changing acc. to outer loop
for (int j = 0; j <= i; j++) {
Print stars (*)
}
Print new line
}
}

Try solving now
DS Question

Difference between List and Tuple

Problem approach

1 Lists are mutable. Tuples are immutable
2 In Lists, implication of iterations is Time-consuming. The implication of iterations is comparatively Faster
3 The list is better for performing operations, such as insertion and deletion. Tuple data type is appropriate for accessing the elements
4 Lists consume more memory. Tuple consume less memory as compared to the list

02
Round
Easy
HR Round
Duration30 minutes
Interview date12 Oct 2021
Problems1
Basic HR Questions

1. Introduction
2. Why Cloud Analogy?

Problem approach

Tip 1 : The cross questioning can go intense some time, think before you speak.
Tip 2 : Be open minded and answer whatever you are thinking, in these rounds I feel it is important to have opinion.
Tip 3 : Context of questions can be switched, pay attention to the details. It is okay to ask questions in these round, like what are the projects currently the company is investing, which team ...

view more
Start a Discussion
Similar interview experiences
company logo
SDE - 1
3 rounds | 3 problems
Interviewed by Cloud Analogy
217 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 3 problems
Interviewed by Cloud Analogy
202 views
0 comments
0 upvotes
company logo
SDE - Intern
3 rounds | 3 problems
Interviewed by Cloud Analogy
1475 views
0 comments
0 upvotes
company logo
QA
3 rounds | 5 problems
Interviewed by Cloud Analogy
98 views
0 comments
0 upvotes
Companies with similar interview experiencs
company logo
Salesforce Developer
3 rounds | 6 problems
Interviewed by PricewaterhouseCoopers
0 views
0 comments
0 upvotes
company logo
Salesforce Developer
2 rounds | 3 problems
Interviewed by Teamlease Services Limited
20 views
0 comments
0 upvotes
company logo
Salesforce Developer
3 rounds | 6 problems
Interviewed by MTX
0 views
0 comments
0 upvotes