Ir al contenidoIr al pie de página
  • Empleos
  • Empresas
  • Sueldos
  • Para empleadores

      Impulsa tu carrera profesional

      Averigua cuánto podrías ganar, encuentra el empleo perfecto y comparte información sobre tu vida laboral y personal de forma anónima.

      employer cover photo
      employer logo
      employer logo

      Salesforce

      Empleador activo

      Información
      Evaluaciones
      Pago y prestaciones
      Empleos
      Entrevistas
      Entrevistas
      Búsquedas relacionadas: Evaluaciones de Salesforce | Empleos en Salesforce | Sueldos en Salesforce | Prestaciones en Salesforce
      Entrevistas en SalesforceEntrevistas para el cargo de Software Engineer en SalesforceEntrevista en Salesforce


      Glassdoor

      • Acerca de
      • Premios
      • Blog
      • Contacto

      Empleadores

      • Cuenta de empleador gratuita
      • Centro de empleador

      Información

      • Ayuda
      • Pautas
      • Condiciones de uso
      • Privacidad y opciones de anuncios
      • No vender ni compartir mi información
      • Herramienta de autorización de cookies

      Trabaja con nosotros

      • Anunciantes
      • Oportunidades laborales
      Descargar aplicación

      • Buscar por:
      • Empresas
      • Empleos
      • Ubicaciones

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor", "Worklife Pro", "Bowls" y sus logotipos son marcas comerciales registradas de Glassdoor LLC.

      Empresas seguidas

      Sigue a tus empresas favoritas para estar al tanto de las últimas oportunidades y disponer de información desde adentro.

      Búsquedas de empleo

      Recibe recomendaciones y actualizaciones personalizadas al iniciar tu búsqueda.

      Entrevista para Software Engineer

      6 de ene de 2018
      Empleado anónimo
      Calcuta

      Otras evaluaciones sobre las entrevistas para el cargo de Software Engineer en Salesforce

      Entrevista para Software Engineer

      21 de may de 2026
      Empleado anónimo
      Oferta aceptada
      Experiencia positiva
      Entrevista difícil
      Oferta aceptada
      Experiencia positiva
      Entrevista promedio

      Solicitud

      Me postulé a través de una facultad o universidad. El proceso tomó 2 días. Acudí a una entrevista en Salesforce (Calcuta) en ago 2017

      Entrevista

      Round 1:(online) 45 mins Coding Round::: 2 coding Questions and 10 technical MCQs MCQs contained questions from C,C++,OS,etc 1st Coding Question: Given an array of integers where each element represents the max number of steps that can be made forward from that element. Write a function to return the minimum number of jumps to reach the end of the array (starting from the first element). If an element is 0, then cannot move through that element. Example: Input: arr[] = {1, 3, 5, 8, 9, 2, 6, 7, 6, 8, 9} Output: 3 (1-> 3 -> 8 ->9) First element is 1, so can only go to 3. Second element is 3, so can make at most 3 steps eg to 5 or 8 or 9. Solution: A naive approach is to start from the first element and recursively call for all the elements reachable from first element. The minimum number of jumps to reach end from first can be calculated using minimum number of jumps needed to reach end from the elements reachable from first. minJumps(start, end) = Min ( minJumps(k, end) ) for all k reachable from start Using Dynamic Programming the complexity can be reduced to O(n). 2nd Coding Question: Given an array, print the Next Greater Element (NGE) for every element. The Next greater Element for an element x is the first greater element on the right side of x in array. Elements for which no greater element exist, consider next greater element as -1. Examples: a) For any array, rightmost element always has next greater element as -1. b) For an array which is sorted in decreasing order, all elements have next greater element as -1. c) For the input array [4, 5, 2, 25}, the next greater elements for each element are as follows. Element NGE 4 --> 5 5 --> 25 2 --> 25 25 --> -1 Solution: Use two loops: The outer loop picks all the elements one by one. The inner loop looks for the first greater element for the element picked by outer loop. If a greater element is found then that element is printed as next, otherwise -1 is printed. Time-Complexity O(n^2) Can be reduced by using Stack to O(n). Round 2:F2F round The interview process started by first introducing myself. The interviewer was very friendly and he asked about how was the day that day? After thoroughly going through my CV, the interviewer asked me what do i mean by Object-Oriented Programming Principles? I started by first explaining what do we mean by objects(any real world entity which has certain state and behavior which in our programming concepts are called data-members and methods). Then I stated various OOP concepts like Abstraction,Encapsulation,Polymorphism,Inheritance,etc and explained each of them briefly. Then the interviewer asked me a real-world example? I gave an example of a pen which has state like amount of ink,material,etc and behavior is to write,etc Then the interviewer asked me to point out the objects present in the waterbotle? i gave the solution and said that it depends upon the designer of the class. Then there was a brief discussion of my CGPA and projects which I had done during my internship at a startup. Finally i was selected for next round. Round 3:HR round In this round all the candidates were asked to sit together and some behavioural questions were asked like Why do you want to join SalesForce,..,etc. The interviewer was very friendly and finally i was selected.

      Preguntas de entrevista [1]

      Pregunta 1

      The interviewer asked me what do i mean by Object-Oriented Programming Principles?
      1 respuesta
      1

      Solicitud

      Acudí a una entrevista en Salesforce

      Entrevista

      The technical interview was much tougher than I anticipated. I faced a DSA question related to word searches that required optimizing a brute-force approach with a Trie. It was intense, but the practice I’d done on PracHub the week before really helped solidify my understanding of the problem-solving techniques. The behavioral round felt lighter, focusing on teamwork and project experience. After a couple of days, I received an offer, which I happily accepted. Overall, it was a challenging yet rewarding experience.

      Preguntas de entrevista [1]

      Pregunta 1

      Word Search II - given an m x n board of characters and a list of words, return all words that can be formed from sequentially adjacent cells; had to optimize the brute-force backtracking with a Trie to pass the time limit
      Responder pregunta

      Entrevista para Software Engineer

      12 de may de 2026
      Candidato de entrevista anónimo
      Sin ofertas
      Experiencia positiva
      Entrevista fácil

      Solicitud

      Acudí a una entrevista en Salesforce

      Entrevista

      The interview process started with an online coding assessment that included DSA and problem-solving questions. After clearing the test, I had two technical interview rounds focused on data structures, OOPs concepts, DBMS, and project discussion. The final round was with the hiring manager where they asked about teamwork, problem solving, and career goals. The interviewers were professional and the process was smooth overall.

      Entrevista para Software Engineer

      11 de may de 2026
      Candidato de entrevista anónimo
      Oferta rechazada
      Experiencia neutra
      Entrevista promedio

      Solicitud

      Acudí a una entrevista en Salesforce

      Entrevista

      Went through 3 rounds. First round was a technical interview - it was a take home assessment. I didn't pass the test cases but still went through to the next round. The onsite had 1 behavioral, 1 system design, and 1 technical Leetcode style interview. It was in person on a whiteboard.