Startup or MNC for Graduates in IT
As a fresher out from college you have still long way to go both in learning and earning. To start a career I would strictly advise you to look forward at how much you can learn in the shortest duration. MNC’s will always have a charm, brand name, probably good salary attached to it but Start up will always...
Coding Genius (Trigger)
The following practice questions are for Salesforce developers who are new to salesforce and wish to solve some basic programming questions. Write a trigger 1. On Account create a default contact every time an account is created. What is Trigger Click here to learn more trigger Accounttir on Account (after insert) { list<contact> con = new list<contact>(); for(Account acc...
Coding Genius (Visual Force)
The following practice questions are for Salesforce developers who are new to salesforce and wish to solve some basic programming questions. Develop the following Visualforce pages in your salesforce developer org. 1. Create a page that displays the detail page same as of the Account object along with its related lists Click here to learn more <apex:page standardController=”Account”> <apex:detail...
Coding Genius (Batch Class )
The following practice questions are for Salesforce developers who are new to Salesforce and wish to solve some basic programming questions. Using batch Apex classes, you can process records in batches asynchronously. If you have a large number of records to process, for example, for data cleansing or archiving, batch Apex is your solution. Each invocation of a batch...
Recent Comments