Upload Button Icon Add office photos

Filter interviews by

Salesforce Senior Member Technical Interview Questions and Answers

Updated 16 Sep 2024

Salesforce Senior Member Technical Interview Experiences

2 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

Medium DSA questions were asked.

Round 2 - Coding Test 

Medium to Hard ds questions were asked

Round 3 - HR 

(2 Questions)

  • Q1. What are your strengths?
  • Ans. 

    My strengths include strong problem-solving skills, excellent communication abilities, and a proven track record of delivering high-quality results.

    • Strong problem-solving skills

    • Excellent communication abilities

    • Proven track record of delivering high-quality results

  • Answered by AI
  • Q2. Why are you looking for a change?
  • Ans. 

    Seeking new challenges and opportunities for growth in a senior technical role.

    • Looking for opportunities to work on more complex projects

    • Seeking a role with more responsibility and leadership opportunities

    • Interested in expanding my skill set and learning new technologies

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Hackerrank test having 2 or 3 questions

Round 2 - One-on-one 

(1 Question)

  • Q1. Round with Director

Senior Member Technical Interview Questions Asked at Other Companies

Q1. What is difference between Docker and Virtual Machine?
Q2. What is String Pool? Why Strings are called immutable?
Q3. What are some ways to optimize SQL Query?
Q4. What does ADP do? What is it's domain?
Q5. What are functional interfaces and one example.

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Quick sorting is asked in this round
  • Q2. Tree traversal was asked
Round 2 - Technical 

(2 Questions)

  • Q1. Merge sort was asked
  • Q2. Binary search was asked
Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Algorithm based coding round

Round 2 - Technical 

(2 Questions)

  • Q1. Hard problem solved during project work
  • Q2. Most used technologies during work
  • Ans. 

    The most used technologies during work include Java, Spring Boot, AWS, Docker, and Kubernetes.

    • Java

    • Spring Boot

    • AWS

    • Docker

    • Kubernetes

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Tentative Date of joining
  • Ans. 

    I am available to join within 2 weeks of receiving an offer.

    • Available to join within 2 weeks of receiving offer

    • Flexible with start date if needed

    • Can start immediately if required

  • Answered by AI
  • Q2. Salary expectation

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for the interview
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I was interviewed in Apr 2024.

Round 1 - Technical 

(5 Questions)

  • Q1. Count no of links in as web page
  • Ans. 

    Use a web scraping tool to count the number of links on a web page.

    • Use a web scraping tool like BeautifulSoup in Python or Selenium to extract all the links from the HTML of the web page.

    • Count the number of link elements or anchor tags in the HTML.

    • Consider different types of links such as internal links, external links, and anchor links.

    • Handle cases where links are dynamically loaded or hidden behind JavaScript.

    • Verify ...

  • Answered by AI
  • Q2. Remove zeros from arrays list
  • Ans. 

    Remove zeros from arrays list of strings

    • Iterate through each string in the array

    • Use filter method to remove zeros from each string

    • Return the updated array without zeros

  • Answered by AI
  • Q3. Return type of Findelements
  • Ans. 

    FindElements method returns a list of web elements matching the specified locator.

    • Return type of FindElements is List

    • It returns a list of all elements matching the specified locator

    • Example: List elements = driver.findElements(By.xpath("//input[@type='text']"));

Answered by AI
  • Q4. Find second highest vowel occurance in a string
  • Ans. 

    Find the second highest occurrence of a vowel in a string.

    • Iterate through the string and count the occurrences of each vowel (a, e, i, o, u).

    • Store the counts in an array and find the second highest count.

    • Return the vowel with the second highest count.

  • Answered by AI
  • Q5. Write locator for element in webpage
  • Ans. 

    Use CSS selector to locate element on webpage

    • Use unique id or class names to locate element

    • Use CSS selectors like 'id', 'class', 'name', 'tag name', etc.

    • Use XPath if necessary for complex element locating

  • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - it was entry leel

    Skills evaluated in this interview

    Interview experience
    1
    Bad
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - One-on-one 

    (1 Question)

    • Q1. Design parking lot
    • Ans. 

      Design a parking lot with efficient layout and features

      • Consider the size and layout of the parking lot

      • Include designated spots for different types of vehicles (compact, regular, handicapped)

      • Implement a clear signage system for easy navigation

      • Incorporate security measures such as lighting and surveillance cameras

      • Include payment options for parking fees (e.g. ticket machines, mobile app)

      • Consider environmental factors lik

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - While I was giving my last round, in between I got an email that I am not selected. Worst experience ever.

    Skills evaluated in this interview

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

    I applied via Approached by Company and was interviewed before Feb 2023. There were 4 interview rounds.

    Round 1 - One-on-one 

    (1 Question)

    • Q1. Traversal in matrix
    • Ans. 

      Traversal in matrix is the process of visiting each element in a matrix in a specific order.

      • Traversal can be done in different orders such as row-wise, column-wise, spiral, etc.

      • For example, in a 3x3 matrix, row-wise traversal would be [1, 2, 3, 4, 5, 6, 7, 8, 9].

      • Spiral traversal in the same matrix would be [1, 2, 3, 6, 9, 8, 7, 4, 5].

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

    (1 Question)

    • Q1. Vending machine lld
    Round 3 - One-on-one 

    (1 Question)

    • Q1. Red bus high level design
    • Ans. 

      Red bus high level design

      • Design a system for booking and managing bus tickets

      • Include features like searching for buses, selecting seats, and making payments

      • Consider scalability, availability, and security in the design

      • Use a distributed architecture with load balancing and fault tolerance

      • Implement a database for storing bus schedules, seat availability, and user information

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

    (1 Question)

    • Q1. Managerial questions some technical

    Skills evaluated in this interview

    Interview experience
    5
    Excellent
    Difficulty level
    Moderate
    Process Duration
    2-4 weeks
    Result
    Selected Selected

    I was interviewed in Apr 2024.

    Round 1 - Technical 

    (2 Questions)

    • Q1. Sql related Questions
    • Q2. Plsql Related Questions
    Round 2 - Behavioral 

    (2 Questions)

    • Q1. Project Related
    • Q2. Function programs
    Round 3 - HR 

    (2 Questions)

    • Q1. Location details
    • Q2. Company change reasons
    Interview experience
    4
    Good
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Technical 

    (2 Questions)

    • Q1. Advantage disadvantage of monolith and microservices
    • Ans. 

      Monolith has simplicity but lacks scalability, while microservices offer flexibility but introduce complexity.

      • Monolith: Simplicity in development and deployment, easier to debug and test

      • Monolith: Lack of scalability, all components tightly coupled

      • Microservices: Flexibility to use different technologies for different services

      • Microservices: Scalability, each service can be independently scaled

      • Microservices: Increased com...

    • Answered by AI
    • Q2. Lock and Synchronised difference
    • Ans. 

      Lock and Synchronised are both mechanisms used for thread synchronization in Java.

      • Lock is a more flexible and powerful mechanism compared to synchronized keyword in Java.

      • Lock interface provides more functionalities like tryLock(), lockInterruptibly(), etc.

      • Lock allows for more fine-grained control over locking and unlocking of resources.

      • Synchronized keyword is simpler to use but may lead to deadlocks in complex scenario...

    • Answered by AI

    Skills evaluated in this interview

    Interview experience
    5
    Excellent
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - One-on-one 

    (1 Question)

    • Q1. About Project and day to day activities
    Round 2 - HR 

    (1 Question)

    • Q1. Salary discussion and joining date

    Salesforce Interview FAQs

    How many rounds are there in Salesforce Senior Member Technical interview?
    Salesforce interview process usually has 2-3 rounds. The most common rounds in the Salesforce interview process are Coding Test, One-on-one Round and HR.

    Tell us how to improve this page.

    People are getting interviews through

    based on 1 Salesforce interview
    Company Website
    100%
    Low Confidence
    ?
    Low Confidence means the data is based on a small number of responses received from the candidates.

    Interview Questions from Similar Companies

    TCS Interview Questions
    3.7
     • 10.3k Interviews
    Accenture Interview Questions
    3.9
     • 8k Interviews
    Infosys Interview Questions
    3.7
     • 7.5k Interviews
    Wipro Interview Questions
    3.7
     • 5.5k Interviews
    HCLTech Interview Questions
    3.5
     • 3.7k Interviews
    IBM Interview Questions
    4.1
     • 2.4k Interviews
    Oracle Interview Questions
    3.7
     • 887 Interviews
    Google Interview Questions
    4.4
     • 846 Interviews
    Amdocs Interview Questions
    3.8
     • 524 Interviews
    View all
    Salesforce Senior Member Technical Salary
    based on 25 salaries
    ₹38.9 L/yr - ₹70 L/yr
    232% more than the average Senior Member Technical Salary in India
    View more details

    Salesforce Senior Member Technical Reviews and Ratings

    based on 4 reviews

    4.1/5

    Rating in categories

    3.6

    Skill development

    4.2

    Work-Life balance

    4.1

    Salary & Benefits

    3.3

    Job Security

    4.5

    Company culture

    3.3

    Promotions/Appraisal

    3.8

    Work Satisfaction

    Explore 4 Reviews and Ratings
    Technical Support Engineer
    851 salaries
    unlock blur

    ₹12 L/yr - ₹24 L/yr

    Technical Consultant
    300 salaries
    unlock blur

    ₹13.8 L/yr - ₹30 L/yr

    Member Technical Staff
    262 salaries
    unlock blur

    ₹18.8 L/yr - ₹60 L/yr

    Salesforce Developer
    232 salaries
    unlock blur

    ₹6.9 L/yr - ₹27 L/yr

    Senior Member of Technical Staff
    229 salaries
    unlock blur

    ₹27 L/yr - ₹100.4 L/yr

    Explore more salaries
    Compare Salesforce with

    SAP

    4.2
    Compare

    Zoho

    4.3
    Compare

    Oracle

    3.7
    Compare

    Adobe

    4.0
    Compare

    Calculate your in-hand salary

    Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
    Did you find this page helpful?
    Yes No
    write
    Share an Interview