Upload Button Icon Add office photos

Filter interviews by

Bit Order Technologies Salesforce Developer Interview Questions and Answers

Updated 23 Oct 2024

Bit Order Technologies Salesforce Developer Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Referral and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Easy questions on Salesforce development

Round 2 - Technical 

(4 Questions)

  • Q1. Basic Apex questions
  • Q2. Basic admin related questions
  • Q3. Basic LWC questions
  • Q4. Scenario based questions on Security model of salesforce

Interview Preparation Tips

Topics to prepare for Bit Order Technologies Salesforce Developer interview:
  • Apex
  • LWC
  • Administration

Interview questions from similar companies

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

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. When you want delete account accosiated with contact. The account should not get deleted.
  • Ans. 

    To delete an account associated with a contact without deleting the account itself.

    • Remove the contact's association with the account before deleting the contact.

    • Check for any other dependencies before deleting the contact.

    • Consider creating a custom field to track the association between the contact and account.

  • Answered by AI
  • Q2. Do have experience in flows, Explain the flows
  • Ans. 

    Flows are declarative automation tools in Salesforce used to automate business processes by collecting data and performing operations.

    • Flows are created using a visual designer in Salesforce.

    • They can automate complex business processes without writing code.

    • Flows can collect data from users, interact with Salesforce, and make decisions based on user input or data.

    • They can be triggered by various events like record change...

  • Answered by AI
Round 2 - Client Interview 

(2 Questions)

  • Q1. When rating is hot update description
  • Ans. 

    When a rating is hot, update the description accordingly.

    • Monitor user feedback and ratings regularly

    • Update the description based on the latest ratings and reviews

    • Consider adding specific details or addressing common concerns mentioned in the feedback

  • Answered by AI
  • Q2. Tell me about yourself
  • Ans. 

    I am a Salesforce Developer with 5 years of experience in designing and implementing custom solutions for clients.

    • 5 years of experience in Salesforce development

    • Strong expertise in designing and implementing custom solutions

    • Proficient in Apex, Visualforce, and Lightning components

    • Certified Salesforce Developer

    • Experience working with clients to understand their requirements and deliver solutions

  • Answered by AI
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
4-6 weeks
Result
No response

I applied via Campus Placement and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was easy and basic

Round 2 - Coding Test 

Coding questions are bit complicated

Round 3 - Technical 

(2 Questions)

  • Q1. Salesforce platform questions
  • Q2. Basic hr questions and project based question
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Question related to flow, security
  • Q2. Asked to write trigger related to after update
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Resume shortlist
Round 2 - Technical 

(4 Questions)

  • Q1. Decorators in lwc
  • Ans. 

    Decorators in LWC are a way to enhance the functionality of a component by adding metadata and modifying behavior.

    • Decorators are used to modify the behavior of properties, methods, and getters/setters in LWC.

    • They are defined using the @ symbol followed by the decorator name.

    • Some commonly used decorators in LWC are @api, @track, @wire, and @track.

    • The @api decorator allows a property to be accessed by parent components.

    • T...

  • Answered by AI
  • Q2. User need to choose the profile before login to salesforce
  • Q3. How manual sharing works and how to see manually shared rercords
  • Ans. 

    Manual sharing allows users to manually grant access to records. To see manually shared records, use the 'Sharing' button on the record detail page.

    • Manual sharing is a feature in Salesforce that allows users to manually grant access to records.

    • It is useful when users need to share specific records with other users or groups.

    • To manually share a record, users can click on the 'Sharing' button on the record detail page.

    • Fr...

  • Answered by AI
  • Q4. Write trigger on opportunity to sum of total opps and populate on account sumofopps field
  • Ans. 

    Write a trigger on Opportunity to calculate the sum of total opportunities and populate it on the Account's 'SumOfOpps' field.

    • Create a trigger on the Opportunity object

    • Use an aggregate query to calculate the sum of the 'Amount' field on all related Opportunities

    • Update the 'SumOfOpps' field on the related Account with the calculated sum

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Write trigger , there are 3 objects, a is parent, b child, c is grand child, when grand child updated update grand child desc on a object desc
  • Ans. 

    Write a trigger to update the description field on the parent object when the grandchild object is updated.

    • Create a trigger on the grandchild object

    • Use a SOQL query to retrieve the parent object

    • Update the description field on the parent object with the grandchild's description

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Apex coding on custom objects

Round 2 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. What is Rest API Integration?
  • Ans. 

    Rest API Integration is a method of connecting different software systems through the use of RESTful APIs.

    • Rest API Integration allows different systems to communicate with each other over the internet.

    • It enables the exchange of data between systems in a standardized and secure manner.

    • Developers can use REST APIs to access and manipulate resources on remote servers.

    • Examples of Rest API Integration include integrating a ...

  • Answered by AI
  • Q2. Trigger for roll up summmary
  • Ans. 

    A trigger is used to perform calculations and updates on related records when a record is created, updated, or deleted.

    • Triggers are written in Apex and are used to automate processes in Salesforce.

    • They can be used to perform calculations, updates, or validations on related records.

    • For roll up summaries, triggers can be used to calculate and update summary fields on parent records based on child records.

    • Example: Trigger...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Do you have any certification?

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Naukri.com and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Aptitude Test 

20 mins for 30 ques were there.

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Coding Test 

Managerial questions about all technical questions as well

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Questions on Apex and LWC
Round 2 - Coding Test 

Trigger question on parent child relationship

Round 3 - Coding Test 

Batch class and trigger

Interview Preparation Tips

Topics to prepare for Citicorp Salesforce Developer interview:
  • Apex
  • lwc
Interview preparation tips for other job seekers - Prepare well. They focus on details in code and prepare to code in every round

Bit Order Technologies Interview FAQs

How many rounds are there in Bit Order Technologies Salesforce Developer interview?
Bit Order Technologies interview process usually has 2 rounds. The most common rounds in the Bit Order Technologies interview process are Aptitude Test and Technical.
How to prepare for Bit Order Technologies Salesforce Developer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Bit Order Technologies. The most common topics and skills that interviewers at Bit Order Technologies expect are Apex, CSS, Javascript, Programming and SFDC.
What are the top questions asked in Bit Order Technologies Salesforce Developer interview?

Some of the top questions asked at the Bit Order Technologies Salesforce Developer interview -

  1. Scenario based questions on Security model of salesfo...read more
  2. basic admin related questi...read more
  3. Basic Apex questi...read more

Tell us how to improve this page.

Bit Order Technologies Salesforce Developer Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more
Bit Order Technologies Salesforce Developer Salary
based on 19 salaries
₹3 L/yr - ₹12.2 L/yr
At par with the average Salesforce Developer Salary in India
View more details
Technical Specialist
28 salaries
unlock blur

₹4.2 L/yr - ₹12.4 L/yr

Salesforce Developer
19 salaries
unlock blur

₹3 L/yr - ₹12.2 L/yr

Senior Technical Specialist
8 salaries
unlock blur

₹10 L/yr - ₹15 L/yr

Associate Technical Specialist
5 salaries
unlock blur

₹3 L/yr - ₹3.2 L/yr

QA Specialist
4 salaries
unlock blur

₹6 L/yr - ₹8.4 L/yr

Explore more salaries
Compare Bit Order Technologies with

Tech Mahindra

3.5
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

TCS

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