Skip to contentSkip to footer
  • Community
  • Jobs
  • Companies
  • Salaries
  • For employers
      Notifications

      Loading...

      Elevate your career

      Discover your earning potential, land dream jobs, and share work-life insights anonymously.

      employer cover photo
      employer logo
      employer logo

      AppShark

      Is this your company?

      About
      Reviews
      Pay and benefits
      Jobs
      Interviews
      Interviews
      Related searches: AppShark reviews | AppShark jobs | AppShark salaries | AppShark benefits
      AppShark interviewsAppShark Salesforce Developer interviewsAppShark interview


      Glassdoor

      • About / Press
      • Awards
      • Blog
      • Research
      • Contact Us
      • Guides

      Employers

      • Free Employer Account
      • Employer Centre
      • Employers Blog

      Information

      • Help
      • Guidelines
      • Terms of Use
      • Privacy and Ad Choices
      • Do Not Sell Or Share My Information
      • Cookie Consent Tool
      • Security

      Work With Us

      • Advertisers
      • Careers
      Download the App

      • Browse by:
      • Companies
      • Jobs
      • Locations
      • Communities
      • Recent posts

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor," "Worklife Pro," "Bowls" and logo are proprietary trademarks of Glassdoor LLC.

      Company Bowl sample

      Want the inside scoop on your own company?

      Check out your Company Bowl for anonymous work chats.

      Bowls

      Get actionable career advice tailored to you by joining more bowls.

      Followed companies

      Stay ahead in opportunities and insider tips by following your dream companies.

      Job searches

      Get personalised job recommendations and updates by starting your searches.

      Salesforce Developer Interview

      19 Jan 2016
      Anonymous interview candidate
      Hyderābād
      Declined offer
      Negative experience
      Average interview

      Application

      I applied online. I interviewed at AppShark (Hyderābād) in Jan 2016

      Interview

      Appshark people have found my Resume in linked in because I had applied so they called me and asked me to come for discusstion. Interview was good. It is not a big firm but they have develped more app in appexchange.

      Interview questions [1]

      Question 1

      1. What is the relationship between Account and Contact. 2. If there is two object A and B the I want A, B object in C how can you do that. 3. can we do same above question with javascript? 4. What is permission set? 5. Sharing rule. 6.what is wsdl how to take wsdl to salesforce? what is the procedure. 7.What is record type? 8. How to count visit of the page through apex class? or how to count the number of times a visualforce page opened by user? public without sharing class ViewCount { public ViewCount(ApexPages.StandardController controller) { // Required with StandardController } public ViewCount(CustomController controller) { // Required for custom controller; repeat as necessary } public void updateCount() { String thisUrl = Url.getCurrentRequestUrl(), thisPath = thisUrl.getPath(), thisFile = thisUrl.getFile(), thisFullPath = thisPath + '/' + thisFile; Page_View__c[] views = [SELECT Id, URL__c, Count__c FROM Page_View__c WHERE URL__c = :thisFullPath LIMIT 1]; Page_View__c thisView = views.isEmpty()? new Page_View__c(Url__c=thisFullPath, Count__c=0): views[0]; thisView.Count++; update thisView; } } Then, on each page, simply add the action method: <apex:page standardController="Account" extensions="ViewCount" action="{!updateCount}" ...
      1 Answer
      2