https://www.infallibletechie.com/2012/12/difference-between-roles-and-profiles.html
2. What is Batch apex explain with one simple example?
A developer can now employ batch Apex to build complex, long-running processes that run on thousands of records on the
Force.com platform. Batch Apex operates over small batches of records, covering your entire record set and breaking the processing down to manageable chunks. For example, a developer could build an archiving solution that runs on a nightly basis, looking for records past a certain date and adding them to an archive. Or a developer could build a data cleansing operation that goes through all Accounts and Opportunities on a nightly basis and updates them if necessary, based on custom criteria.
Batch Apex is exposed as an interface that must be implemented by the developer. Batch jobs can be programmatically invoked at run time using Apex.
https://www.infallibletechie.com/2012/05/batch-apex.html
Example – https://www.infallibletechie.com/2013/01/simple-batch-apex-example-in-salesforce.html
3. What is SOSL, SOQL and difference?
https://www.infallibletechie.com/2014/02/difference-between-soql-and-sosl.html
https://www.infallibletechie.com/2012/10/difference-between-sosl-and-soql.html
4. What is DataLoader and Uses of it?
DataLoader is used to export, import and delete Salesforce records.
Usage and limits – https://www.infallibletechie.com/2014/05/what-is-limitation-in-apex-data-loader.html
5. Explain about Import wizard with one example?
https://www.infallibletechie.com/2012/08/import-wizard-in-salesforce.html
6. Explain about reports and dashbords and difference?
Reports – https://www.infallibletechie.com/2012/12/types-of-reports-in-salesforce.html
Dashboard is pictorial representation of reports.
7. Write a simple apex class?
Apex Class for Trigger handler – https://www.infallibletechie.com/2013/08/how-to-pass-triggernew-to-apex-class-in.html
8. Write the syntax of apex trigger?
https://www.infallibletechie.com/2015/07/trigger-syntax-in-salesforce.html
https://www.infallibletechie.com/2013/01/triggers-in-salesforce.html
9. Explain about visual force page and tell the uses of it?
https://www.infallibletechie.com/2015/07/what-is-visualforce-page.html
10. What is workflow and explain with simple example?
https://www.infallibletechie.com/2012/09/examples-for-workflow-rules-in.html
11. A pick list has 4 values say ..A,B,C and D.
Also there are two user say user1 and user2.
User1 can able to see all the four values but user2 can only able to see the three values.
How is that possible?
Record Types – https://www.infallibletechie.com/2013/05/record-types-in-salesforce.html
12. I have workflow and validation rule and trigger on same object. Which one will first fire?
Validation rule first.
For more info – https://www.infallibletechie.com/2013/04/order-of-execution-in-salesforce.html
13. What are Macors in Salesforce?
https://www.infallibletechie.com/2015/07/macros-in-salesforce.html
Cheers!!!