Upload Button Icon Add office photos

Filter interviews by

Stratos Studios Salesforce Consultant Interview Questions and Answers

Updated 30 Jul 2022

Stratos Studios Salesforce Consultant Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Mostly Oops concepts
Round 2 - HR 

(1 Question)

  • Q1. Career related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Mostly focused on OOPS concepts.
And topics from previous experiences which are mentioned in resume.

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Write a trigger to create contact whenever account is created.
  • Ans. 

    Trigger to create contact when account is created

    • Create an after insert trigger on Account object

    • Check if the trigger is fired due to account creation

    • Create a new contact record with necessary fields filled in

  • Answered by AI
  • Q2. Error handling in flows
  • Ans. 

    Error handling in flows involves setting up fault paths to handle exceptions and errors that may occur during the flow execution.

    • Set up fault paths in the flow to catch and handle errors

    • Use decision elements to determine the appropriate action based on the error

    • Consider using record-triggered flows for more complex error handling scenarios

    • Utilize debug logs and error emails to track and troubleshoot errors

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - believe in yourself

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Trigger on child object to update parent object (Account from Contact)
  • Ans. 

    Use trigger on Contact to update related Account fields

    • Create a trigger on Contact object

    • Query for related Account record using Contact's AccountId

    • Update Account fields based on Contact field changes

  • Answered by AI
  • Q2. Batch Apex Syntax, Features and Limitations
  • Ans. 

    Batch Apex is used to process large amounts of data asynchronously in Salesforce.

    • Batch Apex is used to handle large data volumes by breaking the processing into smaller chunks.

    • It is implemented by writing a class that implements the Database.Batchable interface.

    • Batch Apex has start, execute, and finish methods to control the batch processing.

    • It has limitations such as a maximum of 50 million records processed per batch...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Trigger to send Email to Contacts on update on Account
  • Ans. 

    Use a trigger to send email to contacts when an account is updated

    • Create a trigger on Account object

    • Query for related contacts

    • Send email to contacts using Apex email class

  • Answered by AI
  • Q2. Communication in LWC
  • Ans. 

    Communication in LWC involves using events, properties, and methods to pass data between components.

    • Use events to communicate between parent and child components

    • Pass data using properties in the component hierarchy

    • Call methods in child components from parent components

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Reason for Job Change
  • Ans. 

    Seeking new challenges and growth opportunities in a dynamic environment.

    • Desire to work with cutting-edge technology

    • Opportunity for career advancement

    • Seeking a more collaborative team environment

  • Answered by AI
  • Q2. Salary Expectations

Interview Preparation Tips

Topics to prepare for Infosys Salesforce Consultant interview:
  • Batch Apex
  • LWC
  • Apex Triggers

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Write a trigger to update the account name like all related contact names when a related contact record name is inserted aur updated.
  • Q2. What is Lightning flows and describe it's types?
  • Ans. 

    Lightning flows are declarative automation tools in Salesforce that allow users to design and automate business processes.

    • Lightning flows are used to automate business processes by guiding users through a series of screens or steps.

    • There are two types of Lightning flows: Screen Flows and Auto-launched Flows.

    • Screen Flows are interactive flows that guide users through a series of screens to collect and display informatio...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Mar 2024. There were 4 interview rounds.

Round 1 - Assignment 

The exam was all the topics of salesforce

Round 2 - Technical 

(1 Question)

  • Q1. The interview was fine they touched all the topics from basic to advance but not much scenario based questions. Interview time around 1.15 hour
Round 3 - Technical 

(1 Question)

  • Q1. This interview was all about the scenario based questions. Interview time 1 hour
Round 4 - HR 

(1 Question)

  • Q1. They first called me and told me I got selected but they did not release the offer letter and they put me on hold after some days they again called me and said we will release the offer in 2 weeks but they...

Interview Preparation Tips

Interview preparation tips for other job seekers - Please do not give interview at Deloitte

I applied via Approached by Company and was interviewed in Mar 2022. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic to advanced definition and scenarios based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well to explain about the project and scenarios based questions

I applied via Referral and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Normal Testing Questions and Agile

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview process was smooth and simple.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Lwc lifecycle hooks
  • Q2. Different types of flows and how to add lwc components to flows
  • Ans. 

    Different types of flows and how to add LWC components to flows

    • Types of flows include autolaunched flows, screen flows, and scheduled flows

    • To add LWC components to flows, use the 'lightning__FlowScreen' interface in the LWC component's meta file

    • LWC components can be added to flows using the Lightning App Builder by dragging and dropping them onto the flow canvas

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Mostly Lwc and admin part basics

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. How to bulkify flows
  • Ans. 

    Bulkifying flows involves optimizing flows to handle large volumes of data efficiently.

    • Use collections (such as lists or maps) to process records in bulk

    • Avoid using record-triggered flows on large data sets

    • Minimize the number of queries and DML operations within the flow

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Explain how will you integrate two salesforce org, all the necessary steps.
  • Ans. 

    Integrating two Salesforce orgs involves mapping data, setting up connections, and testing the integration.

    • Map out the data fields and objects that need to be synced between the two orgs.

    • Set up a connection using Salesforce Connect or third-party integration tools like MuleSoft or Jitterbit.

    • Configure security settings to ensure data privacy and compliance.

    • Test the integration thoroughly to ensure data is syncing accura...

  • Answered by AI

Stratos Studios Interview FAQs

How many rounds are there in Stratos Studios Salesforce Consultant interview?
Stratos Studios interview process usually has 2 rounds. The most common rounds in the Stratos Studios interview process are Technical and HR.

Tell us how to improve this page.

Stratos Studios Salesforce Consultant Salary
based on 233 salaries
₹5 L/yr - ₹12 L/yr
39% less than the average Salesforce Consultant Salary in India
View more details

Stratos Studios Salesforce Consultant Reviews and Ratings

based on 33 reviews

2.9/5

Rating in categories

3.5

Skill development

3.3

Work-life balance

2.9

Salary

2.0

Job security

2.6

Company culture

2.2

Promotions

2.8

Work satisfaction

Explore 33 Reviews and Ratings
Salesforce Consultant
233 salaries
unlock blur

₹5 L/yr - ₹12 L/yr

Salesforce Developer
50 salaries
unlock blur

₹4 L/yr - ₹9 L/yr

Salesforce Administrator
7 salaries
unlock blur

₹7.5 L/yr - ₹7.5 L/yr

Software Developer
5 salaries
unlock blur

₹7.5 L/yr - ₹10.5 L/yr

Consultant
5 salaries
unlock blur

₹7.5 L/yr - ₹7.5 L/yr

Explore more salaries
Compare Stratos Studios with

Prime Focus

3.8
Compare

Reliance Big Entertainment

3.1
Compare

DNEG CREATIVE SERVICES

3.6
Compare

Technicolor

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