Our Microsoft Microsoft study guides are generally available in Pdf forms which are printed and convenient to make use of. You can carry them with you whenever and whenever youd such as to. All of us are certain you will always be armed with the most up-to-date and most useful Microsoft MB6-704 training materials. All the Microsoft MB6-704 questions and answers are customized about the basis of the actual exam syllabus. You wont pass from the Microsoft MB6-704 certification. Our Microsoft examination engine gives some visualized scenarios that you will encounter in the Microsoft MB6-704 actual exam. Our Microsoft MB6-704 exam dumps can easily polish your abilities and head.
Q11. You are developing queries to fetch data from the CustTable table. CustTable contains a
field named City. There is a non-unique cluster index named city Idx in the City field.
You need to fetch data from CustTable in ascending order based on City.
What are three possible SQL statements that achieve this goal? Each correct answer presents a complete solution.
A. Select CustTable order by city ASC;
B. Select CustTable index city;
C. Select CustTable index city Idx;
D. Select city From CustTable;
E. Select CustTable order by city;
Answer: A,D,E
Q12. You have the following X++ statement: You need to identity the output of the statement.
What should you identify?
A. An error has occurred.
Variable B cannot be less than variable A.
Process was aborted.
B. An error has occurred.
Process was aborted.
C. An error has occurred.
Variable B cannot be less than variable A.
D. Variable B cannot be less than variable A.
Process was aborted.
Answer: B
Q13. You have a table named Vend Table that contains a field named Main Contact Worker. Main Contact Worker is the reference Recid. Many records in the Vend Table table have the same value for Main Contact Worker.
Users frequently search for data in the Vend Table table based on the Main Contact Worker field.
You need to ensure that when the users create queries that include the Main Contact Worker field in the where clause, the query results are returned in the least amount of time possible.
What should you create in Vend Table?
A. A unique index in Main Contact Worker
B. A surrogate key that is used as the primary index
C. A primary index for Main Contact Worker
D. A non-unique index in Main Contact Worker
Answer: B
Q14. Last Name is a field in a table. The length of the field is modified at different layers as follows:
At the SYS layer, the field is set to 20 characters.
At the USR layer, the field is set to 60 characters.
At the CUS layer, the field is set to 40 characters.
At the VAR layer the field it is set to 10 characters.
At runtime, what will be the length of the Last Name field?
A. 40
B. 10
C. 20
D. 60
Answer: D
Q15. You plan to create two tables named Table l and Table2. Both tables will have a field named Customer Number of the string type that has a length of 15. The tables will have a relationship on the Customer Number field.
You need to ensure that the string length of Customer Number is identical for both tables. The solution must ensure that if any relationships on the Customer Number field are added to other tables, the other tables will have the same string length for Customer Number.
What should you use?
A. A view
B. An extended data type (EOT)
C. A perspective
D. A map
Answer: B
Q16. You enable a feature for a Dynamics AX instance.
What should you use?
A. An extensible data security (XDS) policy
B. A configuration key
C. The Table Permissions Framework (TPF)
D. A security key
Answer: B
Q17. You have the following X++ code: (Line numbers are included for reference only.)
Method l and method2 are in Class l. Method3 is in Class2.
You need to set the value of vanable3 to the value of variable l from class l Obj.
Which code segment should you insert at line 22?
A. Variable3 = classl Obj.methodl();
B. Variable3 = new Class l{) .variable l;
C. Variable3 = class l Obj. variable l;
D. Variable3 = this. variable l ;
Answer: A
Q18. Which three tasks are performed by an Application Object Server (AOS)? Each correct answer presents a complete solution.
A. Manages client sessions
B. Stores the Dynamic AX models
C. Enforces security for Dynamic AX data and features
D. Runs the X++- code
E. Hosts help files
Answer: A,B,D
Q19. You have the following X++ code: (Line numbers are included for reference only.)
Method l and method2 are in Class l. Method3 is in Class2.
You need to set variablel for class l Obj to a value of 5.
Which code segment should you insert at line 21?
A. classl Obj.methodl(5);
B. new Classl( ).methodl(5);
C. classl Obj.variable1 = 5;
D. this. variable l =5:
Answer: A
Q20. You are developing a class named Class l that performs several calculations. One of the methods in Class l is named method 1.
Other developers will create classes that inherit from Class l.
You need to ensure that method l is available to Class l and to all of the classes that inherit Class l. The developers must not be able to call method l from any other classes.
Which keyword should you use to define method l?
A. Protected
B. Public
C. Server
D. Private
Answer: D