Upload Button Icon Add office photos

Filter interviews by

ePromptus Salesforce Developer Trainee Interview Questions, Process, and Tips

Updated 11 May 2024

ePromptus Salesforce Developer Trainee Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
6-8 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Nov 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Coding test about Salesforce

Round 2 - Technical 

(4 Questions)

  • Q1. What is the use of VS code and GitHub
  • Ans. 

    VS code is an integrated development environment for coding, while GitHub is a platform for version control and collaboration on code.

    • VS code is used for writing, editing, and debugging code in various programming languages.

    • GitHub is used for storing code repositories, tracking changes, and collaborating with other developers.

    • VS code can be integrated with GitHub for seamless version control and code collaboration.

    • Deve...

  • Answered by AI
  • Q2. What is validation rule
  • Ans. 

    Validation rule ensures data entered meets certain criteria before it is saved in the database.

    • Validation rules are used to enforce business logic and data quality standards.

    • They can be used to require certain fields to be filled out, restrict values that can be entered, or perform complex checks.

    • Examples include ensuring a phone number is in a specific format, or that a discount cannot exceed a certain percentage.

  • Answered by AI
  • Q3. What is SOSL and SOQL
  • Ans. 

    SOSL is Salesforce Object Search Language used to perform text searches in Salesforce data. SOQL is Salesforce Object Query Language used to query Salesforce data.

    • SOSL is used to search multiple objects in Salesforce for specific text-based information

    • SOQL is used to query Salesforce data to retrieve specific records based on specified criteria

    • SOSL uses FIND keyword to search for specific text in multiple objects

    • SOQL u...

  • Answered by AI
  • Q4. What are the APIs are there in Salesforce
  • Ans. 

    Salesforce has various APIs like SOAP API, REST API, Bulk API, Metadata API, Streaming API, etc.

    • SOAP API - used for creating, updating, deleting, and querying records

    • REST API - used for integrating Salesforce with external apps

    • Bulk API - used for loading or deleting large sets of data

    • Metadata API - used for managing customizations and building tools that can manage the metadata model

    • Streaming API - used for delivering

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. They are asking about your personal details and salary negotiation
  • Q2. They will check you are suitable for company environment or not

Interview Preparation Tips

Interview preparation tips for other job seekers - First check projects are available or not in this company. I got selected by the company but there is no projects. That's why my application is on hold. I am waiting for the project to go to the company.

Skills evaluated in this interview

Interview questions from similar companies

I applied via Walk-in and was interviewed before Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. A lot questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - I came in HCL without any reference, Randomly I came to give interview. there were total 3 rounds I faced. 1 Round Technical. 2nd Technial. 3 HR . For clearing technical round in HCL you should be technically strong. My 1st round took more than a hour and 2nd round took nearly 45 mins. Your basics should be clear and strong.

Interview Questionnaire 

1 Question

  • Q1. Time management

I applied via Campus Placement and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Waterfall model, Software development life cycle
  • Q2. How do you arrive at factorial without recursive function
  • Ans. 

    Factorial can be calculated using a loop by multiplying numbers from 1 to n.

    • Initialize a variable to 1

    • Use a loop to multiply the variable with numbers from 1 to n

    • Return the variable

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up your fundamental skills

I applied via Approached by Company and was interviewed before Jun 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. C#,asp.net mvc,.net core

Interview Preparation Tips

Interview preparation tips for other job seekers - Please go through glassdoor interview questions

Interview Questionnaire 

3 Questions

  • Q1. Process builder. 2.types of relationships. 3.difference in user ,profile and role. 4.workflow. 5.Admin questions
  • Ans. 

    Answering questions related to software development and Salesforce administration.

    • Process Builder is a visual tool in Salesforce used to automate business processes.

    • Types of relationships in Salesforce include lookup, master-detail, and many-to-many relationships.

    • User represents an individual who can log in and access Salesforce, Profile defines the permissions and settings for a user, and Role determines the hierarchy...

  • Answered by AI
  • Q2. What configuration i have done.
  • Ans. 

    I have configured various software systems and tools for development purposes.

    • Configured IDEs such as Eclipse and Visual Studio for development

    • Set up version control systems like Git and SVN

    • Installed and configured build tools like Maven and Gradle

    • Configured application servers like Tomcat and JBoss

    • Set up databases like MySQL and Oracle for development and testing

  • Answered by AI
  • Q3. Salary negotiations

Interview Preparation Tips

Round: Manager round
Experience: Configuration and what work ee have done in your previous company.

Skills evaluated in this interview

I applied via Company Website and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions on Java,SQL,some trending technologies(IOT,Big data),pattern questions, programming questions with different approaches.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics of DSA, have knowledge about the databases, some common dml ,ddl statements, programming knowledge of a particular language like C,Java, python,etc...have good command on oops concepts... little bit of frameworks knowledge will also help

I applied via Walk-in and was interviewed in Jul 2019. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Main focous on java and selenium.if you have devops knowledge then good to have..
  • Q2. Framework design,oops concept, challange you face,roles and responsibilities,agile concept etc...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, focous on core Java,do good practice to identify elements, analyse the things before you respond,be more practical,raise the concern once you stuck,try to find the solution from your end before you ask for Help,...

I applied via Company Website and was interviewed in Feb 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. I were asked to print the number of pairs in an array whose sum is equal to given number k
  • Ans. 

    Count the number of pairs in an array whose sum is equal to a given number k.

    • Iterate through the array and for each element, check if k minus the element exists in the array.

    • Use a hash table to store the frequency of each element in the array.

    • If the array contains duplicates, handle them separately to avoid overcounting.

    • Time complexity can be improved to O(n) using a two-pointer approach.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was nice

I applied via Recruitment Consultant and was interviewed before Oct 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. What is Abstraction
  • Ans. 

    Abstraction is the process of hiding complex implementation details and exposing only the necessary information.

    • Abstraction helps in reducing complexity and increasing efficiency.

    • It allows us to focus on the essential features of an object or system.

    • Abstraction can be achieved through abstract classes, interfaces, and encapsulation.

    • For example, a car can be abstracted as a vehicle with certain properties and methods.

    • Ab...

  • Answered by AI
  • Q2. Concept of hiding implementation
  • Ans. 

    Hiding implementation means keeping the internal details of a class or function hidden from the outside world.

    • It is a fundamental principle of object-oriented programming.

    • It helps in achieving encapsulation and abstraction.

    • It prevents the user from accessing the internal workings of a class or function.

    • Examples include private variables and methods in a class.

    • It allows for easier maintenance and modification of code.

    • It...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Not bad, good atmosphere, positive response from staff

ePromptus Interview FAQs

How many rounds are there in ePromptus Salesforce Developer Trainee interview?
ePromptus interview process usually has 3 rounds. The most common rounds in the ePromptus interview process are Coding Test, Technical and HR.
What are the top questions asked in ePromptus Salesforce Developer Trainee interview?

Some of the top questions asked at the ePromptus Salesforce Developer Trainee interview -

  1. What are the APIs are there in Salesfo...read more
  2. What is the use of VS code and Git...read more
  3. What is validation r...read more

Tell us how to improve this page.

ePromptus Salesforce Developer Trainee Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.7
 • 5.6k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.9k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
View all
Compare ePromptus with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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