Thursday, February 27, 2020

3.All Salesforce Interview Questions With Answers


  • Credit Goes to All other Salesforce Content Developers and Google. 
  • We just Copied and Pasted your Content. 
  • Please if you found, your Original Efforts we copied means. 
  • Please update to our mail ID eekaconsultancy@gmail.com.
  • We will remove your Copyrighted Content.Because we are respecting your efforts.
  • This Action did for help the Job Seekers Non Commercial way.
  • Infinite Thanks for the Original SFDC Interview Questions and Knowledge Article Developers.

1.MNCs Salesforce Interview Questions

IRON MOUNTAIN    (INTERVIEWED BY RAJESH AT 3:30 ON 19/11/2014  WED)
==========================================================================
1.TRIGGERS EXECUTION STEPS.

2. REST VS SOAP.

3. BULKIFYING TRIGGER.

4. INTEGRATION.

5.









=======================================================================================
INTIME TEC (INTERVIEWED BY TARUN AT 3:00 ON 20/11/2014  THU)
========================================================================================
1. STANDARD CONTROLLERS,CUSTOM CONTROLLERS AND EXTENSIONS.

2.RECORD TYPES AND ITS FUNCTIONALITY

3.JAVA CONCEPTS (STRESSED ON POLYMORPHISM AND LIGHTLY ON ABSTRACTION)

4.TRIGGERS EXECUTION STEPS.

5.HOW TO KNOW WHICH TRIGGER IS FIRED FIRST AND THE NEXT WHEN GIVEN ON THE SAME OBJECT.

6.TRIGGERS LIKE BEFORE UPDATE &BEFORE INSERT,WHICH IS FIRED FIRST(LIKE ISUPDATE,ISINSERT) WITH INBUILT FUNCTIONALITY.

7.TIME DEPENDENT WORKFLOW RULES.(CREATING A TRIGGER WORKFLOW WITH THE CRITERIA 'EXPIRES IN 30 DAYS' AND INSERTING A RECORD AFTER THE TIME).

8.ACTION STATUS,ACTION FUNCTION.(AJAX REQUESTS)

9.RENDERD,RERENDER

10.SOQL QUERIES,LIKE A CUSTOM__C HAVE VALUES A,B,C,D  AND SEE WHICH VALUE IS OBTAINED
              list<string> s = new list<string>();
                  [where value in:s];



1. How many users are there in your organization?

2. How many partners are there in your organization?

3. By avoiding profiles and roles, how can you make the user to access the records?

A) Making Organization Wide Default as Public Read/Write.

4. How can you rate yourself in Visual Force and Apex?

5. Have you used with sharing in your project?

A) Yes

6. When have you used record types in your project?

A) To display different picklist values to different profiles.and To assign different pagelayouts to different Users based on their profiles.
   

7. Which governer limits have you come across frequently in your current project?

A) DML statements and SOQL queries

8. Tell me about your current project flow?

9. Can you explain me about security model of the SFDC?

A) Security model can be defined with the combination of owd, role hierarchy and sharing rules.













1. How many number of people are ther in your team what is their designation?


2. What is the length of record Id, Is it case sensitive?

A:  15 digit case-sensitive version which is referenced in the UI

    18 digit case-insensitive version which is referenced through the API
    The last 3 digits of the 18 digit ID are a checksum of the capitalizations of the first 15 characters.
    The API will accept the 15 digit ID as input but will always return the 18 digit ID.

3. How can you test your application?

A: @isTest

4. How can you test unit testing in your organization?

A: @isTest(SeeAllData=true)

5. How can you test visualforce pages?

A: Using Test.setCurrentPageReference(PagereferenceInstance) (OR) Test.setCurrentPage(PagereferenceInstance) 

Ex: PageReference ref=Page.MyPage;
    Test.setCurrentPageReference(ref);(or) Test.setCurrentPage(ref);

6. Who will provide work to you, is it your team lead?

A: Team Leader.

7. What is your interaction with your manager?

8. Why are you looking for change?

A: Permanent Employee Position and Professional Growthing.

9. What is external id?

A: It is a Manual Recordid we can integrate to external systems.
   
   External Id available for Text, Number and Email field types. 

10. what is data loader?

A: The Data Loader is an easy to use graphical tool that helps you to get your data into Salesforce objects. 
   The Data Loader can also be used to extract data from database objects. 
   You can even use the Data Loader to perform bulk deletions by exporting the ID fields for the data.

11. What are the events in trigger?(like before insert , after update)

A:Before Insert,Before Update,Before Delete,After Insert,After Update,After Delete,After UnDelete.

12. What is trigger.new?

A: It Returns Collection Of Newly Inserted Records.

13. How can you provide security for the records?

A:  By using owd, rolehierarchy and sharing rules together


14.What are the Context Variables in trigger?

A:isBefore,isAfter,isInsert,isUpdate,isDelete,isUnDelete,isExecuting,New,Old,NewMap,OldMap,Size.

15. Why we use startTest and stopTest methods in salesforce?

A: startTest: Marks the point in your test code when your test actually begins.You can also use this method with stopTest 
   to ensure that all asynchronous calls that come after the startTest method are run before doing any assertions or testing. 
   Each testMethod is allowed to call this method only once.

   stopTest: Marks the point in your test code when your test ends. Use this method in conjunction with the startTest method. 
   Each testMethod is allowed to call this method only once.When stopTest is executed, all asynchronous processes are run synchronously.

1. OWD Sharing Rules, Profiles, Permissions in OWD.
2. Triggers à Undelete how long it will be available in Recycle bin?
3. Recursive Triggers?
4. Formula filed entered some numeric data is it possible to override that using Apex Code?
5. Batch Apex?                                                                                                                                    
6. Governor Limits à SOQL, SOSL, SOQL: For how many fields we can use a Query?
7. Change sets?
8. Relationships à Master-Detail Relationship?
9. Workflow à Outbound messages?
10. Dashboard components—Charts, Guages, Tables, Metrics
11. Add Error
12. Field Level Security
13. Roll-up Summary?
14. If 2 objects are created & gave same records in both is it possible to provide Master-Detail Relationship?

KPIT Cummins
1)      What is Schema Builder?
Ans: Schema Builder makes it easier to visualize your objects, fields and relationships in an interactive Entity Relationship Diagram (ERD)

To launch Schema Builder, go to Setup | App Setup | Schema Builder. (The first time you launch, Schema Builder automatically lays out all of your objects based on their relationships, so it may take longer than usual to load.)
This eliminates the need to click from page to page to find the details of objects, fields, and relationships in your schema. The drag-and-drop interface lets you easily move objects around and saves the layout of your schema any time you move an object.
2)      What is the difference between Debug Logger & Developer Console?
3)      Difference between custom controller & extension controller? Why we use extensions?
4)      In VF page, we want to display 3 columns & the fields from 3 different objects. Then how can u display?


American Express
1)       Trigger should perform based on user requirement?
It should Trigger when user want to trigger & shouldn’t when trigger don’t want?
2)       What are default methods for Batch Apex?
Ans: start(), execute() and finish()
3)       Analytical snapshot?
4)       Types of Triggers?
5)       Other than Data Loader any other way to import Bulk Data?
6)       Explain any scenario occurred you to work beyond Governor Limits?
7)       How u will do Mass Insert through trigger?
8)       If I want to Insert, Update any record into ‘Account’. What trigger I have to use?

1. I have some workflow – I have one new rule -> I need to insert in the development console how can you achieve this?
2. Some bulk records opportunity account record I need to change owner name how to acive this?
3.  Difference between Database and reference?
4. I have a trigger how to integrate into Salesforce?

Delta
1. How to create subject dynamically?
2. Account object how to do create instance subject?
3. In how many ways to create Apex class?
4. What is the difference between database insert and insert?
5. What is the difference between role and profile?
6. How to read parameter in Apex?
7. What is the difference between lead and opportunity?
8. How to connect to lead? What option we have?
9. What is the difference between soap and rest?
10. What is the difference between Http and soap?
11. How to schedule the class?
12. What is the difference between external id and unique id?
13. Life cycle of apex class?
14. sandbox, production using same unique id?
15. Propertities in Apex? Advantages of properties?


Introductory Questions:
1. Tell me a little about yourself and your work experience.
2. Why do you want to leave your current employer?
3. What kind of a role are you looking for?
4. What would be the desired compensation range?
5. How many end-to-end implementations have you worked on and what was your level of involvement in most of them?

Technical Questions:
6. What is Apex Data Loader and what kind of operations can it perform?
7. What is an Apex Constructor?
8. What’s the difference between Roles and Profiles?
9. What are approval processes in salesforce?
10. What’s the difference between SOSL and SOQL?
11. How many Master Detail relationships can you have on an object?
12. What is the difference between 15 digit and 18 digit ID’s in Salesforce?
13. Which standard objects in Salesforce support Queues?
14. What is the difference between Profiles and Permission Sets?
15. What are Visual Workflows and how are they different from Workflows?
16. When would you use a before or after trigger?
17. What are custom settings and how can you use them?
1. I have single user, two profiles, what is the approach?
2. What is the difference between sales cloud and service cloud?
3. We implement email functionality in the assignment rule so in assignment rule when ever case is created getting Assigned to queue but the owner of assignment go to xxx , assignment rule is assigned to yyy. but email rules working fine, Assignment rule working fine but assigned to xxx as per agreement rule it is assigned to yyy?
4. What is the difference between Profile and Role?
5. How many types of controllers?
6. What is the difference between standard and custom controllers?
7. Can u use multiple extensions in single visual force page?
8. Explain integration?


1. Write a trigger on a opportunity on through an error when opportunity stage =”closed won” or “closed lost” amount cannot have the chance.
2. Write a trigger on case object to calculate case resolved type-time? (resolution time)
3. Account Name unique.
4. To place image and display site also?


Why use the test.start(),test.stop()?

Why we are using test.start and test stop test methods in test class to batch apex ?
Hi Experts,

i have little confuse ,Why we are using test.start and test stop test methods in test class to batch apex ? Any one can demonstrate on this  .      pls don't paste the link.




MSCI Telephonic Interview Questions

1)How u know about this job?
2)What do u know about the company?
3)About exp & education?
-Now technical side
4)Explain a simple apex class with an example which is used in current project?
5)How u execute it?
6)Triggers
scenario 1: before & after triggers are available then which one execute first?
scenario 2: two different programs, two before triggers are there then which one execute first?
7)what is Validation rule?
8)shall we require any user permission for testing an application?
9)Have u used merge trigger, explain it
10)If we want huge(bulk) data to be update, can we do it with trigger?how?
11)Order of execution( Deployment)?
12)What are test cases, give an example
13)How to test a visualforce page?
14)Have u used Batch Apex? at what situation?
15)Diff b/w Batch & Scheduled Apex? when we use these?
16)what is the use of code coverage?
17)Code coverage & Its importance?
18)Have u worked on controllers? then mostly on which type of controllers?
19)Diff b/w Standard & Custom controllers?
20)when u used extension controller? why we go for this even we have above?
So he moved to Java(spring, hibernate, JSF) (which are used in project)
21)what is Dependency Injection?types?
22)what is application context? & its use?
23)Hibernate DB connection?
Accenture Interview Questions
1)      What is Dynamic Approval process?
2)      Flow of execution in validations, triggers & workflows?
Ans: all before triggers,
Validations,
Workflows,
All after triggers.
3)      Assignment process & validations.
4)      Difference between Trigger.new & Trigger.old?
5)      Trigger events? & context variables?
6)      Batch Apex?
7)      Will one workflow effects another workflow?
8)      Syntax for upsert & undelete trigger & Purpose undelete?
9)      Case management?
10)   If we want to upload data through DataLoader, what the changes to be done?

Cybage Interview Questions
1)What is the mechanism used in your project?
2) Where you involved in project? how you manage packages?
3) What is Custom portal?
4) What is your role & have you done any implementation?

HP Interview Questions
Asked about the differences in salesforce.com licence and force.com licence.
Asked about triggers.
Sales life cycle and sales cycle.
About workflow events
Opportunity stages and case stages
The projects worked on.
Auto populating the shipping address of to billing address.
Using data loader how the records were uploaded.
In data loader whats the sequence of getting the data. Like accounts, contacts.....
Restricting non administrative users from editing their user credentials.


CITRIX
1. Salesforce knowledge? Custom settings.
2. How to get the list of all available sObject in Salesforce database using Apex (Dynamic Apex)?
3. Diff between Export & Export All?
4. When can I do a Full Sandbox refresh?
  Ans: 29 Days
5. Future Annotation?
6. Execution order of Workflow, Apex Triggers & Validation rules?
7. How to get parameters passed to URL in salesforce Apex?
Ans: email=Apexpages.Currentpage ().getParameters ().get (‘email’);
8. View state Error?


1. How to retrieve sObjects from the salesforce using Dynamic Apex?
2. Test.StartTest & Test.StopTest?
3. How many controllers can be used in single Visualforce page?
4. Which is the most released Edition in terms of various limits?
5. 15-char & 18-char ID?
6. Schedule Apex?
7. Action Pollar?
8. Heap size?
9. with sharing & without sharing?

iGATE
1. Diff between Modify data & Modify All?
2. Relationships?
3. Is it possible to convert Master-Detail to Look-up relationship?
4. Diff between Master-Detail & Look-up relationships?
5. What are custom settings?

Apex Callouts:
An Apex callout enables you to tightly integrate your Apex with an external service by making a call to an external Websrevice or sending a HTTP request from Apex code & then receiving the response.

L& T Interview Questions

1)We have an object by default private and profile with Modify all
Data & view all permissions. Can we access object through that
profile?

2)To share a particular Apex class throught the project which
keyword can be used?
Ans: with sharing

3)how to maintain the security level settings to different
departments[HR, Tech, Developer] which are not hierarchy.

4)Can we change Formula field value through Apex?
Ans: No

5)How Recursive trigger will perform? & how to avoid?
Ans: To avoid, static variable 'locks' are used.

6)Two classes in that one with 0% code coverage & another with 90%
code coverage. Can we send it to production?

7)Can we add one Visualforce page into another visualforce page?
then how?

8)In field level security one field is set to hidden. Can we
access particular field through Apex code or Workflow?

9)Can we create a user with Trigger?

10) In How many way we can invoke the Apex class?
Ans:4 ways
Visualforce page
Trigger
Web Services
Email Services

Answers:

For Question number 7:


syntax:
<apex:include pageName="yourSecondaryPageName">

Example:
<apex:page id="thePage">
<apex:outputText value="(page) This is the page."/><br/>
<apex:include pageName="includePage"/>
</apex:page>




1. Tell me about yourself?
2. Describe me your projects?
3. Which one do you think is good option submitting the perfect document late or submitting the partial document within time
4. How do you cultivate trust in your manager/customer?
5. What kind of environment do you like to work
6. How do you persuade someone's thoughts?
7. What is your biggest failure? What did you learn…

What is salesforce?
What is a custom object in salesforce?
Explain what is object relationship overview?
Mention changing what may cause data loss?
How SaaS can be helpful to Sales force?
How sales force is useful in tracking sales?
Mention how many relationship is included in SFDC and what are they?
Mention what is the difference between isNull and isBlank?
Explain what is the trigger?
Mention what is the use of the static resource in Salesforce?
Mention what is the difference between force.com and Salesforce.com?
Mention what are the actions available in workflow?
Explain what is the limit of data.com records that can be added to Salesforce?
Mention what are the different types of custom settings in Salesforce?
Mention what are the three types of object relations in Salesforce?
Mention what are the different types of reports available in Salesforce?
Is it possible to schedule a dynamic dashboard in Salesforce?
What does it indicate if an error state this “list has no rows for assignment”?
Explain what the junction object is and what is the use?
Explain what is Audit trail?
Explain what is dashboard?
Explain how many controllers can be used in a visual force page?
Mention what is the difference between SOQL and SOSL?




Salesforce Interview Questions
In this Salesforce  Interview Questions Post i cover on various Salesforce interview questions asked in top MNC companies (Capgemini, Accenture, Deloitte,HP, CTS, TCS, Citrix,  iGate,  L&T, KPIT, American Express, FIS, CEB, NCR Crop etc)

Capgemini f2f Interview Questions
1)Briefly explain about yourself?
2)What is salesforce architecture?
3)What all the services provided in cloud computing?
4)what all the services that salesforce supports?
5)what is the difference between profiles and roles?
6)what are web services? why we need to go for them? What is WSDL? What is SOAP?
7) Here you attended capgemini written test. If you got selected here you will be sent to technical round..if you got selected in technical round then you will be sent to HP for client interview, because HP is client to capgemini. If you got selected finally.Then you will be put into work.  This is the scenario. which process do you apply here either "WORKFLOWS" or "APPROVALS".(I said approvals,i don't know whether it's correct or not).
8)How can you say that it's "APPROVAL"? (i said first we need to be approved in first round then only we will be sent to the next).
9) How you will make a class available to others for extension? (Inheritance concept)
10) In the process of creating a new record, how you will check, whether user has entered email or not in the email field of Account object?
11)How you will write a java script function that display an alert on the screen?
12)What is the value of "renderas" attribute to display o/p in the form of Excel Sheet?
13)How you will get the java script function into Visual-force page?
14)Can we create a dashboard using Visual-force page? and what all the components we use here?
15)What are web tabs?
16)How you will add an attachment from VF page? tell me the component names to achieve this functionality?
17)Security(OWD, Sharing Rules,Manual Sharing).
18)Rate yourself in salesforce?
19)what is your current package?
20)How much you are expecting?
21)You will be given pen and paper, they will ask you to write some simple code.

Accenture Interview Questions
1)      What is Dynamic Approval process?
2)      Flow of execution in validations, triggers & workflows?
Ans: all before triggers, Validations, Workflows, All after triggers.
3)      Assignment process & validations.
4)      Difference between Trigger.new & Trigger.old?
5)      Trigger events? & context variables?
6)      Batch Apex?
7)      Will one workflow effects another workflow?
8)      Syntax for upsert & undelete trigger & Purpose undelete?
9)      Case management?
10)   If we want to upload data through DataLoader, what the changes to be done?

Deloitte F2F Interview Question

1. We have 3 objects Account, Contact, Opportunity.   In a VF page, we need to display the names of contact & Opportunity which are related to Account.
2. One object (s1) & 3 tasks (t1, t2, t3) are there. Each task performing discount related stuff.   Write a trigger that should calculate the sum of 3 tasks.  And if any task is modified than trigger should fire automatically & perform the same.
Ans: List<Task> listof tasks = [select id, name from Task where whatId=Trigger.new];
3. How can you convert a lead?
4. What is your Role in your project?
5. Explain 2 VF pages developed by you?
6. How will you deploy? Have you ever involved in deployment?
7. How will you test your code through Sandbox?
8. What is the custom settings ?
9. Difference between SOSL and SOQL in Salesforce ?
10. Custom settings?
11. What is Sales cloud & Service cloud?
12.  can a Checkbox as controlling field?
13. Sharing Rules?
14. SOQL & SOSL? Diff between SOQL & SOSL?
15. Difference b/w External ID & Unique ID?
16. What is System.RunAs ()?
17. Explain  Test.setPage ()?
18. Why Governor Limits are introduced in Salesforce.com?

TCS F2F interview
1. About project?
2. What are standard objects used in your project?
3. Call outs?
4. Governor Limits?
5. Relationships
6. Different types of field types?
7. Data Migration?
8. Roll-up summary?
9.  What is the difference between sales cloud & service cloud?

FIS,  Salesforce, KPIT, AON, Xerox Interview Questions
1. Name three Governor Limits.
2. When do you use a before vs. after trigger?
3. What’s the maximum batch size in a single trigger execution?
4. What are the differences between 15 and 18 digit record IDs?
5. Provide an example of when a Custom Setting would be used during development.
6. When should you build solutions declaratively instead of with code?
7. Give an example of a standard object that’s also junction object.
8. Describe a use case when you’d control permissions through each of the following:
– Profiles
– Roles
– Permission Sets
– Sharing Rules
9. When should an org consider using Record Types?
10. What are some use cases for using the Schema class?
11. A trigger is running multiple times during a single save event in an org. How can this be prevented?
12. Why is it necessary for most sales teams to use both Leads and Contacts?
13. What is the System.assert method and when is it commonly used?
14. What are the differences between SOQL and SOSL?
15. Order the following events after a record is saved:
–2 Validation rules are run
3– Workflows are executed
1– “Before” triggers are executed
4– “After” triggers are executed
16. What is Trigger.old and when do you normally use it?
17. When should you use a lookup instead of a master-detail relationship?
18. What are the advantages of using Batch Apex instead of a trigger?
19. What are the pros and cons when using a Workflow Rule Field Update vs. a Formula Field?
20. What are the differences between a Map and a List?
21. What are the advantages of using Batch Apex instead of a trigger?
22. Describe a use case for Static Resources.
23. Provide an example of when a Matrix report would be used. How about a Joined report?
24. A group of users must be prevented from updating a custom field. What’s the most secure method of preventing this?
25. When would you use the @future annotation?
26. List three different tools that can be used when deploying code.
27. When should an Extension be used instead of a Custom Controller?
28. What are the advantages of using External Id fields?
29. What are the uses of the <apex:actionFunction> tag?
30. What are the differences between static and non-static variables in Apex?
31. What are some best practices when writing test classes?
32. What does the View State represent in a Visualforce page?
33. What are three new features in the most recent Salesforce release?
34. Describe the benefits of the “One Trigger per Object” design pattern.
35. Write a SOQL query that counts the number of active Contacts for each Account in a set.
36. Declaratively create logic in your org that prevents two Opportunities from being created on a single Account in a single day.
37. Declaratively create logic in your org that prevents closed Opportunities from being updated by a non System Administrator profile.
American Express F2F Interview Questions
1)       Trigger should perform based on user requirement?
It should Trigger when user want to trigger & shouldn’t when trigger don’t want?
2)       What are default methods for Batch Apex?
Ans: start(), execute() and finish()
3)       Analytical snapshot?
4)       Types of Triggers?
5)       Other than Data Loader any other way to import Bulk Data?
6)       Explain any scenario occurred you to work beyond Governor Limits?7)       How u will do Mass Insert through trigger?


Conduent: MNC White Field:


Project explain in depth

 I did projects in different Domains.

Development
Integration

Lightning

Admin

Functional



What is an extension class why we use this class. if i am having more than 2 extends and controller is having same method which one will gets execute

How we can redirect page in sales force

Email-to case functionality 



Lightening:

Question on lightning events 

How many ways we can create records in lightening

How to accomplish two objects in same page using lightening

Question on Aura Attributes. Aura method

Some requirement on lightning like I am having 2 components in that pass one component message to another component how can we do this?

Another requirement on lightning is i am having a button in my details page when i will clicked that one i will show the that record details in another component .How can we do this



Visualforce :

Questions on action functions and action support

Key challenges faced in VF pages

VF page action attribute



Difference between process builder and workflow

Relationship scenarios : opportunity and product objects relationships

Master details and lookup relationships examples

Question on Custom settings and custom metadata

UI button attribute in lightening

Types of controller

Question on Aura location change

Is it possible to deploy one sandbox component to another sandbox?

How to call external files in salesforce

REST API : Types of method in rest api

Explain with scenario when to use rest and when to use soap api

Questions on api integration



Explain about asynchronous process

Can we call a asynchronous method?

What is the batch process and have you used batch anytime in which scenario have you used?

Schedule apex, future methods.

Chaining of batch jobs and some questions about Database.saveResult in batch

Queue able interface and what is enqueue action why we use this method?

Questions on Apex batch

Salesforce Integration Credentials Setup

Difference between consumer key, secret key and public key

How to make integration to without connect app

Difference between custom controller and standard controller

How to generate success and error list for the records through batch apex

What are trigger events.

What are apex Governor limits

What is a foreign key

What is the difference between Native component and Composite components.

Write an apex program to display list of accounts along with their corresponding contact details.

Write a trigger to fetch the related Contact names and display it in a field of Account object, in a Comma Separated Value(CSV)  format. 

Difference between Component Event and Application Event in Sfdc lightning. 

Use of aura: method in Sfdc lightning and why it is used. 

Scenario of Batch Apex. 

Best practices of writing trigger. 

If 3 triggers are written on a single object, having same event, then which trigger will fire first?  

Do we have control on the order of execution of triggers? 

Governor Limit of 50000 records is applied for a single transaction or it is just limited to one soql query. 

For example, in a single transaction there are three soql, then the governor limit will apply to single soql or all the soql combined. 

How to generate success and error lists for the records processed through batch Apex. 

Scenario of Database. Stateful interface and why it is used? 

Difference between action function and action support?  Already action function is there, then, why to go for action support?





Companies Unknown  IQAS Only

Wipro T.01.10.19 Dead Easy

  1. Tell me about your self?
  2. Rate Your LG Exp?
  3. What are LG COmponent Bundle?
  4. What are
















Mind Tree 04.03.2016

how to detlete Perticular record by using Data import wizard
Why Data importing file format is liket hthat only?
maximum batch size of Data loader?

If enabled bulk API how many records Can we Insert?
Is it possible to Create automatic Dash BOards?
4HOw many Blocks Can we create in Joint reports?
In simple export max size or Reports?


05.05.2016 Tech Mahindra


What is external  ID? Its Format? Data Types?
WHere You used External
WHat are deplyment Tools?
About Test Classes?
If you given OWD to few objects? How you can write or overcome by apex classes?

12.05.2016 FIre Eye

SImpel QS

14.05.2016 CTS

Visualforce Scenarios

18.05.2016 Genpact

Easy

25.05.2016 Linked IN

User Creating Opportunity and Related to Account.Team Member need to add account.
You can add with help of Trigger.

On Opportunity 
New Business Created,Status Closed, 
Actions:
1.Addd Created-- Route to QUeue
2.Close the Case-- Email Triggered to Opportunity Owner
3.Trigger/Flows/WorkFlows/Etc.

OWD; P READ Write 
p1
p2
p3
p4

17.06.2016 Honey Well
Easy



08.08.2016 Tech Mahindra

Easy Coding




12.08.2016 CTS

08.04.2017 ATOS

Easy Coding

07.04.17 Capgemini

Invoke Trigger through VF Page?
Feasable Things?
Trigger.New Where YOu Used>?
Triger Events?


08.04.2017   PWC

Easy

Need to Email Coding VF Pages
Parent Object records 3 2 4 1, Child Obejcts Reocrds Rollup Summary


17.04.2017 Aditya Lead & Technology


Easy Programmatics

17.05.2017  TCS

1 St and 2nd Round Clered

Profiles
Roles
Sales Service Cloudes
 Differences Objects

Account



20.05.2017 Deloitte

Different Variables in SaFC Projects
My Controller Eaxct Constructor on Account Object?
DML Transition Limits
SOQL Trnasition LIMITS/
Execution order of APEX?
IS field values saved in DB
Apex 123 Saving Work flow Conditions 200 Saving Validation Rules Which One Executes?

@ future is context Variables?\
Manager wants >> Team Records Accesss
Trigger need to WOrks AC Commit to take place
By using data lodaer with by how many steps you can import the Accounts or Contacts?
Mininimum Debug Logs?(Bug,FIN, Conf)
With  trigger Controller, VF Page UI WOrk Needed


26.05.2017 KPIT

Two Text FIleds I want to Display in One Fileds automatically
SOQL Query for One Fields automatically fill IN for INDIA
US For America??

06.02.2017 UST Global

Accounts Status Was CLosed and Oppportunity all records should close write Programmatically?

VF PDF Creating TAg? Render as
How many extension COntrollers we can use in VF Pages?

What are test Methodsa nd usage Prupose?


07.06.2017 Anonymous

Order of Execution?

WOrkf loe rule vs Validation Rule?
WF =100 Rs
Validation=10 Condition WHich one will save?

Batch apex Pgm write?
Schedule APex Write?
IN Vf i wan t to see 1000 Records How?


Mialo Technologies?

Time Delay for Old Records display?
VF page related to the Opportunity Tab?


23.06.2017 Hapiest Minds

WHat tags used to show list of Sudent Records?
How you are showing records through variables?
Can you explain where you worked or Implimented for Trigger scenarios?\
You are calculated age by DOB. You need to validate by VF page ?
Different types of Custom settings We have?
How many implimentaions you did in (VF, AC, AT,IG, LWC,LAC)?

24.06.2017 Capgemini

How many Dashboard Components are available?
about SIte.com
Changesets
Deployment Tools Working
Webservices

28.06.2017 Pega Systems

Different types of Web Services?

08.06.2017 TCS

Best Practices of the Trigggers Writting?
Customization Programming
How did you connected ? WHich type of Integration
What did you develope in SFDC TEll?
WHat is th structure Tags to Show Data?
For view how you developed it?
In teacher tab want to display one or more Records?
You can seperate Standard View? What was specific need of VF?
Integration Middel ware Tools?
Which is Unique ID and Formats?
Why Perticular object Inline Query?
Inline Query Limitaions?

07.07.2017 INTUIT

Which Edition
Difference between PE & EE
HOw to make perticular Field is Mandatory
Custom Settings?
WOkflows Criteria rules?
Why do use custom Settings?
Role aprroves Record? 1 Day later Still Record is Pending?
WHen you should use Trigger.new() & Trigger.map()
Batch Classes?
Dynamic APex Use?
Action function & Action Status use?
governor limits Problems in your project?
How to overcome GL

12.07.2017 UST

Dynamic Approval Process
Custom label Settings
Apex class to share custom settings?
Limitations in constraints key workflow rules?
see all data="true" use in test classes?
return type of SOSL
@future class
batchstatus.database
retrieve contact and account records

  Fujitsu

Complex scenarios done in project 
Address Updated in another object check box in other Object
Display opportunity Items and line Items should display at one point
you are 

19.07.2017 Wipro

Integration
REST WEBServices
Freeze and Deactivated Differences
Perticular role needed Compulsory

25.07.2017 Schindere Electric

LG Know or Not?

WIpro

Default settings in OWD for Standatrd objects
Email Templates
Bucket Field usage
Group by field usage


JK Soft

Is it possible to Access APex from REST 
Deployment Types
Dynamic Dashboard
Email tempate Types
VF page and APex is Possible to edit in Procuction 
Sharing rule when we need ot use
Wrapper Classes Write usage

24.03.2017 Accenture

How Time Based WOrkflow Will works?
Why needed Junction Objects
Custom Settings Applications
How many reports can attach to Dashboards
Salesforce Limitations
IG LG

09.08.2017 IBM 

Purpose of See all data
Sobject all list needed in apex class method
Triggers Context Variables
database reltaed Methods
REcord update Error will coming what you will do
S Deployment Tools
Github

14.08.2017 Capgemini

Versions of Salesfor Used
Purpose of Project
Feedback processing
In VF pagelayout object poset is it possible
Validation rules and Records are Errors Coming
VF Page Buttons
User Previliges Messages

15.08.2017 Microland

User Forget Security Questions? How Can you reset password Link?
Deployment Tools?
Code Migration You Knew
How to check Error logs
how to track application Growth
Flow of salesforce Application growth
sharing reports to users> Giving authentication 

16.09.2017 Cognizant

Validation rule created/ updated only need to fine
Look Up relationships how to achieve Roll up Summary Fields
Role and Profile Differences

08.11.2017

SLK

Data Loader Batchsize
Deployments/sandboxes
changesets
After Lead record created which objects creates? Lead will delete soon what will happpens
Profile Permissionsets Role
Only one record to access by other users
Manage Permissions what happens?


3KTechnologeis

15.05.2018 CSS Corp

Did you created any test/APex  classes
what is idea of test classes

15.05.2018 TCS

Easy

22.05.2018 Infy

Trigger Means
Recursive Trigger
Trigger Events
What are the Ajax Functionalities in VF
How can you display list of records in VF page
which can use tags
Sales Cloud Means
Dynamic Apex
Regarding Coding what you Did Exactly?


Wirpo & CISCO

Supporting Enhancement Development

12.06.2018  PWC 

Easy 
Validation Rules
Forumula Fields
SOQL Coding

12.06.2018 DXC Tech(HP)

How Many VF Pages Developed

26.04.2019 NTT Data Function Analyst

Where we using salesforce contract Expiry
What kind of workflow=Timedependent
ERP  SFDC Mnaual Every Week Should need to upload> Duplicate find need to Database?

3 to 4 based on enquiries bug was fixed ?

Assignment Rules
SLA Not met again, each of them need to work on the 1000 cases
Bucket Field= Quickly Categorize the report records
Opportunites won and need to display on Chatter Post? How


Approve reubmission reject Again Approved

Agile Methodolgy

Tracking of records Sales Track field History 
Sales Years ... all my accounts Dashboards....Approval Process

Jira Tools
Omni Routing

07.05.2019 CGI Akshaya Tritiya+ Anekal Day

EASY Concepts

10.05.2019 NTTData 

All Scenario QS Updated in Cloud


Call anyaction Method
Service Cloud?Custom Cloud?


M.01.10.2019  2PM Wipro Web MS Video

Case Status="Close" Popup Should Come ?
Write LG Component
LG Style Sheets
File Object Using


S.07.12.2019 HCL F2F

Voice Recorded
1. WHere u WOrking?
2. Client Name
3. How many Licenses using
4. WHat Projects Doing
5. What exactly doing with Triven Turbines
6. How many Triggers are Written
7. Are you In SUpport
8. What is the Software Does? = SAP dat Migraged to SFDC.
9. Trigger had 1000 records? how many times Trigger Can Fire(5)?
Batch size can we give 300 or Not?
10. Can we have DML Operation Inside Constructor(No)Why SUre?
11. Allo DML is true WHer We Used?  Wrong
12. @test use=
13. @is test @ runningtest  = WHat is the Perticular method? ALready defined used
14. @testsetup
15. @future=     future class methods asynchronous running
16. SQL Injection in Salesforce= Within Apex class = No Exact Answer
17. What is your Education Qualification?
18. What is Email Service? = Throug Wokflow Rules?
19. Class and Interface which using in Mail Service?
20. Want two lines for Sending Mails?
21. What are the Custom Labels? 
22. What are the renaming Custom Objects?
23. You are EEE? 

Coding still all other topics need to Cover?



S.21.10.2019 @ NTT Data Office @2 TPI

VR
1. Certifications
2. what you want to try
3. currently working or not
4. HOw many Projects Did
5. LG Components
6. Angular JS How Can you Use
7. HOw you calling AJS
8. LG Events
9. System Events Examplse
10. Accounts Reads Displcay
11. VF Pages Components LWC 
12. WIth Sharing Vs Without Sharing  VF Page
13. Work FLow Criteria
14. Trigger.old Map where you can use ( After insert+Update+delte+Undelete)
15. Total Current Package & Expected Package
16. Whden you can join
17. Can you join with Current Package
18. WHat are the skills I Need to Imporve
19. In which Industry projects you are working
20. WHo are Clients

T.24.12.2019 Ciber @3.3 TPI 

VR 
1. Rating Collected for A VF AC AT IN LG Deployment Activities
2. Active Vs Freeze Vs Deactivated
3. Sharing Models (Profile OWD Roles Sharing Rules Owner Data)
4. Role Profile
5. Lookup Vs MD 
6. Real Estate Master ....Custom Object (address) Property Custom Object
7. 1 to 1 relationship
8. Custom objects records have 1 Address related
9. Pagelyaouts USA region and Profiles 
10. Account and Contact Relationsip
11. Proess Builder WOrkflows
12. Trigger Apex Classes & annotation Invoked


















***

NTT Data Functional Analyst IQA 
  1. Tell Something about your salesforce Experience?
  2. Can you rate your Configuration Skills out of 10 ?
  3. Where we are using Salesforce Contract Expiry?
  4. From ERP to Salesforce Every Week Manually Weekly Uploading Records but Should Not Upload Duplicate Values in Dataloader?
  5. Through Website I want to Collect Leads Data How?
  6.  3 to 4 Based on Enquireie BUg Fix is there via Pamplates ….A and Docs B.
  7. Assignment Rules?
  8. SLA note Met Again in 1000 Casese Meaning?
  9. Opportunities WOn I want to post on the Chatter How it Possible?
  10. What is Mean By Bucket Field?
  11. Bucket Field Supporting Data Types?
  12. What are the Approval Different Methods?
  13. What aer Assignment Rules? 
  14. How can you Achieve Many to Many Relationship?
  15. I want to See all Account Names, Tickets, Assests how?
  16. 5 Members had Same Persons I want to add one more Persion with less Settings Than these all.?
  17. Truncating Of record Means?
  18. Sales Tracking histroy How can checking?
  19. Trackfiled Histroy?
  20. Sales Year Need to Display and all My Allocating Dashboards need to COme?
  21. Which Agile Methodology too you are Using?
  22. Jira Tool Features?
  23. What are WOrk  flow Actions?
  24. Omni routing Now?
  25. Primary 
  26. Dynamic Dashboards?




CGI Salesforce  IQA

  1. Tell Something about your salesforce Experience?
  2. Can you rate your Configuration Skills out of 5?
  3. Can you rate your Customization Skills out of 5 ?
  4. Can you devide your total years of Experience into Admin,Support,Developer Part.?
  5. What is SDLC Using?
  6. Who is Doing SCRUM?
  7. WHo are giving Reporting? Which Reporting Tool YOu are Using?
  8. How you are doing Ticketing and all?
  9. What is the different relatiohships?
  10. What you did in COnfiguration work?
  11. What  is Your current and Expected Packages?
  12. What are different Projects Handled?
  13. Different Apex Futrure Methods?
  14. Types of the WOrk FLow Actions?
  15. What is process builder and Uses?
  16. Differences between SOQL and SOSL?
  17. WHat is View State?
  18. What are governor Limits?
  19. If Exceeded What will happen ?

  20. what are the usage of Asynchronous Apex?
  21. Do you want to ask anything?
NTT Data Salesforce IQA:

  1. Tell Something about your salesforce Experience?
  2. Can you rate your Configuration Skills out of 10 ?
  3. Can you rate your Customization Skills out of 10 ?
  4. Validation rule need to fire at the time of Record Update how?
  5. In Data loader How to by pass all validation Rules?
  6. In Data Loader when uploading records getting Error how to Skip all those?
  7. In Data Loader How to Skip first 500 Records and to Upload?
  8. Through Account Update Field Is it Possible to update Contact Field? How?
  9. How to Invoke Apex Class through Process Builder ? Will you get all Apex Classes or Few Apex Classes?
  10. What is the Order of Execution?
  11. Is Validation Rules Execute Or Work Flow Execute First?
  12. How to Approve 5 Approval Process at a time.

Quinnox Salesforce IQA : Lightning & Integration
  1. Tell Something about all your Projects?
  2. Validation Rules, Work flows, Triggers Order of Executions?
  3. SOQL , SOSL Differences?
  4. Governor Limits Explanation?
  5. For Contact Duplicate Record should not Enter how to achieve this?
  6. Lightning?
  7. Apex?
  8. Batch Apex?
  9. Visualforce pages Controllers?
  10. VF Action Methods?
  11. Test Annotations?
  12. Why test Start(), Execute(), Stop() USage and importance?
  13. Daily exactly what you are doing in Organization?
  14. Where you exactly used the Approval Process & Process Builder in your Project?
  15. About Web Services ?
  16. Explain about OWD?


Genpact IQA: Sandeep & Digvijay

1.Detail explanation of project?
2.If urgent fix has to be done in production ,how you will process?
    You can see which Apex classes will be impacted by your deployment.
  1. Before you perform your test deployment in the staging org, turn on Compile on Deploy from Apex Settings in Setup. This setting enables your staging org to mirror the behavior of your production org during deployment.
  2. Perform your deployment from development to staging.
  3. Once your deployment is complete, in your staging org, go to Apex Classes via the Setup menu. Customize the view so that you can see the Apex class name and the Is Valid column.


57 F2F Aptus KBHL


1. Ur self


2. All Simple Admin QS


3. Multi tenant Arch


4. SFDC Architecture?

5. Difference b/n Queriesl Language

6. Dynamic Queries Use?

7. WE are running 150 DML Statements? Errors Coming.? Will load data or What Happen?

8. LWC Component Architecture? Why Needed?

9. Shall we use Aura and LWC together?

10. What is conditional Returning in LWC   = g.v= BOunded..........
11. Not aura LWC? Conditional Rendering? (Boolean Value = True ...Different Element False...) show
12. How to Use Apex In LWC ? 
13. WHat are the Attribute Values?
14. how to child cmp to add into Parent Cmp. How to process data?
15. What are Iterators? Usage?
16. Apex and angularJs Usage?
17. Formula Formula Step,formula Expression,  1 to Many and many to many Impliment to full records?
18. DHQ? Which Domain=CPQ, LWC , Angular JS. ? End Clients= Direct Customers, Clients.?
19. What SKills I Need to Improve? = LWC , Angular Is Same LWC, I will update My Manager.
20. FFBM?


58 Zoom Q2E WF

1.About Yourself?
2. 1 2 3 4 5 6 3 4 5 6 Series numbers available.Code for Print un repeated Numbers?
As well for n number case Write?

o/p 2

Algorithm

1   1
N values
Int j=0;
Int(i=0; i<n-1;i++)
{
If 

}

3.Many to Many Relationship Achievement?
Junction Object 
O 3  Master 
Name 

O1  Detail    O2 Detail 
O3 Master Name                                 O3 Master Name    

4.Trigger Events?
5.Governor Limits
6.LG Aura Components & Methods

59 HO PWC MTH

  1. LWC Explain
  2. LG Tools
  3. LG Bundles
  4. LG & Aura methods? around 10 QS easy all asked from 

Wipro  INO: 77 Tuesday, 27.02.2020, MS Web Interview

  1. About Yourself? Technical Achievements?
  2. LG Inbuilt Tools?
  3. In Cases object if Product type is Closed for particular user should be display and as well email alert need to send to them?
  4. My Application data should be accessed by other 3rd part app and 3rd party app data my app should access? How to achieve this?
  5. Specific data only need to access?
  6. I want to deploy the 1 Apex Class and APex Trigger. But code coverage 74% is it possible to deploy?
  7. What are deployment tools used?
  8. Difference between WFs and PB. Why both are using and Not using one over other?
  9. How to achieve pagination pseudo code? Tell components ? attributes?
  10. WHat you knew about Lightning? Why it is different from Classic?
  11. How to give application security?
  12. What about the Custom Settings ? Custom Data ?
  13. In VF page I want to Display custom object SPecific 1000 records only. How to Do?
  14. Different Web Services Call out options?
  15. LG Component Bundle?
  16. Our Team Will update for next Round Interview.

Ranstard 86, 1.30PM, T, 24.03.2020, TI


    1. What are platform Events?
    2. Every Day record from System A to in 3rd party System should be Updated?\\
    3. 1 Millions records how to Process in Integration
    4. Governor Limits?
    5. Why Data Loader?
    6. What is CI CD 
    7. About Git Hub?

Emphais  INO: 90,4PM,F,27.03.2020,Zoom 

  1. Ur self
  2. Sales Cloud or Service Cloud
  3. WF Vs PB
  4. How to send Message From Process Builder
  5. For all user at the end of the Day automatically Need to get new Password Link for 100 users in Admin?
  6. Role hierarchy how to change for Standard objects
  7. Different Reports
  8. How to set Dynamic Dashboard
  9. How Many Components Can use in Dashboard? = 20
  10. How I will come to knew Email not Delivered to the Customer?
  11. Why using WF on Triggers?
  12. Mixed DML?
  13. After Update Triggers Events Usage in Triggers What will happen?
  14. If I used Multiple extensions in VF, What is the order of Execution? = Left to Right
  15. No of Returning Queries for SOQL & SOSL
  16. Skinny Table Means
  17. End users Need to See all Records Access? How?
  18. Display all SObjects In Apex Class to VF?
  19. insert() vs database.insert() ?
  20. How to control the Transactions in APex classes?
  21. How to call web services from Triggers
  22. How to convert Classic to LG of page layouts?
  23. Component Bundles?
  24. LG Tools?
  25. Any Qs?
NTTData INO: 91, 2PM, W,01.04.2020,Zoom 

  1. Tell me about yourself ?
  2. In LG What you did Explain to me?
  3. LWC Components Bundle
  4. LG Tools?
  5. How Integrating System Data to other System
  6. How one record you can access in another System?
  7. In LWC can you explain how to do the DML Operation?
  8. Tell me different events?
  9. why we are going for Triggers than Process builder?
  10. Why Workflows Different than Process Builder?
  11. Why PB is More Important than triggers?
  12. What are platform events?
  13. How to deploy the Metadata from One org to another Org?
  14. What is the Batch apex return types?
  15. I need to Execute 1 million records?
  16. How to call the One method from batch class?
  17. WHy future methods than the Batch APex?
  18. Do you have any questions?



PWC  INO: 92,2PM,Th,02.04.2020,Hangout, TL Madam


  1. About Yourself?
  2. Return Data types of trigger.new() ? // List of Sobject Records.
  3. Profile and Roles Scenarios
  4. WRT to Configuration many users data available so here Many users should modify the data but should not delete the Contact records. How can you achieve through Profile settings?
  5. Role B reporting to Role A. Here Role A Manager was Changed Company. Now Role A had another User. Now Role A user was able to see the Role B Data or Not? How?
  6. Process builder Usage? 
  7. Sharing Rules Types?
  8. Opportunity had 2 Child Custom Objects CO1 & CO2 . CO1 finish the some tasks then only CO2 tasks should do. The USer screen should appear. How can you achieve this?Pop Ups should able to create?
  9. What is the Difference between LWC and LG Aura Components?
UNS ? INO: 93,3PM,Th,02.04.2020,TI, TL Madam
  1. What is Data Vs Metadata?
  2. WHy Metadata Is important?
  3. Custom Metadata is Important than the Meta Data Settings why?
  4. How to see the Metadata through the Profiles
  5. What is the LWC Usage Steps?
Aptus 94, 9AM, S, 04.02.2020, Zoom, Arun Nageswar

1. 1.Ur Self?
2. Tell Me Scenario You and me are in Same Organisation but different Public read Write but                  Different Access lEvels?
3. Same Objectects Had RW access. But appearance should different?
4. Is it possible restrict access in OWD?
5. Can you tell SFDC Security Model?
6. V & A Should have same profile, but no permission access, object access but need to share                   Housing Object  the Records? what UI will take care records display???
7. Sharing Records Ways?
8. Difference between Custom Controller and Extensions?
9. Controller needed any Permissions than Extensions w-hat UI will take care?
10. What is batch apes?
11. Batch apex Methods?
12. 10000 records processing how many times start execute finish will executes?
13. 100 Queries need to Display? // LIMIT Clause 
14. Any QUestions?


CAI 2020.March.19.Th.4PM.TI.BG Gati PM
  1. About SLA Agreement How to Do?
  2. Support Order Management?
  3. Agile PM?
  4. OWD?
  5. Buttons Sharing in LG?
  6. User Records?
  7. Profile Vs Permission Sets?
  8. Sharing Rules?
  9. Data Migration?
  10. 5000 Users Password reset?
Capgemini 2020.03.19.TH.1.3 PM.MS Team ,Netherlands, Dereke & Kashyap Vishal
  1. Integration SOAP how usage?
  2. Case Closed, for Solution object record should create on Knowledge base articles. How to do in REST & SOAP.
  3. How to create WSDL Package?
  4. Package REST?
  5. How to give Solution?
  6. Apex Triggers Events, Write Code?
  7. Can you call SOAP call from the Triggers?
  8. LG Tools ?
  9. Agile Methodologies Sprint Names?
  10. Scrum Meetings Names?
  11. What are user Stories in SFDC Agile?
  12. Any Questions?
  13. Next Week Check Mail?
Noval Technologies 2020.03.19.Th.2.30 PM TI ,TL 

  1. What are SControls?
  2. Is Governor LImits will applied to the Sandboxes?
  3. Many to many  templates Implementation?
  4. What are Email Templates?
  5. What is Who ID? What ID?
  6. Custom Settings?
  7. What is S Objects and Custom Objects?
  8. SOQL Vs SOSL
  9. Detail Page Views ? Printable and Export Details Formats?
  10. What is Floating Report Header?
  11. What are Dashboard Components?
  12. Dynamic Dashboards?
  13. Email Management how can you Check not delivered?
  14. Export Vs Export all?
  15. Skinny Table?
  16. Role Vs Profile?
  17. Public Class Vs Global Class?
  18. HR Will Get Back to You?
Conduent

Batch APex?
Aura Methods?
Action Support Action Functions Action Pollar?

caplicon,2020.03.M,26Th,5PM,Zoom,TL
  1. 1,00,000 Records processed 90K Success 10K erros what will happens
  2. With CSV 2000 Insertion Doing? 1000 new 1000 existing what will happens?
  3. Via Data loader autopopulate how to do? for First Name and Last Name in the all records?
  4. For Every New Contact One Extra String should be added Via the Triggers Help How can you do?
  5. Boot Strap Vs Angularjs?
  6. Admin Page Block and Pagination how can you Implement?
  7. What is Data Modeling?
  8. I Should have two buttons User Data and Track Data after Save As Option Usage Purpose?
  9. How to get the Create Record on the Page block Button?
  10. IN how to Do for System A and System B
  11. How to do Trigger for authentication for the New COnnected APP?
  12. Configuration for the http Request how to do?
  13. What are the http methods?

  1. Opportunity Closed or Deleted should display on VF Page?
  2. WHat is the Complex requirement you Implemented?
  3. App Events Vs System Events Compo Events Examples?
  4. Blocker 2 days Defects 
  5. Escalation rules?
  6. Web to Leads?

ntsindia,2020.03.25.w.5 pm Zoom,TL,
  1. VS 
  2. REST 
  3. IN concepts
  4. How easily integrate 3rd party System?
  5. one Time authentication Duration?
  6. Platform Events?
  7. Future Vs Queueable Differences Scenarios Importances Best Methods?
  8. Batch Class
  9. Components?
  10. OWD Vs Lead
  11. LWC design Should Display the Search Box and Do any DML Operation? and Call to Server?
NewsTechnologiesServices, News Corp, Technologies, Functionalities, NEWS.



HTC,IN.99  2020.05.07.Th.2.3PM,Meetme,TL 


  1. Tell me your projects
  2. What is your complex work recently
  3. Explain breifly about your current Projcet
  4. About Flows
  5. What is multi threading in Apex?
  6. Explain all asynchronous Apexes?
  7. WOrkflow actions and Differences?
  8. Profile level View?
  9. Controller update and Trigger Update Running if Error occurs what will happens?
  10. I want to reload specific page of the Area?
  11. APex order of Execution?
  12. APex characteristics?
  13. REST vs SOAP?
  14. Is it possible to USE LG in VF? How?
  15. Lightning actions?
  16. How to call parent to child Components?
  17. LG is what type of Framework?
HTC,IN.99  2020.05.07.Th.2.3PM,Meetme,TL 

Technosoft,INO.100 2020.05.08.F.4 PM,TI, Vinay Verma,PM

  1. For which postion you applied do you Know?
  2. TAUS?
  3. Did you worked on Sales Cloud?
  4. TErritory Management?
  5. Team Handlig Experience?
  6. Who are solution Designer?
  7. Is javascript COntroller can call other Controllers?
  8. How to Impliment 7.
  9. Command Rendered Life Cycle Events in LG.
  10. IN LG What is Inheritance?
  11. Web COmponents Bundle?
  12. Aura Component Bundle?
  13. What are Differnt Events and Differences?
  14. Give me business Scenarios wrt to Web and AUra COmponents?
  15. Explan about LG Intefaces?
  16. My Team Will get back to you. All the Best. Thank you
Virtusa,INO.101 2020.05.21.Th.4 PM,TM to  TI, Yernaidu Naidu,PM
1. Introduce about yourself?
2. About CI CD Tools?
3. What you Implimented in Service Clouds?
4. What are Different deploment tools?
5. Whate are different Migration Tools?
6. Rate your skills in Sfdc Apex?
7. WHat are best practices in APex?
8. What are Case Management Activities?
9. Until now In SFDC What are activities done in Development? In Which Projcet?















ECS Contact Form

Name

Email *

Message *