Add office photos
Engaged Employer

Cloud Analogy

3.6
based on 159 Reviews
Filter interviews by

50+ Xrg Consulting Interview Questions and Answers

Updated 29 Mar 2025
Popular Designations

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 element...read more

Ans.

Count the total number of good subsets in an array where elements can be rearranged to divide the next element.

  • Iterate through all possible subsets of the array.

  • Check if each subset is a good subset by rearranging elements to divide the next element.

  • Count the number of good subsets and return the total count.

View 1 answer

Q2. Ways To Make Coin Change

Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these coins. If it's not possible to make the c...read more

Ans.

The task is to find the total number of ways to make change for a specified value using given denominations.

  • Use dynamic programming to solve this problem efficiently.

  • Create a 2D array to store the number of ways to make change for each value up to the specified value.

  • Iterate through each denomination and update the array accordingly.

  • The final answer will be stored in the last cell of the array.

  • Example: For N=3, D=[1, 2, 3], V=4, the output is 4 as there are 4 ways to make cha...read more

View 2 more answers

Q3. Reverse Linked List Problem Statement

Given a singly linked list of integers, return the head of the reversed linked list.

Example:

Initial linked list: 1 -> 2 -> 3 -> 4 -> NULL
Reversed linked list: 4 -> 3 -> 2...read more
Ans.

Reverse a singly linked list of integers and return the head of the reversed linked list.

  • Iterate through the linked list and reverse the pointers to point to the previous node.

  • Keep track of the current, previous, and next nodes while reversing the linked list.

  • Update the head of the reversed linked list as the last node encountered during reversal.

Add your answer

Q4. Count Subsequences Problem Statement

Given an integer array ARR of size N, your task is to find the total number of subsequences in which all elements are equal.

Explanation:

A subsequence of an array is derive...read more

Ans.

The task is to find the total number of subsequences in which all elements are equal in an integer array.

  • Iterate through the array and count the frequency of each element.

  • For each element, calculate the number of subsequences with all elements equal using the formula (frequency * (frequency - 1) / 2).

  • Sum up the counts for all elements and return the result modulo 10^9 + 7.

Add your answer
Discover Xrg Consulting interview dos and don'ts from real experiences

Q5. Star Pattern Generation

Develop a function to print star patterns based on the given number of rows 'N'. Each row in the pattern should follow the format demonstrated in the example.

The picture illustrates an ...read more

Ans.

Function to print star patterns based on the given number of rows 'N'.

  • Iterate through each row from 1 to N

  • For each row, print spaces (N-row) followed by stars (2*row-1)

  • Repeat until all rows are printed

Add your answer

Q6. 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 maximum elem...read more

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.

Add your answer
Are these interview questions helpful?

Q7. 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'

Add your answer

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

View 1 answer
Share interview questions and help millions of jobseekers 🌟

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

Add your answer

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

Add your answer

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

View 1 answer

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

View 1 answer

Q13. 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 Salesforce platform, providing secure and scalable performance.

Add your answer

Q14. What is Salesforce and how Salesforce help to business?

Ans.

Salesforce is a cloud-based CRM platform that helps businesses manage customer relationships and streamline operations.

  • Centralized Customer Data: Salesforce provides a single platform to store and manage customer information, improving accessibility and collaboration.

  • Automation of Sales Processes: Tools like Sales Cloud automate lead tracking, opportunity management, and forecasting, enhancing sales efficiency.

  • Enhanced Customer Service: Service Cloud enables businesses to pro...read more

Add your answer

Q15. 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 Name FROM Account WHERE Industry = 'Technology'.

Add your answer

Q16. Reverse the String with counting the character of the word.

Add your answer

Q17. 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 include Application Developer, Integration Developer, and Light...read more

Add your answer

Q18. 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(acc?.Name); // This will not throw an error

Add your answer

Q19. find frequency of character 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 case sensitivity based on requirements.

Add your answer

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

  • Examples: Black Friday campaign, Buy One Get One Free promotion...read more

Add your answer

Q21. 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 types of licenses based on user needs, e.g., Salesforce, Salesfo...read more

Add your answer

Q22. What is Oppos concept?

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 classes through a common interface (e.g., a function that accepts di...read more

Add your answer

Q23. Sum of diagonal Element of matrix

Ans.

Calculate the sum of the diagonal elements in a square matrix.

  • A square matrix has equal number of rows and columns.

  • The main diagonal runs from the top-left to the bottom-right.

  • To find the sum, iterate through indices where row = column.

  • Example: For matrix [[1, 2], [3, 4]], sum = 1 + 4 = 5.

  • For a 3x3 matrix [[1, 2, 3], [4, 5, 6], [7, 8, 9]], sum = 1 + 5 + 9 = 15.

Add your answer

Q24. find sum of diagonal half of 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.

Add your answer

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

Add your answer

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

Add your answer

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

Add your answer

Q28. 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 furth...

read more
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.

Add your answer

Q29. Find the right diagonal sum of a 2D matrix

Add your answer

Q30. SQL : Second highest salary of an Employee

Add your answer

Q31. Explain clouds and their types

Ans.

Clouds are visible masses of water droplets or ice crystals suspended in the atmosphere.

  • Clouds are classified based on their altitude, shape, and appearance.

  • Types of clouds include cirrus, cumulus, stratus, and nimbus.

  • High-level clouds are found at altitudes above 20,000 feet, while low-level clouds are below 6,500 feet.

  • Clouds can also be classified as convective, stratiform, or cumulonimbus.

Add your answer

Q32. Explain Sequrity model

Ans.

Security model refers to the framework that defines how security is implemented in a system or application.

  • Security model determines who can access what resources and under what conditions

  • It includes authentication, authorization, encryption, and auditing

  • Examples of security models include discretionary access control (DAC), mandatory access control (MAC), and role-based access control (RBAC)

Add your answer

Q33. Explain Data modelling

Ans.

Data modelling is the process of creating a visual representation of data and its relationships within a system.

  • Identifying entities and their attributes

  • Defining relationships between entities

  • Creating a schema to represent the data

  • Normalization to reduce redundancy

  • Example: Entity-Relationship Diagram (ERD)

Add your answer

Q34. 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))

Add your answer

Q35. OOPS Concepts of Programing

Ans.

OOP (Object-Oriented Programming) is a 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 from an existing class (e.g., a 'Dog' class inheriting from an 'Animal' class).

  • Polymorphism: Ability to present the same interface for different underlying forms (e.g., method overriding).

  • Abstraction: Hiding complex implementation detail...read more

Add your answer

Q36. Explain 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.g., sharing opportunities with a sales team.

  • Profiles: Define u...read more

Add your answer

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

Add your answer

Q38. Check whether a number is Power of 2

Add your answer

Q39. 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;

Add your answer

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

Add your answer

Q41. Explain 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 Rules: Workflow rules are evaluated and actions are executed if cr...read more

Add your answer

Q42. What do you know about Digital Marketing?

Ans.

Digital marketing encompasses online strategies to promote products/services using digital channels like social media, SEO, and email.

  • Search Engine Optimization (SEO): Enhancing website visibility on search engines. Example: Using keywords to rank higher on Google.

  • Content Marketing: Creating valuable content to attract and engage audiences. Example: Blogs, videos, and infographics.

  • Social Media Marketing: Promoting products/services on platforms like Facebook, Instagram, and T...read more

Add your answer

Q43. How do you plan social media marketing planner?

Ans.

A social media marketing planner outlines strategies, content, and goals to effectively engage audiences and drive brand awareness.

  • Define target audience: Identify demographics, interests, and behaviors to tailor content. Example: Targeting millennials for a new tech gadget.

  • Set clear objectives: Establish measurable goals like increasing engagement by 20% in three months.

  • Choose platforms wisely: Select social media channels based on audience presence. Example: Using Instagram...read more

Add your answer

Q44. 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 attributes like 'name' and methods like 'eat', while class 'Dog'...read more

Add your answer

Q45. Four pillars of OOPs and also write a code on Interface

Add your answer

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

Add your answer

Q47. 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 for bugs, inspecting manufactured products for defects

Add your answer

Q48. 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 also completed internships at ABC Company and DEF Company...read more

Add your answer

Q49. 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 highlight job experience on a resume or during an interview.

Add your answer

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

Add your answer

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

Add your answer

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

Add your answer

Q53. What is Apex?

Ans.

Apex is a strongly typed, object-oriented programming language used on the Salesforce platform.

  • Apex is designed for building applications on the Salesforce platform.

  • It allows developers to execute flow and transaction control statements on the Salesforce server.

  • Apex is similar to Java in syntax, making it easier for Java developers to learn.

  • It supports database operations, allowing developers to perform CRUD operations on Salesforce data.

  • Example: Using Apex triggers to automa...read more

Add your answer

Q54. 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 systems.

Add your answer
Contribute & help others!
Write a review
Share interview
Contribute salary
Add office photos

Interview Process at Xrg Consulting

based on 50 interviews
Interview experience
4.3
Good
View more
Interview Tips & Stories
Ace your next interview with expert advice and inspiring stories

Top Interview Questions from Similar Companies

4.0
 • 705 Interview Questions
3.7
 • 360 Interview Questions
3.5
 • 256 Interview Questions
3.8
 • 181 Interview Questions
4.2
 • 141 Interview Questions
3.9
 • 140 Interview Questions
View all
Top Cloud Analogy Interview Questions And Answers
Share an Interview
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
75 Lakh+

Reviews

5 Lakh+

Interviews

4 Crore+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter