DATACON: 80730AE: Development Basics - Dynamics AX 7 – Test Your Knowledge
Test Your Dynamics AX Knowledge
Welcome to the ultimate quiz designed for Dynamics AX 7 enthusiasts! This comprehensive quiz consists of 84 insightful questions that will challenge your understanding of development basics and model management in Dynamics AX.
- Multiple choice and checkbox formats
- Assess your knowledge of Models, Elements, and Databases
- Perfect for aspiring developers and experienced professionals alike
For(int counter = 1; counter<10; counter+=3)
{
Info(strfmt(“%1”, counter));
Counter--;
}
You need to identify the output of the statement.
What should you identify?
public __________ myMethodName |
dbfmVehicleEntry vehicleEntry = __________ dbfmVehicleEntry();
vehicleTable.dbMake ______ Make;
Class myChildClass extends myParentBaseClass
{
Public void myMethod()
{
_____________();
~~~Body of new code here~~~
}
}
class dbfmTruckVehicleEntry __________ dbfmVehicleEntry
{
~~~Body of code ~~~
super();
}
While _________ fmVehicleMaint join fmVehicle
_________(Int2Str(fmVehicleMaint.dbVehicleID)+', '+fmVehicle.dbMake);
{
ttsbegin;
fmVehicle.dbVehicleID = ‘123456789’;
fmVehicle.insert();
_________________
}
while select _______ fmVehicle
where fmVehicle.dbVehicleID ________ 1
{
fmVehicle.dbModel _______ "Big Truck";
fmVehicle.update();
}
{
fmVehicle.________();
}
SalesId RecId
SO0001 1234567
SO0002 1234568
SO0003 1234569
The salesLine table contains the following information:
SalesId RecId
SO0003 2234567
SO0002 2234568
SO0003 2234569
You need to identify the output of the X++ statement:
SalesTable salesTable;
SalesLine salesLine;
while select salesTable
order by salesLine.Recid desc
join salesLine
where salesLine.salesId == salesTable.salesid
{
info(strfmt("%1",salesTable.salesId));
}
What should you identify?
____________________ error("Please enter a valid VIN number.");
catch (_________________________)
___________("An error occurred. Please try again");
{
Throw error(“Wrong selection of date”);
}
Else If(inputDate > systemDateGet())
{
Throw error(“Wrong selection of date”);
}
{
Throw error(“Wrong selection of date”);
}
{
Throw error(“Wrong selection of date”);
If(inputDate > systemDateGet())
{
Throw error(“Wrong selection of date”);
}
}
{
Throw error(“Wrong selection of date”);
}
If(inputDate > systemDateGet())
{
Throw error(“Wrong selection of date”);
}