Upload Button Icon Add office photos

Filter interviews by

Sapalogy Interview Questions and Answers

Updated 6 May 2024

Sapalogy Interview Experiences

Popular Designations

4 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is apex programing
  • Ans. 

    Apex programming is a strongly typed, object-oriented programming language used in Salesforce development.

    • Apex is used to write custom business logic and perform complex calculations in Salesforce.

    • It is similar to Java and allows developers to create custom applications and integrations on the Salesforce platform.

    • Apex code runs on the Salesforce servers, allowing for seamless integration with Salesforce data and proces

  • Answered by AI
  • Q2. What is lookup relationship
  • Ans. 

    Lookup relationship is a type of relationship in Salesforce where one object has a reference to another object.

    • It is used to link two objects together based on a common field.

    • It allows one object to reference another object's record.

    • It is similar to a foreign key relationship in a database.

    • Example: A 'Contact' object can have a lookup relationship with an 'Account' object.

  • Answered by AI

Salesforce Developer Interview Questions asked at other Companies

Q1. Write a trigger to update contact when accounts phone changed.
View answer (6)

HR Executive Interview Questions & Answers

user image Anonymous

posted on 10 Jan 2024

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

I applied via Naukri.com and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

30 questions in 40 mins for aptitude round

Round 2 - HR 

(2 Questions)

  • Q1. Tell me something about yourself
  • Q2. Your past experiences

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and bold with knowledge

HR Executive Interview Questions asked at other Companies

Q1. What do you know about Labor Law
View answer (6)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Why should we hire you

Salesforce Developer Interview Questions asked at other Companies

Q1. Write a trigger to update contact when accounts phone changed.
View answer (6)

Senior Manager Interview Questions & Answers

user image Sakshi Sapalogy

posted on 9 Jan 2024

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

I applied via Naukri.com and was interviewed before Jan 2023. There were 2 interview rounds.

Round 1 - HR 

(3 Questions)

  • Q1. What do you know about the Sapalogy?
  • Ans. 

    Sapalogy is a term that does not exist in any known context.

    • Sapalogy is not a recognized term in any field or industry.

    • There are no examples or references available for Sapalogy.

    • It is possible that the term was misspelled or misunderstood in the question.

  • Answered by AI
  • Q2. Why should i hire you?
  • Q3. Ready to relocate?
Round 2 - HR 

(2 Questions)

  • Q1. Technical information ?
  • Q2. Last company experience?

Interview Preparation Tips

Interview preparation tips for other job seekers - Read all the sapalogy website

Senior Manager Interview Questions asked at other Companies

Q1. 1. What you understand the requirement of shuttering material at project site?
View answer (19)

Sapalogy interview questions for popular designations

 Salesforce Developer

 (2)

 HR Executive

 (1)

 Senior Manager

 (1)

Interview questions from similar companies

I applied via Recruitment Consulltant and was interviewed before Nov 2021. There were 2 interview rounds.

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. Basics related to customisations and configuration
  • Q2. Basics of integration

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare with realtime scenarios.
To back up all concepts that will be asked you to explain

I applied via LinkedIn and was interviewed before Apr 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. The technical interview mostly includes basic knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear basis of trigger and admin part

I applied via Naukri.com and was interviewed in Jan 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basics questions and programs related to trigger,lightning and few questions on lwc

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice programming more and be confident

Interview Preparation Tips

Skills: Coding Skills And Knowledge On Data Structures, Knowledge About Database Managements Systems
College Name: Bharati Vidyapeeth Deemed University,Pune

I applied via Naukri.com and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Apex, WF and PB, Asynchronous, order of execution, flows, basics of Lightning, Governance limit, Deployment types

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your resume.

Interview Questionnaire 

5 Questions

  • Q1. How do you make the child records read only of its parent record's field is updated to some value
  • Ans. 

    Child records can be made read-only when parent record's field is updated using validation rules.

    • Create a validation rule on child object

    • Use ISCHANGED() function to check if parent field is updated

    • Use PRIORVALUE() function to get the previous value of parent field

    • Use ISBLANK() function to check if the previous value of parent field is blank

    • Use ISNEW() function to allow creation of child records

    • Use OR() function to comb...

  • Answered by AI
  • Q2. How do you call a controllor method from javascript in visualforce page?
  • Ans. 

    To call a controller method from JavaScript in a Visualforce page, use the actionFunction tag.

    • Create a controller method in the Apex class.

    • Add an actionFunction tag in the Visualforce page.

    • Call the actionFunction from JavaScript using its name.

    • Pass parameters to the controller method using the actionFunction tag.

    • Use the rerender attribute to update the page after the controller method is called.

  • Answered by AI
  • Q3. What are the collectio variables and when do we use them in apex?
  • Ans. 

    Collection variables are used to store multiple values of the same data type in Apex.

    • Collection variables include Lists, Sets, and Maps.

    • Lists are ordered collections of elements that can contain duplicates.

    • Sets are unordered collections of unique elements.

    • Maps are collections of key-value pairs.

    • Collection variables are useful for iterating over multiple values and performing operations on them.

    • Example: List names = new...

  • Answered by AI
  • Q4. How do load both parent and child records at a time using data loader?
  • Ans. 

    Use data loader's parent-child functionality to load both parent and child records at once.

    • Create a CSV file with both parent and child records

    • Use the data loader's parent-child functionality to map the relationship between the two

    • Ensure that the parent records are loaded before the child records

    • Use the data loader's insert or upsert operation to load the data

  • Answered by AI
  • Q5. Syntax of batch class, future method
  • Ans. 

    Batch class and future method syntax in Salesforce development.

    • Batch class syntax: Implements Database.Batchable interface, has start(), execute() and finish() methods.

    • Future method syntax: Has @future annotation, returns void, takes parameters.

    • Example batch class syntax: public class MyBatch implements Database.Batchable { ... }

    • Example future method syntax: @future public static void myFutureMethod(String param) { ...

  • Answered by AI

Skills evaluated in this interview

Sapalogy Interview FAQs

How many rounds are there in Sapalogy interview?
Sapalogy interview process usually has 1-2 rounds. The most common rounds in the Sapalogy interview process are HR, Aptitude Test and Technical.
How to prepare for Sapalogy 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 Sapalogy. The most common topics and skills that interviewers at Sapalogy expect are Communication Skills, Teaching, Chemistry, Coaching and Cold Calling.
What are the top questions asked in Sapalogy interview?

Some of the top questions asked at the Sapalogy interview -

  1. What do you know about the Sapalo...read more
  2. what is apex program...read more
  3. what is lookup relations...read more

Tell us how to improve this page.

Sapalogy Interview Process

based on 5 interviews

Interview experience

4.6
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 791 Interviews
View all

Sapalogy Reviews and Ratings

based on 37 reviews

4.5/5

Rating in categories

4.5

Skill development

4.5

Work-life balance

4.4

Salary

4.3

Job security

4.5

Company culture

4.2

Promotions

4.5

Work satisfaction

Explore 37 Reviews and Ratings
Data Analyst
29 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate SAP MM Consultant
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

QA Engineer
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

SAP MM Consultant
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Salesforce Developer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Sapalogy with

Infosys

3.6
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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