Do you want to work at one of the top Salesforce consulting companies in the world?
We'd love to add you to our team! We are committed to growing and developing our Salesforce talent, offering continued growth opportunities and exposing our people to interesting and diverse projects. Click here to learn more about Slalom and our partnership with Salesforce.
Take a crack at your first interview question by solving the puzzle below:
private Integer calculateOdds( )
{
ContestURL =new PageReference('https://apexbling.com');
Developer you = new Slalom.Developer();
you.apexSkill__c = Skills.Advanced;
you.lightningSkill__c = Skills.Advanced;
you.overallSkill__c = Skills.Advanced;
you.wantToWinCash__c = true;
mSite = DisplayEngine.StartContest(ContestURL).SetPrize($500);
if(you.wantToWinCash__c)
{
System.debug('I took the easy route');
mSite.visitToWin(you);
return 1;
}
else if(you.overallSkill__c > Skills.Good &&
you.wantToWinCash__c)
{
System.debug('When’s my interview?');
String pass = String.valueOf(Date.today().year())+2;
mSite.visitToWin(you,pass);
return 2;
}
else
{
System.debug('Time for an APEX trailhead');
}
}
Take a crack at your first interview question by solving the puzzle below:
private Integer calculateOdds( )
{
ContestURL =new PageReference('https://apexbling.com');
Developer you = new Slalom.Developer();
you.apexSkill__c = Skills.Advanced;
you.lightningSkill__c = Skills.Advanced;
you.overallSkill__c = Skills.Advanced;
you.wantToWinCash__c = true;
mSite = DisplayEngine.StartContest(ContestURL).SetPrize($500);
if(you.wantToWinCash__c)
{
System.debug('I took the easy route');
mSite.visitToWin(you);
return 1;
}
else if(you.overallSkill__c > Skills.Good &&
you.wantToWinCash__c)
{
System.debug('When’s my interview?');
String pass = String.valueOf(Date.today().year())+2;
mSite.visitToWin(you,pass);
return 2;
}
else
{
System.debug('Time for an APEX trailhead');
}
}