Exam MB6-819 preparation questions

Page 1

Exam MB6-819 study material Made available by Testkingprep.com

Free MB6-819 Exam Preparation Questions Exam MB6-819: AX 2009 Development Introduction

For Latest MB6-819 Exam Questions and study guides- visit- http://www.testkingprep.com/MB6-819.html


Question:1 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. He has no idea about what kind of data can be returned from a method. So what's your answer? A. Only base types. B. Only database buffers and objects. C. Any kind of data, except database buffers. D. Any kind of data, including base types, table buffers and objects. Answer: D Question:2 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. He has no idea about which function can be used to return a subset of a string variable. So what's your answer? A. subStr() B. strFind() C. subString() D. string::substring() Answer: A Question:3 You work in an International company which is called DONEX. And you're in charge of the network of your company. Which of the following sections of code include an example of a conditional statement? (choose more than one) A. custTable.Name = custTable.Name custTable.Name : newName; B. update(); C. if (custTable.RecId) D. { E. update(); F. } G. for ( I ; I < x ; i++) H. { I. clear(); J. .. K. insert(); L. } M. select custTable; N. recId) O. { P. .. Q. update(); R. next custTable; S. } Answer: A, B Question:4 You work in an International company which is called DONEX. And you're in charge of the network of your company. Add the correct keywords (a) and (b) to the blanks in the code, so that given x = 10 and y=0, the returned result is 14: int z = 0; ; while (x > 0) {z++; while (y < 3) { y++; if (z == 2)____(a)_____ z++; } x--; if (x == 3) ____(b)_____ z++ } return z; A. (a) break (b) break B. (a) break (b) continue C. (a) continue (b) break

For Latest MB6-819 Exam Questions and study guides- visit- http://www.testkingprep.com/MB6-819.html


D. (a) continue (b) continue Answer: B Question:5 You work in an International company which is called DONEX. And you're in charge of the network of your company. Which of the following sections of code include an example of a loop statement? (choose more than one) A. if (custTable.RecId) B. { C. update(); D. } E. for ( j ; j < k ; j++) F. { G. .. H. } I. select inventTable; JI. recId) K. { L. .. M. next inventTable; N. } O. switch (expression) P. { Q. case 'Choice1': Statement1; Statement2; break; R. case 'Choice2': Statement3; break; S. case 'Choice3': Statement4; Statement5; Statement6; break; T. default : DefaultStatement; U. } Answer: B, C Question:6 You work in an International company which is called DONEX. And you're in charge of the network of your company. Which of the following lines of code will increment the variable 'counter' by 2 each time? (choose more than one) A. counter++; B. counter++2; C. counter+=2; D. counter = counter+2; Answer: C, D Question:7 You work in an International company which is called DONEX. And you're in charge of the network of your company. What keyword is missing from this statement: _____ (x = 1 ; x < y ; x++) { } A. If B. Do C. For D. While Answer: C Question:8 You work in an International company which is called DONEX. And you're in charge of the network of your company. If you want to delete the entire USR-layer from Microsoft Dynamics AX2009, what files do you delete from the application folder? A. All *.aod files. B. The Axusr.aoi and axusr.aot files.

For Latest MB6-819 Exam Questions and study guides- visit- http://www.testkingprep.com/MB6-819.html


C. All Axusr*.* files and the axapd.aoi file. D. The axaod.usr file and the axapd.aoi file. Answer: D Question:9 You work in an International company which is called DONEX. And you're in charge of the network of your company. Which of the following are valid switch statements, that given color = "purple", will return "Secondary Color". ( Choose more than one) A. str color; B. str colorType; C. ; D. switch (color) E. { F. case "red", "yellow", "blue" : colorType = "Primary Color"; break; G. case "purple", "green", "orange" : colorType = "Secondary Color"; break; H. default : colorType ="Neither Primary or Secondary color"; J. } K. str color; L. str colorType; M. ; N. switch (color) O. { P. case "red": Q. case "yellow" R. case "blue": colorType = "Primary Color"; break; S. case "purple": T. case "green": U. case "orange": colorType = "Secondary Color"; break; V. default : colorType ="Neither Primary or Secondary color"; W. } X. str color; Y. str colorType; Z. ; I. switch (color) I. { I. case 1: if (color == "red") I. case 2: if (color == "yellow") I. case 3: if (color == "blue") I. colorType = "Primary Color"; break; I. case 4: if (color == "purple") I. case 5: if (color == "green") I. case 6: if (color == "orange") I. colorType = "Secondary Color"; break; I. default : colorType ="Neither Primary or Secondary color"; I. } I. str color; I. str colorType; I. ; I. switch (color) I. { I. default : colorType ="Neither Primary or Secondary color"; I. case "red": I. case "yellow": I. case "blue" :

For Latest MB6-819 Exam Questions and study guides- visit- http://www.testkingprep.com/MB6-819.html


I. colorType = "Primary Color"; I. break; I. case "purple": I. case "green": I. case "orange" : I. colorType = "Secondary Color"; I. break; I. } Answer: A, B Question:10 You work in an International company which is called DONEX. And you're in charge of the network of your company. In which loop function are the conditions evaluated AFTER the first loop? A. For B. While C. Switch D. Do While Answer: D Question:11 You work in an International company which is called DONEX. And you're in charge of the network of your company. Given x = 4 and y = 0, what will the following method return? Public str exampleMethod(int x, int y) { ; if (x == 1) return ="A"; else if ((x < y) || ((x > 5) & (y < 0)) return = "B"; else if ((y < x || !x) & ( x >= 1|| !y)) return = "C" else return = "D" } A. A B. B C. C D. D Answer: C Question:12 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. He doesn't know when TTS control is required, so what's your answer? (choose more than one) A. Whenever records are updated. B. Whenever records are deleted. C. Whenever records are inserted. D. When more than two updates are nested. Answer: B, C Question:13 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. He has no idea on how he can define which companies to retrieve data from in one select statement. So what's your answer? A. Use the changeCompany keyword and an array with the company id's. B. Data cannot be retrieved from multiple companies in one select statement C. Use a where clause that includes the dataAreaId, and a container to define which companies to search D. Create a container that has the company id's, and then use the crossCompany keyword in the select statement Answer: D Question:14 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. He has no idea on how he can find the

For Latest MB6-819 Exam Questions and study guides- visit- http://www.testkingprep.com/MB6-819.html


number of records in the item table. So what's your answer? A. select num(recId) from InventTable; B. select nums(recId) from InventTable; C. select recNum(recId) from InventTable; D. select recCount(recId) from InventTable; Answer: A Question:15 You work in an International company which is called DONEX. And you're in charge of the network of your company. And now you work as the systems developer in a situation where he could retrieve the same dataset through either a select statement or a query. What should be the determining factor? A. If he can use a query, he should, as queries work faster than selects. B. A select statement is preferable where large volumes of data are processed. C. It does not matter which way he gets the data, as long as he gets the right data. D. If he needs user interaction regarding the data he needs processed, a query is the preferable way. Answer: D

For Latest MB6-819 Exam Questions and study guides- visit- http://www.testkingprep.com/MB6-819.html


For complete Exam MB6-819 Training kits and Self-Paced Study Material Visit: http://www.testkingprep.com/MB6-819.html

http://www.testkingprep.com/

For Latest MB6-819 Exam Questions and study guides- visit- http://www.testkingprep.com/MB6-819.html


Turn static files into dynamic content formats.

Create a flipbook
Issuu converts static files into: digital portfolios, online yearbooks, online catalogs, digital photo albums and more. Sign up and create your flipbook.