SOQL it to me!
The visualforce is strong with this one
Tools of the trade
Integrate Expectations
I'm the synTax Man
100
In a query, a user can use these types of function to return simple calculations on the query results
What is aggregate?
100
This apex:page attribute allows execution of a controller method on load
What is action?
100
compile and run code blocks without storing them in metadata using this
What is execute anonymous ?
100
Generate a class from one of these to consume external web services using SOAP
What is WSDL?
100
map m = new map(); m.add('hello','goodbye');
What is put vs. add?
200
restrict your query by specifying this kind of conditional expression
What is the where clause?
200
this vf component can be used to access controller methods from javascript
What is actionfunction ?
200
similar to custom objects, use this to associate custom data to specific organizations, profiles or users
What is custom settings?
200
perform request operations such as GET/POST/PUT/DELETE with this class
What is HTTPRequest
200
list accounts = Database.query('SELECT name FROM Account');
What is sObject vs. Account
300
this suffix is appended to the object api name when traversing a relationship in a query
What is __r ?
300
Access custom labels in visual force markup using this (include characters)
What is {!$Label ... } ?
300
implement this interface to have your code executed at specified intervals
What is schedulable?
300
Set up these to allow salesforce.com to invoke external web addresses
What is remote sites?
300
list accounts = [SELECT Name from WHERE SomeField__c ='Value' , AnotherField__c='Value2'];
What is AND instead of , ?
400
a string is built programmatically to create this kind of query
What is a dynamic query?
400
This attribute, when passed component ids, allows those components to be redrawn when the result of the action method returns to the client.
What is rerender ?
400
method calls can be made asynchronous by applying this property to a method
What is @Future
400
Monitor these as you make callouts, if you cross the limit you're stuck -- until the 24 hour period ends of course
What is API Requests
400
public list getThisList(){ list thisList = new list{'a','b','c','d'} };
Where is return thisList ???
500
the maximum number of records returned in a soql call
What is 50,000 ?
500
database operations such as insert/update cannot be performed from a visualforce component unless it has this attribute
What is allowDML = true ?
500
The apex collection types.
What are maps, lists, sets?
500
use this keyword to allow a method to be used as a web service
What is webservice?
500
system.debug('the truth will set you free',truth);
What is + instead of ,