Question # 61
How is a controller and extension specified for a custom object named "Notice" on a Visualforce page?
apex:page standardController="Notice_c" extensions="myControllerExtension"”
apex:page controllers="Notice_c, myContcollerExtension"
apex:pege=Notice extends="myControllerExtension”
apex:page controller="Notice_c" extensions="myControllerExtension"
In Visualforce, to specify a standard controller for a custom object, the syntax iscontroller="ObjectName__c".
To add custom functionality, you can use anextensionsattribute to include a controller extension.
Why not other options?
A: The correct syntax iscontroller, notstandardController, for custom objects.
BandC: These are syntactically incorrect.
Visualforce Pages Documentation