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

Updated 29 Mar 2025

Top Cloud Analogy Interview Questions and Answers for Freshers

View all 19 questions

Cloud Analogy Interview Experiences for Freshers

Popular Designations

12 interviews found

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

    Check if array of strings is a palindrome or not.

    • Iterate through the array and compare each string with its reverse to check for palindrome.

    • Ignore spaces and punctuation while checking for palindrome.

    • Example: ['madam', 'racecar', 'hello', 'level'] should return true.

  • Answered by AI
  • Q2. Truncate command
  • Q3. Opps concept what is inheritnace?
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class can inherit attributes and methods from another class.

    • Allows a class to inherit attributes and methods from another class

    • Promotes code reusability and reduces redundancy

    • Creates a parent-child relationship between classes

    • Types of inheritance include single, multiple, multilevel, and hierarchical

    • Example: Class 'Animal' can be a parent class with attrib...

  • Answered by AI
  • Q4. What is objects in opps ?
  • Ans. 

    Objects in OOPs refer to instances of classes that encapsulate data and behavior.

    • Objects are created based on a class blueprint

    • Objects have attributes (data) and methods (behavior)

    • Objects allow for data encapsulation and abstraction

    • Example: Class 'Car' can have objects like 'Toyota', 'Honda', etc.

  • Answered by AI
  • 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

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

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 Subsets Problem Statement Given an array ARR of size N consisting of distinct elements, your task is to determine the total number of good subsets. A subset is considered a good subset if the elements can be rearranged such that ... read more
View answer (2)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

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:
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 - 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 Subsets Problem Statement Given an array ARR of size N consisting of distinct elements, your task is to determine the total number of good subsets. A subset is considered a good subset if the elements can be rearranged such that ... read more
View answer (2)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

Cloud Analogy interview questions for popular designations

 Software Developer

 (17)

 Salesforce Developer

 (9)

 Software Developer Trainee

 (4)

 Quality Analyst

 (3)

 Salesforce Developer Trainee

 (2)

 Senior Content Writer

 (1)

 Business Development Manager

 (1)

 Java Developer

 (1)

I applied via Campus Placement and was interviewed in Oct 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 

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 3 - 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 4 - 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 (6)

Get interview-ready with Top Cloud Analogy Interview Questions

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Dec 2022. There were 2 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 - HR 

(4 Questions)

  • Q1. Tell me about your salf ?
  • Ans. 

    I am a dedicated and experienced Electronics Communication Engineer with a strong background in designing and troubleshooting electronic systems.

    • Bachelor's degree in Electronics and Communication Engineering

    • Proficient in using various software tools for circuit design and simulation

    • Experience in designing and implementing communication systems

    • Skilled in troubleshooting and repairing electronic devices

    • Strong knowledge o...

  • Answered by AI
  • Q2. What is your backgroud ?
  • Ans. 

    I have a degree in Electronics and Communication Engineering.

    • I completed my Bachelor's degree in Electronics and Communication Engineering from XYZ University.

    • During my studies, I gained knowledge in various subjects such as Analog and Digital Communication, Microprocessors, and Microcontrollers.

    • I also completed a project on the design and implementation of a wireless communication system using Zigbee technology.

    • I have...

  • Answered by AI
  • Q3. Tell me about your case std.?
  • Ans. 

    I don't have the available data

    • Answered by AI
    • Q4. What is jop experience ?
    • Ans. 

      Job experience refers to the work history of an individual in a particular field or industry.

      • It includes the skills and knowledge gained through previous employment.

      • It can be used to demonstrate expertise and suitability for a particular role.

      • Employers often look for candidates with relevant job experience.

      • Examples of job experience include internships, part-time jobs, and full-time employment.

      • It is important to highli...

    • Answered by AI

    Interview Preparation Tips

    Topics to prepare for Cloud Analogy Electronics Communication Engineer interview:
    • Electronics
    • Embedded C
    • Embedded Systems
    • Python
    • AVR Studio
    Interview preparation tips for other job seekers - night shifting jop requard on the jop official than jop interview

    Electronics Communication Engineer Interview Questions asked at other Companies

    Q1. What is VHDL? (very high-speed integrated circuit hardware description language)
    View answer (1)

    I applied via Campus Placement and was interviewed in Dec 2021. There were 4 interview rounds.

    Interview Questionnaire 

    3 Questions

    • Q1. What is black box testing
    • Ans. 

      Black box testing is a software testing technique where the internal workings of the system are not known to the tester.

      • Tests the functionality of the system without knowing the internal code

      • Focuses on input and output of the system

      • Tests for user interface, performance, and security

      • Examples include acceptance testing and regression testing

    • Answered by AI
    • Q2. What is white box testing
    • Ans. 

      White box testing is a testing technique that involves testing the internal structure of the software.

      • It is also known as clear box testing or structural testing.

      • It requires knowledge of the code and the internal workings of the software.

      • It is used to test the logic and flow of the code.

      • Examples include unit testing and integration testing.

      • It is usually performed by developers or testers with programming knowledge.

    • Answered by AI
    • Q3. What is quality analyst
    • Ans. 

      A quality analyst is responsible for ensuring that products or services meet the required standards and specifications.

      • Conducting quality assurance tests and inspections

      • Analyzing data to identify areas for improvement

      • Developing and implementing quality control procedures

      • Collaborating with other departments to ensure quality standards are met

      • Providing feedback to management on quality issues

      • Examples: testing software fo...

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Don't nervous
    Speak confidentiality they just check your confidence and technical skills

    Skills evaluated in this interview

    Quality Analyst Interview Questions asked at other Companies

    Q1. How you will maintain the balance between operations and quality so that they do not have any conflicts of interest
    View answer (3)

    I applied via Campus Placement 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

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

    QA Engineer Interview Questions & Answers

    user image Anonymous

    posted on 14 Jan 2022

    I applied via Campus Placement and was interviewed in Dec 2021. There were 4 interview rounds.

    Interview Questionnaire 

    1 Question

    • Q1. Basic testing questions testing life cycle testing types etc easy interview

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Overall Good learn basic about testing and easily crack this

    QA Engineer Interview Questions asked at other Companies

    Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
    View answer (9)

    I appeared for an interview in Feb 2021.

    Round 1 - Coding Test 

    (1 Question)

    Round duration - 60 minutes
    Round difficulty - Easy

    It was in the evening around 5 PM. Platform used for this round was hackerrank. Questions were more of aptitude based and are of moderate level.

    • Q1. 

      Sum of Minimum and Maximum Elements of All Subarrays of Size K

      You are provided with an array containing N integers along with an integer K. Your task is to compute the total sum of the minimum and maximu...

    • Ans. 

      Calculate the sum of minimum and maximum elements of all subarrays of size K in an array.

      • Iterate through the array and maintain a deque to store the indices of elements in the current window of size K.

      • Keep track of the minimum and maximum elements in the current window and update the sum accordingly.

      • Return the total sum of minimum and maximum elements for all subarrays of size K.

    • Answered by AI
    Round 2 - HR 

    Round duration - 20 minutes
    Round difficulty - Easy

    It was late night. Interviewer was asking tricky questions to confuse me

    Interview Preparation Tips

    Professional and academic backgroundI applied for the job as SDE - Intern in GurgaonEligibility criteriaCo cubesCloud Analogy interview preparation:Topics to prepare for the interview - Data Structures, DBMS, Algorithms, Aptitude, Coding, OOPS, PythonTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

    Tip 1 : Practice a lot from trusted websites 
    Tip 2 : Self study is best to tackle any critical questions
    Tip 3 : Research about the company thoroughly

    Application resume tips for other job seekers

    Tip 1 : It should look good to interviewer
    Tip 2 : Skills and projects should be filled nicely
    Tip 3 : Format should be proper.

    Final outcome of the interviewSelected

    Skills evaluated in this interview

    Software Developer Intern Interview Questions asked at other Companies

    Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
    View answer (5)

    Cloud Analogy Interview FAQs

    How many rounds are there in Cloud Analogy interview for freshers?
    Cloud Analogy interview process for freshers usually has 2-3 rounds. The most common rounds in the Cloud Analogy interview process for freshers are Technical, HR and Aptitude Test.
    How to prepare for Cloud Analogy interview for freshers?
    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 for freshers?

    Some of the top questions asked at the Cloud Analogy interview for freshers -

    1. Q1. Palindrome numbers in a given ran...read more
    2. Q2. Carry generated in a sum of two numbe...read more
    3. What is black box test...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 for Freshers

    based on 5 interviews

    Interview experience

    4.6
      
    Excellent
    View more

    Interview Questions from Similar Companies

    MAQ Software Interview Questions
    1.9
     • 101 Interviews
    Webkul Software Interview Questions
    3.9
     • 64 Interviews
    Softenger Interview Questions
    4.1
     • 53 Interviews
    View all

    Cloud Analogy Reviews and Ratings

    based on 159 reviews

    3.6/5

    Rating in categories

    3.7

    Skill development

    3.4

    Work-life balance

    3.6

    Salary

    3.0

    Job security

    3.4

    Company culture

    3.5

    Promotions

    3.5

    Work satisfaction

    Explore 159 Reviews and Ratings
    Salesforce Developer
    318 salaries
    unlock blur

    ₹2.5 L/yr - ₹18.4 L/yr

    Quality Analyst
    67 salaries
    unlock blur

    ₹3 L/yr - ₹9 L/yr

    Salesforce Administrator
    66 salaries
    unlock blur

    ₹3 L/yr - ₹11.3 L/yr

    Full Stack Developer
    41 salaries
    unlock blur

    ₹4.7 L/yr - ₹14.9 L/yr

    Senior Salesforce Developer
    34 salaries
    unlock blur

    ₹8.4 L/yr - ₹29.4 L/yr

    Explore more salaries
    Compare Cloud Analogy with

    Tekwissen

    4.8
    Compare

    Softenger

    4.1
    Compare

    XcelServ Solutions

    4.5
    Compare

    Damco Solutions

    3.9
    Compare
    Did you find this page helpful?
    Yes No
    write
    Share an Interview