Skip to main content

Posts

Showing posts with the label AX 2009 Development ques

AX 2009 Development Introduction question 51 to 100

Question: 51 You work in an International company which is called DONEX. And you're in charge of the network of your company. Now one of your colleagues asks for your help. The code below creates a query on the item table. While he has no idea about how to obtain the same results using a while select statement. So what's your answer? 010045010067 Query = new query(); query.addDataSource(tableNum(InventTable)).addRange(fieldNum(InventTable,itemId)).value("12345"); A. while select InventTable ItemId <= "12345" B. while select InventTable ItemId != "12345" C. while select InventTable ItemId >= "12345" D. while select InventTable ItemId == "12345" Answer: D  Question: 52 You work in an International company which is called DONEX. And you're in charge of the network of your company. When manipulating the data source in a query, which system class is used to do this? A. Query_ds() B. QueryDataSource C