Filter interviews by
OAuth 2.0 is the best authorization type for integrating Salesforce with Postman, ensuring secure access to APIs.
OAuth 2.0 provides a secure way to authorize access without sharing credentials.
You can use the 'Client Credentials' flow for server-to-server integrations.
For user-specific access, the 'Authorization Code' flow is recommended.
Example: Use Postman's OAuth 2.0 feature to obtain an access token from Sales...
A report showing no data may result from filters, permissions, or report type issues.
Check report filters: If filters are too restrictive, they may exclude all records.
Verify report type: Ensure the report type is appropriate for the data being queried.
Review sharing settings: The user may have access to the object but not to the specific records.
Examine date ranges: If the report is set to a date range with no da...
SOQL query to retrieve Accounts and their related Contacts.
Use the relationship field 'Contacts' on the Account object to retrieve related contacts.
Use the SELECT statement to specify the fields to retrieve.
Use the WHERE clause to filter the results based on specific criteria.
Example: SELECT Id, Name, (SELECT Id, Name FROM Contacts) FROM Account WHERE Industry = 'Technology'
Handling escalations and approach to issue resolution in support as a developer
I understand the importance of timely resolution of issues and the impact it has on customer satisfaction
My approach is to first gather all necessary information and analyze the root cause of the issue
I then prioritize the issue based on its severity and impact on the customer
I communicate effectively with the customer and keep them upd...
Communities are groups of people with shared interests or goals who come together to support each other and achieve their objectives.
Communities can be based on various factors such as location, profession, hobbies, religion, etc.
They provide a platform for individuals to connect, share knowledge and experiences, and collaborate on projects.
Online communities have become increasingly popular with the rise of socia...
I applied via Naukri.com and was interviewed in Jan 2023. There were 2 interview rounds.
Best practices for writing Apex triggers
Use trigger handler pattern to separate logic from trigger
Avoid SOQL queries and DML statements inside loops
Bulkify triggers to handle multiple records efficiently
Use trigger context variables to access old and new record data
Write test classes to achieve code coverage
Communities are groups of people with shared interests or goals who come together to support each other and achieve their objectives.
Communities can be based on various factors such as location, profession, hobbies, religion, etc.
They provide a platform for individuals to connect, share knowledge and experiences, and collaborate on projects.
Online communities have become increasingly popular with the rise of social med...
I appeared for an interview before Mar 2024, where I was asked the following questions.
A report showing no data may result from filters, permissions, or report type issues.
Check report filters: If filters are too restrictive, they may exclude all records.
Verify report type: Ensure the report type is appropriate for the data being queried.
Review sharing settings: The user may have access to the object but not to the specific records.
Examine date ranges: If the report is set to a date range with no data, i...
I am excited to join Salesforce for its innovative culture and growth opportunities, leaving my current role for new challenges.
Salesforce is a leader in cloud technology, and I want to be part of a company that is shaping the future of customer relationship management.
I admire Salesforce's commitment to innovation and continuous learning, which aligns with my personal and professional growth goals.
The collaborative an...
I am flexible and willing to come to the office or work weekends as needed to support the team's goals and customer needs.
I understand that support roles often require flexibility, especially during critical incidents.
For example, if a major outage occurs, I would prioritize resolving the issue, even if it means working late or on weekends.
I believe that being present in the office can enhance collaboration with the te...
OAuth 2.0 is the best authorization type for integrating Salesforce with Postman, ensuring secure access to APIs.
OAuth 2.0 provides a secure way to authorize access without sharing credentials.
You can use the 'Client Credentials' flow for server-to-server integrations.
For user-specific access, the 'Authorization Code' flow is recommended.
Example: Use Postman's OAuth 2.0 feature to obtain an access token from Salesforce...
I applied via Recruitment Consultant and was interviewed in Sep 2021. There were 5 interview rounds.
I applied via LinkedIn and was interviewed in Jul 2021. There were 3 interview rounds.
I applied via Recruitment Consultant and was interviewed in Jul 2021. There were 3 interview rounds.
Top trending discussions
posted on 16 Sep 2021
I appeared for an interview before Sep 2020.
Round duration - 50 minutes
Round difficulty - Easy
This was a Data Structural round.
Given a two-dimensional array/list consisting of integers 0s and 1s, where 1 represents land and 0 represents water, determine the number of distinct islands. A group of...
Count the number of distinct islands in a 2D array of 0s and 1s.
Identify islands by performing depth-first search (DFS) on the grid
Use a set to store the shape of each island and check for duplicates
Consider translations to determine distinct islands
Round duration - 50 minutes
Round difficulty - Easy
This was a Data Structural round.
You are tasked with arranging 'N' words of varying lengths such that each line contains at most 'M' characters, with each word separated by a space. The challenge is to minimiz...
The goal is to minimize the total cost of arranging 'N' words on each line with a maximum character limit 'M'.
Calculate the cost of each line as the cube of extra space characters needed to reach 'M'.
Minimize the total cost by arranging words to fit within the character limit on each line.
Ensure each word appears fully on one line without breaking across lines.
Round duration - 60 minutes
Round difficulty - Easy
This was a System Design round.
Design a system similar to Red Bus for handling bookings and onboarding vendors and customers.
Implement a user-friendly interface for customers to search and book tickets
Create a vendor portal for vendors to manage their offerings and availability
Include payment gateway integration for secure transactions
Develop a robust backend system for managing bookings, cancellations, and refunds
Utilize a database to store user in...
Round duration - 50 minutes
Round difficulty - Easy
This was a System Design round
Round duration - 50 minutes
Round difficulty - Easy
This was an HR round.
Tip 1 : Practice as much as you can.
Tip 2 : Prepare for company, not in general.
Tip 3 : Your past work should be objective and your contribution should be very clear
Tip 1 : Keep only relevant things for the job you are applying.
Tip 2 : Minimal data with measurable contribution and effect.
I applied via Naukri.com and was interviewed in Jul 2020. There was 1 interview round.
I applied via Monster and was interviewed before Apr 2020. There was 1 interview round.
A generic swap function swaps two values of any data type.
The function should take two parameters of any data type.
Use a temporary variable to store the value of one parameter.
Assign the value of the second parameter to the first parameter.
Assign the value of the temporary variable to the second parameter.
Search for an element in a rotated sorted linked list.
Find the pivot point where the list is rotated.
Divide the list into two sublists based on the pivot point.
Perform binary search on the appropriate sublist.
Handle edge cases such as empty list and list with only one element.
Search an element in a rotated sorted array
Find the pivot point where the array is rotated
Divide the array into two sub-arrays based on pivot point
Perform binary search on the appropriate sub-array
Repeat until element is found or sub-array size is 1
Given a Sudoku board, find possible numbers for an empty cell.
Iterate through empty cells and check possible numbers using row, column, and box constraints.
Use a set to keep track of possible numbers for each empty cell.
Return the set of possible numbers for the given empty cell.
Find integer average of 4 unsigned integers without typecasting
Add all the integers and divide by 4
Use bit shifting to divide by 4
Handle overflow by using long long data type
Use unsigned int data type for input
Code to identify 32 bit or 64 bit architecture of a processor
Check if the operating system is 32 bit or 64 bit
If OS is 32 bit, processor is 32 bit
If OS is 64 bit, check if processor supports 64 bit architecture
Use CPUID instruction to check if processor supports 64 bit architecture
Convert binary number to base 64 integer
Divide the binary number into groups of 6 bits
Convert each group of 6 bits to decimal
Map the decimal value to the corresponding base 64 character
Concatenate the base 64 characters to form the final integer
Some of the top questions asked at the Salesforce Support Engineer interview -
based on 2 interview experiences
Difficulty level
Duration
based on 11 reviews
Rating in categories
Technical Support Engineer
961
salaries
| ₹15 L/yr - ₹26 L/yr |
Technical Consultant
441
salaries
| ₹17.6 L/yr - ₹32 L/yr |
Senior Technical Consultant
362
salaries
| ₹27 L/yr - ₹46 L/yr |
Member Technical Staff
349
salaries
| ₹31.8 L/yr - ₹57.7 L/yr |
Senior Member of Technical Staff
326
salaries
| ₹48 L/yr - ₹85 L/yr |
SAP
Zoho
Oracle
Adobe