Archive for the ‘Microsoft’ Category
MB6-821 self-study training
Free MB6-821 exam Questions and Answers
It is well known that MB6-821 exam test is the hot exam of Microsoft certification. Exam Code: MB6-821, Exam Name: AX 2009 MorphX Solution Development.
Here we offer a free trial part of the MB6-821 exam (Including questions and answers). This will be your best MB6-821 self-study training. You can check out the interface, question quality and usability of our practice exams before you decide to buy it.
If you need to buy, please visit here MB6-821.
If you need to buy Microsoft certification in other subjects, please visit here Microsoft certification.
Free MB6-821 Questions and Answers Demo
1. Which of the following are methods on the Args class that will accept a string type as a parameter?
Choose two that apply.
A.caller()
B.name()
C.parm()
D.element()
Answer: bc
2. What are the main journals in Microsoft Dynamics AX?
Choose three that apply.
A.Ledger
B.Inventory
C.Project
D.Trade
Answer: abc
3. Which runtime class instances exist for a running report with a data source?
Choose two that apply.
A.ReportDesignSpecs
B.QuerySelect
C.QueryRun
D.ReportRun
Answer: cd
4. Isaac, the Systems Developer, wants to modify the method SalesLine.calcLineAmount(). He wants to
be sure that the change does not cause problems when it is used with the application. How can he find
out where it is used?
A.Use the Reverse Engineering tool
B.Use the Cross-Reference tool
C.Right-click on the method and select Find
D.Right-click on the method and select Compare
Answer: b
5. To obtain an overview of the data types inherited from AmountMST, which of the following would you
use?:
A.The Reverse Engineering tool.
B.The "Used by" node in the AOT.
C.The "References" node in the AOT.
D.The Application Hierarchy Tree.
Answer: d
6. Where are the online help files stored?
A.In the AOT.
B.In .chm files on the client machine.
C.In .hlp files on the AOS.
D.In .ahp files in the application files directory.
Answer: b
7. How can modifications be moved between a development and a test system?
Choose two that apply.
A.Export the modifications from the development system to a .xpo file and import it into the test system.
B.Copy the .aod and .ald files from the development application file directory to the test application file
directory.
C.Use the application merge tool in the test application, and specify the development application
directory.
D.Run the application upgrade wizard from the development application and specify the test application
file directory.
Answer: ab
8. Isaac, the Systems Developer, wants to debug code in the class SalesFormLetter when it is called from
the sales order form. What steps must he take to achieve this?
Choose three that apply.
A.Install the debugger on the client.
B.Allow debugging to be executed on the AOS.
C.Open the debugger from the Tools menu before the code is executed.
D.Set a breakpoint in the code.
Answer: abd
9. Isaac, the Systems Developer has moved the axCUS.aod and axCONen-us.ald files from the
development application directory to the test application directory. What must he also do to ensure the
labels are updated correctly?
A.Recompile the application.
B.Synchronize the database.
C.Delete the axCONen-us.ali file.
D.Synchronize the labels.
Answer: c
10. How can the best-practice error in a display method be turned off, after it has been investigated
whether record-level security is required?
A.Add the comment://Record-security documented
B.Add the keyword Secure to the method definition.
C.Add the comment://BP deviation documented
D.Add the keyword Ignore to the method definition.
Answer: c
11. When writing a direct SQL statement, what would be the correct syntax to execute a statement and tell
the Code-Access Security layer that it is safe?
A.new
SqlStatementExecutePermission(sqlString).secure();stmt.executeQuery(sqlString);CodeAccessPermissi
on::revertSecure();
B.new
CodeAccessPermission(sqlString).assert();stmt.executeQuery(sqlString);CodeAccessPermission::revert
Assert();
C.new
SqlStatementExecutePermission(sqlString).assert();stmt.executeQuery(sqlString);SqlStatementExecute
Permission::revertAssert();
D.new
SqlStatementExecutePermission(sqlString).assert();stmt.executeQuery(sqlString);odeAccessPermission:
:revertAssert();
Answer: d
12. Isaac, the Systems Developer, needs to run a form from his X++ code. Select the correct statement to
replace the /* insert answer here */ comment in the following code:
Args args;
FormRun formRun;
;
args = new args(formstr(inventTable));
formRun = classFactory.formRunClass(args);
/* insert answer here */
A.formRun.init();formRun.prompt();formRun.wait();
B.formRun.init();formRun.run();
C.formRun.init();formRun.run();formRun.prompt();
D.formRun.init();formRun.run();formRun.wait();
Answer: d
13. Isaac, the Systems Developer, needs to write X++ code to iterate through the elements in a Map
object. What class(es) can he use to do this?
Choose two that apply.
A.MapEnumerator
B.MapIterator
C.Map
D.ListIterator
Answer: ab
14. What is the purpose of the RunBase framework?
A.It defines a common structure for all reports in Microsoft Dynamics AX.
B.It defines a common structure for all access rights in Microsoft Dynamics AX.
C.It defines a common structure for all data manipulations in Microsoft Dynamics AX.
D.It defines a common structure for all forms in Microsoft Dynamics AX.
Answer: c
15. Which method on RunBase class does the following statement describe?
"This method receives a container as a parameter and restores the type specific variables of the class"
A.initValue
B.main
C.unpack
D.getFromDialog
Answer: c
16. Which of the following is a difference between the two classes: RecordSortedList and
RecordInsertList?
A.RecordInsertList lacks the sort order features that are available in RecordSortedList.
B.RecordSortedList lacks the sort order features that are available in RecordInsertList.
C.RecordInsertList cannot insert multiple records into the database in one trip.
D.RecordSortedList cannot insert multiple records into the database in one trip.
Answer: a
17. What is the Args-class used for?
A.It verifies arguments sent to the Called application object.
B.It passes information between running application objects.
C.It handles end-user input.
D.It handles external access to classes in the AOT.
Answer: b
18. Isaac, the Systems Developer, has created a new class which extends the RunBase Framework.
He needs to make the query visible on the dialog, for user interaction. Which methods will he need to
override to achieve this?
A.showQueryValues()
B.queryValuesVisible()
C.showQuery()
D.queryVisible()
Answer: a
19. Which of the following are valid application object classes?
Choose three that apply.
A.Form
B.FormDesign
C.FormQueryDataSource
D.FormRun
Answer: abd
20. Which select statement is identical to the Query object produced by the following block of code?
Query q;
QueryBuildDataSource qbDS;
QueryBuildRange qbR;
q = new Query();
qbDS = q.addDataSource(tableNum(InventTrans));
qbDS.addSelectionField(fieldNum(InventTrans,Qty),SelectionField::Sum);
qbDS.orderMode(OrderMode::GroupBy);
qbR = qbDS.addRange(fieldNum(InventTrans, ItemId)).value(SysQuery::value(""OL-2500""));
qbDS = qbDS.addDataSource(tableNum(InventDim));
qbDS.orderMode(OrderMode::GroupBy);
qbDS.addSortField(fieldNum(InventDim, InventBatchId));
qbDS.relations(true);
A.while select sum(qty) from inventTranswhere inventTrans.ItemId ==OL-2500join inventDimgroup by
inventBatchIdwhere inventDim.InventDimId == inventTrans.InventDimId
B.while select inventTranswhere inventTrans.ItemId ==OL-2500join inventDimgroup by
inventBatchIdwhere inventDim.InventDimId == inventTrans.InventDimId
C.select sum(qty) from inventDimgroup by inventBatchIdjoin inventTranswhere inventTrans.InventDimId
== inventDim.InventDimId&& inventTrans.ItemId ==OL-2500
D.while select sum(qty) from inventDimgroup by inventBatchIdjoin inventTranswhere
inventTrans.InventDimId == inventDim.InventDimId&& inventTrans.ItemId ==OL-2500
Answer: a
MB6-821 Study Guide More Details
70-220 self-study training
Free 70-220 exam Questions and Answers
It is well known that 70-220 exam test is the hot exam of Microsoft certification. Exam Code: 70-220, Exam Name: Designing Security for a Microsoft Windows 2000 Network.
Here we offer a free trial part of the 70-220 exam (Including questions and answers). This will be your best 70-220 self-study training. You can check out the interface, question quality and usability of our practice exams before you decide to buy it.
If you need to buy, please visit here 70-220.
If you need to buy Microsoft certification in other subjects, please visit here Microsoft certification.
Free 70-220 Questions and Answers Demo
1. Which audit policy should you use to detect possible intrusions into the Just Togs network? A. Success and failure audit for process tracking B. Success and failure audit for privilege use C. Success and failure audit for policy change D. Success and failure audit for logon events Answer: D 2. Which type of CA should you use to digitally sign the ActiveX control? A. Enterprise subordinate CA B. Third-party CA C. Enterprise root CA D. Stand-alone root CA Answer: B 3. Which audit policy should you use on JTWEB? A. Success and failure audit for process tracking B. Success and failure audit for object access C. Success and failure audit for logon events D. Success and failure audit for directory service access Answer: B 4. Which methods should you use to identify and authenticate existing customers on the Web site? A. SSL, NTLM logon, and database validation B. SSL, anonymous logon, and CHAP C. SSL, NTLM logon and CHAP D. SSL, anonymous logon and database validation Answer: D 5. How should you authenticate visitors to the Web site? A. Authenticate visitors to an anonymous account B. Authenticate visitors by requiring them to enter their user ID and password C. Authenticate visitors by using cookies D. Authenticate visitors that place an order as new or existing customers Answer:A 6. Which technology should you use to securely connect the retail stores to headquarters? A. MS-CHAP B. IPSec C. EAP-TLS D. PPTP E. L2TP Answer: D 7. Which authentication protocol should you use to secure the VPN connection from the retail stores to headquarters? A. EAP B. PAP C. SPAP D. MS-CHAP Answer: D 8. Which changes should the retail stores make to Support the VPN connection? A. Configure the connection type to dial in to headquarters. Use L2TP over IPSec to communicate with the VPN server. B. Configure the connection type to dial in to the ISP. Use L2TP over IPSec to communicate with the VPN server. C. Configure the connection type to dial in to the ISP. Use PPTP to communicate with the VPN server. D. Configure the connection type to dial in to headquarters. Use PPTP to communicate with the VPN server. Answer: C 9. QUESTION: Answer: 10. QUESTION: Answer: 11. Which security requirement will affect design of the Windows 2000 forest? A. Implementation of Kerberos authentication B. Secure transactions at Store Registers C. Organization of user accounts D. Secure communication between legal and HR. Answer: C 12. Which server or servers provide the least security for user access? A. Retail store servers B. Service centers servers C. SALES1 D. HR1 E. LEGAL1 Answer: C 13. How should you secure the new servers at the Casablanca store? A. Install the servers into a new OU and implement Group Policies at the Site Level B. Install the servers into a new OU and implement Group Policies at the OU Level C. Install the servers into their own Active Directory tree and implement Group Policies at the Domain Level D. Install the servers into the same Active Directory tree as stores and modify the schema Answer: B 14. Which strategy should you use to accommodate the new Casablanca store? A. Place the Help Desk employee in the Domain Admins group. B. Place the Help Desk employee in the Enterprise Admins group. C. Delegate authority to the Help Desk employee to manage client computers. D. Delegate authority to the Help Desk employee to modify user accounts and groups Answer: D 15. Which security method should you implement to provide data security between LEGAL1 and HR1? A. Group Policies for shared folders B. IPSec with ESP C. IPSec with AH D. EFS Answer: B 16. Which security solution should you implement to allow the service centers to communicate with manufactures? A. Dfs with Crypto API B. IPSec C. Secure DNS D. Secure Email Answer: D 17. How should you design Windows 2000 domain and OU structure for HIABUV TOYS? A. Create two accounts domains, and migrate all resource domains into OUs under the Headquarters domain. B. Create two accounts domains, and migrate all resource domains into OUs under the Retail Store Domain. C. Create two accounts domains, and migrate existing Retail Stores resource domain into OUs under the Retail Store domain. D. Create two accounts domains, and migrate existing Retail Stores resource domain into OUs under the Headquarters domain. Answer: C 18. QUESTION: Answer: 19. What are the existing and envisioned IT administrative models for Hanson Brothers? A. Existing centralized Envisioned centralized B. Existing centralized Envisioned decentralized C. Existing decentralized Envisioned centralized D. Existing decentralized Envisioned decentralized Answer: B 20. How should hospitals connect to headquarters to view the status of their orders? A. Use the VPN with Windows 2000 logon authentication B. Use Routing and Remote Access with Windows 2000 logon authentication C. Use the VPN with Remote Authentication Dial-In User Service (RADIUS) authentication. D. Use Routing and Remote Access with Remote Authentication Dial-In User Service (RADIUS) authentication Answer: B
70-220 Study Guide More Details
70-284 self-study training
Free 70-284 exam Questions and Answers
It is well known that 70-284 exam test is the hot exam of Microsoft certification. Exam Code: 70-284, Exam Name: Installing, Configuring, and Administering Microsoft Exchange 2003 Server.
Here we offer a free trial part of the 70-284 exam (Including questions and answers). This will be your best 70-284 self-study training. You can check out the interface, question quality and usability of our practice exams before you decide to buy it.
If you need to buy, please visit here 70-284.
If you need to buy Microsoft certification in other subjects, please visit here Microsoft certification.
Free 70-284 Questions and Answers Demo
1.You are the Exchange administrator for your company. The network consists of a single Active Directory domain. All network servers red Microsoft Windows Server 2003. Exchange Server 2003 is used as the messaging system. The accounting department hires a consultant on a temporary basis. The consultant needs to access the department's file server. The department needs to ensure that the consultant's external e-mail address appears in the global address list (GAL) and that mail sent to him is sent to his external e-mail address. You need to create an Active Directory object in the domain to fulfill these requirements. Which type of object should you create? A.a mail-enabled Contact object B.a mail-enabled User object C.a mailbox-enabled User object D.a mailbox-enabled InetOrgPerson object Answer: B 2.You are the Exchange administrator for your company. Exchange Server 2003 runs on a Microsoft Windows Server 2003 member server. The Exchange server contains two mailbox stores. All user accounts are located in the Accounts organizational unit (OU). An e-mail virus infects all mailboxes on both mailbox stores. You create a nonadministrative user that needs to be able to use the Exmerge utility. This user does not have the necessary permissions to open other users' mailboxes. You need to assign this user permission to open all users' mailboxes to extract the virus. What should you do? A.Assign the user Full Control permissions to the Accounts OU. B.Assign the user Send As and Receive As permissions to the administrative group. C.Add the user to the Exchange Domain Servers group. D.Add the user to the Enterprise Admins global group and to the Exchange server's local Administrators group. Answer: B 3.You are the Exchange administrator for your company. The network contains a single Exchange Server 2003 computer. The Exchange server contains one storage group and one mailbox store. Full backups of the mailbox store and transaction log files are performed every night. After the mailbox store is restored from tape, users report that some of their e-mail messages are not restored. You discover that the storage group is configured as shown in the exhibit. (Click the Exhibit button.) You need to ensure that after you restore the mailbox store, users have all of the most current data. What should you do? A.Zero out deleted database pages after you perform a restore operation. B.Disable circular logging before you perform a backup. C.Perform only shadow copy backups and shadow copy restore operations. D. Create a mailbox store policy. Select the option to keep deleted messages for 30 days. Add the mailbox store to this policy. Answer: B 4.You are the Exchange administrator for your company. The network currently consists of a two-node Exchange Server 2003 active/passive cluster. Three hundred HTTP client computers connect to the Exchange servers by using SSL. Users report that the response time of their Microsoft Outlook Web Access screen refreshes is unacceptably slow. You add two more servers to the existing Exchange environment. You need to ensure that your HTTP client computers have redundancy and acceptable client response times. Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.) A. Join the new servers to the existing cluster. B. Select the option to configure the new servers as front-end servers. C. Configure the new servers so that they use Network Load Balancing. D. Create an Exchange System Attendant cluster resource for each front-end server on the existing cluster. Answer: BC 5.You are the Exchange administrator for the company. The company operates two offices; one in London and one in Leipzig. The Exchange organization contains eight servers that run Exchange Server 2003. Each office contains four Exchange servers. Each office is configured as a routing group. The routing groups are connected by a routing group connector. In each office, one Exchange server is configured as a bridgehead server. Each bridgehead server is configured with two SMTP virtual servers. One SMTP virtual server is configured as the bridgehead server for the SMTP connector for e-mail messages sent to and from the Internet. The other SMTP virtual server is configured as the bridgehead server for the routing group connector. You need to ascertain the number and size of e-mail messages sent between the two offices, and to and from the Internet, every day. You need to specify the number of messages sent, the total size of messages sent, and the appropriate queue length on each server. You will use this data to plan for future growth. Now should you modify each bridgehead server? A. Configure a counter log to monitor both SMTP virtual servers. B. Configure a counter log to track all messages sent by the Microsoft Exchange MTA Stacks service. C. Configure SMTP logging on both SMTP virtual servers. D. Configure SMTP logging on the SMTP virtual server that sends and receives e-mail messages to and from the Internet. Configure a counter log to track all messages sent between routing groups by the Microsoft Exchange MTA Stacks service. Answer: D 6.You are the Exchange administrator for the company. The main office has 5,700 users, A total of 1,500 users work in 70 different branch offices. All branch offices are connected to the main office by WAN connections. The Exchange organization contains four servers that run Exchange Server 2003. Each Exchange server contains 1,800 mailboxes. All Exchange servers are located in the main office and are configured as Microsoft Outlook Web Access servers. Only SSL connections are accepted for Outlook Web Access. Branch office users connect to the Exchange servers by using Outlook Web Access. They report unacceptably slow response times when they access the servers. You use System Monitor on one Exchange server to collect the performance data shown in the exhibit. (Click the Exhibit button.) You need to optimize the performance of Outlook Web Access for branch office users. What should you do? A. Install additional RAM on each Exchange server. B. Install an additional physical disk on each Exchange server. Move the paging file to the new disk. C. Install an additional Exchange Server 2003 computer. Configure the new server for SSL and configure it as a front-end server. Instruct all branch office users to use the new server for Outlook Web Access. D. Install an additional Exchange Server 2003 computer. Move all mailboxes for branch office users to the new server, Configure the new server for SSL. Instruct all branch office users to use the new server for Outlook Web Access. Answer: C 7.You are the Exchange administrator for your company. The Exchange organization consists of several sites containing Exchange Server S.S computers and several administrative groups containing Exchange Server 2003 computers. The site named London contains an Exchange Server S.S computer named Mail l, which will be retained for the next two years. You install a computer named Mail2 into the London site. You install Exchange Server 2003 on Mail2. You move some mailboxes to Mail2. You find out that the hardware configuration of Mail2 is not adequate for the required workload. In preparation for replacing Mail2, you install a new computer named Mail3 into the administrative group. You install Exchange Server 2003 on Mail3 and move all mailboxes from Mail2 to Mail2. You need to ensure that Mail2 can be removed from the network without disrupting Exchange services. To minimize the load on Mail2, you must not move any unnecessary roles to it. Which three actions should you perform? (Each correct answer presents part of the solution. Choose three.) A.Replicate the Offline Address Book folder to Mail3. Remove the replica from the original owner of the folder. B. Replicate the CAB Version 2 folder to Mail3. Remove the replica from the original owner of the folder. C. Replicate the Schedule+ Free Busy folder to Mail3. Remove the replica from the original owner of the folder. D. Modify the Recipient Update Service to use Mail3. E. Create an instance of the Site Replication Service on Mail3. Remove the original instance. F. Configure the routing group to designate Mail3 as the routing group master. Answer: DEF 8.You are the Exchange administrator for your company. The Exchange organization contains a single server that runs Exchange Server 2003. The Exchange server contains one storage group and one mailbox store. You discover that the mailbox store is corrupted and will not mount. You need to ensure that you restore the most current data possible. What should you do? A. Create the Recovery Storage Group. Set the path to be the same as the path for the existing mailbox store. B. Create the Recovery Storage Group. Set the database path to C:\ Program Files\Exchsrvr\Recovery Storage Group. C. Restore the mailbox store and then mount the mailbox store. D. Delete the database and transaction log files. Then mount the mailbox store. Answer: C 9.You are the Exchange administrator for your company. The company operates three offices. The network consists of a single Active Directory domain. Each office has one domain controller that runs Microsoft Windows Server 2003. You plan to deploy one Exchange Server 2003 computer in each office. Each Exchange server must be placed in a separate administrative group. The forest and the domain are already prepared to support Exchange Server 2003. When you try to install the first Exchange server, you discover that you cannot choose an administrative group in which to place the server. You cancel the installation. You need to ensure that you can choose an administrative group during installation. What should you do? A. Install Exchange Server 2003 by running the setup /choosedc command and specify the local domain controller. B. Install Exchange System Manager. Create the administrative groups. C. Install Exchange System Manager. At the Exchange organization level, assign the Exchange Full Administrator permissions to the account used to install Exchange Server 2003. D. At the Administrative Groups container level, use Active Directory Sites and Services to assign the Full Control permission to the account used to install Exchange Server 2003. Answer: B 10.You are the Exchange administrator for your company. All seven servers in the Exchange organization run Exchange Server 2003. Your company acquires another company that uses a single Novell GroupWise server that runs on Netware. The GroupWise mailboxes are assigned SMTP addresses in a namespace that is different from the namespace used by the Exchange mailboxes. For business reasons, it is not possible for you to migrate the GroupWise users to Exchange immediately. You configure one of the Exchange servers, which has no local mailboxes, as a dedicated bridgehead server for communications to the GroupWise server. Exchange users can see the GroupWise users in the Exchange global address list (GAL) and can send messages to them. However, when the Exchange users want to send meeting requests, they cannot view the free or busy status of Groupwise users. You need to ensure that the Exchange users can view the free or busy status of the Groupwise users. What should you do? A. On the Exchange bridgehead server, configure the Calendar Connector. B. On the Exchange bridgehead server, install the Gateway Service for NetWare. C. On the Exchange bridgehead server, add a replica of the Schedule+ Free Busy folder. D. On the Exchange bridgehead server, create an SMTP connector to one of the GroupWise SMTP. E. On all Exchange servers, install the Microsoft Exchange Connector for Novell GroupWise. Answer: A 11.You are the Exchange administrator for your company. Exchange Server 2003 is the messaging system. The Exchange organization includes a two-node active/active server cluster that provides failover capabilities for each of the two Exchange Virtual Servers (EVSs). You need to ensure that the cluster will automatically balance the two EVSs evenly across both cluster nodes, as long as both nodes are operational. You must not remove the existing failover capabilities. Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.) A. Configure failover for each EVS. B. Configure failback for each EVS. C. Configure a single preferred node for each EVS. D. Configure a single possible node for each EVS. E. Configure the quorum disk resource so that is does not affect the cluster resource group when a failure occurs. Answer: BC 12.You are the Exchange administrator for the company. The network consists of a single Active Directory forest. The forest root domain is named domain..root. The domain structure is shown in the work area. You plan to implement Exchange Server 2003 as the companywide messaging system. Exchange servers must be deployed only in the fabrikam.com and Iondon.fabrikam.com domains. Each domain in the fabrikam.com tree must contain mailbox-enabled users and mail-enabled groups.You need to run the appropriate command or commands to ensure that the Active Directory infrastructure is prepared to support this implementation. Your solution must require the minimum amount of administrative effort. Which setup command or commands should you run, and in which domains? To answer, drag the appropriate setup command or commands to the correct domain or domains in the work area. Answer: 13.You are the Exchange adminstrator for the company. The network consists of a single Active Directory domain. The Exchange organization contains eight servers that run Exchange server 2003. All Exchange servers are member servers, and all are located in the computers container in Active Directory. Written company security policies specify the audit settings, event log settings, and security policy settings that must be applied to all Exchange servers. You need to ensure that the Exchange servers comply with the written security policies. Your solution must require the minimum amount of administrative effort to maintain. What should you do? A. Create the policy settings by using the Local security Policy tool. Apply the policy settings to the Exchange servers. B. Create a security template that matches the policy requirements. Run secedit.exe to apply the template to the Exchange servers. C. Create a new organizational unit (OU) and move all Exchange servers into the OU. Create a Group Policy object (GPO) that applies the policy settings. Link the GPO to the OD. D. Create a new Group Policy object (GPO) that defines the policy settings for the Exchange servers. Link the GPO to the Domain Controllers organizational unit (OD). Set a filter on the GPO to apply only to the Exchange servers. Answer: C 14.You are the Exchange administrator for your company. The network consists of an intranet segment and a perimeter network. A server named ISA1 runs Microsoft Internet security and Acceleration (ISA) server and connects the perimeter network to the Internet. The network contains two servers named Exch1 and Mail1. Both servers run Exchange Server 2003. Exch1 is connected to the perimeter network and is configured as a front-end server. Exch1 also hosts Microsoft Outlook Web Access. Mail1 is connected to the intranet and is configured as a back-end server. Mail1 hosts all user mailboxes. The firewall between the intranet and the perimeter network is configured to allow RPC communications between Mail1 and Exch1. A company investigator discovers that confidential e-mail messages are sometimes intercepted when remote users connect to Outlook Web Access on Exch1. You need to ensure that all Outlook Web Access communications from the Internet are encrypted. Your solution must require the minimum amount of encryption-related processing on Exch1. What should you do? A. Configure ISA1 to allow HTTPs traffic between the Internet and Exch1 Instruct employees to connect to Exch1 by using HTTPs instead of HTTP. B. Configure ISA1 to reverse proxy Outlook Web Access from Exch1. Configure Exch1and ISA1 to use IPSec encryption when they communicate. C. Install a server encryption certificate on ISA1. Configure ISA1 to reverse proxy Outlook Web Access from Exch1 and to require SSL encryption. Configure ISA1 to transmit unencrypted data to Exch1 Instruct employees to connect to Exch1 by using HTTPs instead of HTTP. D. Install a server encryption certificate on Exch1 Configure ISA:IL to open the HTTPs port for incoming traffic from the Internet to Exch1, and to allow outgoing HTTPs replies from Exch1 to the Internet. Configure the Outlook Web Access virtual Web server to require SSL encryption for all connections. Answer: D 15.You are the Exchange administrator for your company. The network consists of a single Active Directory domain. A server named Exch1 runs Exchange server 2003 and hosts all user mailboxes. Exch1 also sends and receives SMTP e-mail messages to and from the Internet. Exch1 is protected by a firewall that connects the intranet to the Internet. Users report that they receive a large number of unsolicited e-mail messages every day. You discover that all users receive the same unsolicited e-mail messages, which are sent to a universal distribution group in the domain. You need to ensure that distribution groups cannot be used to send e-mail messages from the Internet to company users. Your solution must not affect the ability of company users to send and receive legitimate e-mail messages. What should you do? A.Convert the universal distribution groups to universal security groups. B.Configure the distribution groups so that messages are only accepted from authenticated users. C.Configure Exch1 to reject incoming SMTP traffic from external IP addresses. D. Configure Exch1 to send and receive SMTP traffic to and from the firewall. Configure the firewall to reverse publish the SMTP port on Exch1. Answer: B 16.You are the Exchange administrator for your company. The Exchange organization contains two back-end servers and four front-end servers. All Exchange servers run Exchange server 2003. New written security policies require encryption for all Internet connections to the front-end servers. You try to modify the configuration of each front-end server, but the SSL encryption option is unavailable on each one. You need to ensure that users can use SSL to secure Internet-based e-mail connections. What should you do? A. Obtain and install a server encryption certificate on each front-end server. B.Obtain and install a server encryption certificate on each back-end server. C.Install and configure the Key Management service on a new front-end server. D.Install and configure Microsoft Certificate services on each back-end server. Answer: A 17.You are the Exchange administrator for your company. The company operates a main office and one branch office. The network consists of a single Active Directory domain. The domain contains three servers that run Exchange server 2003 in a single Exchange organization. Two Exchange servers are located in the main office and are members of the Main Office administrative group. The third Exchange server is located in the branch office and is a member of the Branch Office administrative group. User and group accounts for users in the main office are located in the Main Office organizational unit (OU). User sand group accounts for users in the branch office are located in the Branch Office OU. A new administrator is hired to perform the following administrative tasks: Create and delete user accounts for branch office users. Add and remove users from mail-enabled groups for branch office users. Create and delete mailboxes on the Exchange server in the branch office. View and manage queues on the Exchange server in the branch office. You need to ensure that the new administrator can perform the required tasks. You must assign only the minimum level of necessary permissions. Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.) A.Configure the permissions on the Branch Office OU to grant full control of the OU to the new administrator. B. Add the new administrator to the Account operators group in the domain. C. Configure the permissions on the Branch Office OU to enable the new administrator to manage user and group accounts in the CU. D.Add the new administrator to the server operators group on the Exchange server in the branch office. E.Configure the permissions on the Branch Office administrative group to assign Exchange View Only Administrator permissions to the new administrator. F.Configure the permissions on the Branch Office administrative group to assign Exchange Administrator permissions to the new administrator. Answer: CF 18.You are the Exchange administrator for the company. The intranet is connected to the Internet through a firewall. The Exchange organization contains two servers named Mail1 and OWA1. Both servers run Exchange Server 2003. Mail1 is configured as a mailbox server. OWA1 is configured as a front-end server. OWA1 is configured to allow users to access their e-mail by using Microsoft Outlook Web Access over SSL. Internet users report that they cannot access OWA1. However, intranet users can use either HTTP or HTTPS to access Outlook Web Access. You need to ensure that all users can access Outlook Web Access by using only HTTPS. What should you do? A.Configure the firewall to permit Internet users to access port 443 on OWA1. Configure the default Web site on OWA1 to require SSL. B. Configure the firewall to permit Internet users to access port 80 on OWA1. Configure the default Web site on Mail1 to use port 443 for SSL communications. C. Configure the firewall to allow Internet users to access port 993 on OWA1. Configure the default Web site on Mail1 to require SSL and 128-bit encryption. D. Configure the firewall to allow Internet users to access port 143 on OWA1.Configure the Exchange HTTP virtual s Answer: A 19.You are the Exchange administrator for your company. The Exchange organization contains two Exchange routing groups. Each routing group contains four Exchange server 2003 computers, one Exchange server in each routing group hosts a routing group connector. The company's service Level Agreement (SEA) states that internal e-mail service should not be disrupted by the failure of a single Exchange server. You need to ensure that e-mail messages are delivered between the two routing groups even if one of the Exchange servers fails. You want to achieve this goal by using the minimum amount of administrative effort. What should you do? A. In each routing group, configure an additional SMTP virtual server on one Exchange server that is not used by the routing group connector. B. In each routing group, create an SMTP connector that forwards all mail for the SMTP address space of "*" to the bridgehead server in the other routing group. C. On the properties of each routing group connector, add an SMTP virtual server from another Exchange server. D. On an Exchange server that does not host the routing group connector, create an additional routing group connector and use the same local and remote SMTP virtual servers that are used by the existing routing group connector. Answer: D 20.You are the Exchange administrator for your company. The Exchange organization contains a single server that runs Exchange server 2003. Users send many order confirmations and order acknowledgement receipts to customers by using e-mail, users report that they are not being notified quickly enough when a message to an external customer is not deliverable. You need to ensure that when a message is not delivered within one hour, a notification is sent to the message originator. How should you configure the SMTP virtual server? A. Configure the local delay notification to one hour. B. Configure the local expiration timeout to one hour. C. Configure the subsequent retry interval to one hour. D. Configure the outbound delay notification to one hour. Answer: D
70-284 Study Guide More Details
70-536 self-study training
Free 70-536 exam Questions and Answers
It is well known that 70-536 exam test is the hot exam of Microsoft certification. Exam Code: 70-536, Exam Name: TS:MS.NET Framework 2.0-Application Develop Foundation.
Here we offer a free trial part of the 70-536 exam (Including questions and answers). This will be your best 70-536 self-study training. You can check out the interface, question quality and usability of our practice exams before you decide to buy it.
If you need to buy, please visit here 70-536.
If you need to buy Microsoft certification in other subjects, please visit here Microsoft certification.
Free 70-536 Questions and Answers Demo
1.You are writing a custom dictionary. The custom-dictionary class is named MyDictionary. You need to ensure that the dictionary is type safe. Which code segment should you use? A. class MyDictionary : DictionaryB. class MyDictionary : HashTable C. class MyDictionary : IDictionary D. class MyDictionary { ... } Dictionary t = new Dictionary (); MyDictionary dictionary = (MyDictionary)t; Answer: A 2.You are creating a class named Age. You need to ensure that the Age class is written such that collections of Age objects can be sorted. Which code segment should you use? A. public class Age { public int Value; public object CompareTo(object obj) { if (obj is Age) { Age _age = (Age) obj; return Value.CompareTo(obj); } throw new ArgumentException("object not an Age"); } } B. public class Age { public int Value; public object CompareTo(int iValue) { try { return Value.CompareTo(iValue); } catch { throw new ArgumentException ("object not an Age"); } } } C. public class Age : IComparable { public int Value; public int CompareTo(object obj) { if (obj is Age) { Age _age = (Age) obj; return Value.CompareTo(_age.Value); } throw new ArgumentException("object not an Age"); } } D. public class Age : IComparable { public int Value; public int CompareTo(object obj) { try { return Value.CompareTo(((Age) obj).Value); } catch { return -1; } } } Answer: C 3.You are creating a class to compare a specially-formatted string. The default collation comparisons do not apply. You need to implement the IComparable interface. Which code segment should you use? A. public class Person : IComparable { public int CompareTo(string other){ ... }} B. public class Person : IComparable { public int CompareTo(object other){ ... }} C. public class Person : IComparable { public bool CompareTo(string other){ ... }} D. public class Person : IComparable { public bool CompareTo(object other){ ... }} Answer: A 4.You are developing a custom-collection class. You need to create a method in your class. You need to ensure that the method you create in your class returns a type that is compatible with the Foreach statement. Which criterion should the method meet? A. The method must return a type of either IEnumerator or IEnumerable. B. The method must return a type of IComparable. C. The method must explicitly contain a collection. D. The method must be the only iterator in the class. Answer: A 5.You are developing an application to assist the user in conducting electronic surveys. The survey consists of 25 true-or-false questions. You need to perform the following tasks: Initialize each answer to true.Minimize the amount of memory used by each survey. Which storage option should you choose? A. BitVector32 answers = new BitVector32(1); B. BitVector32 answers = new BitVector32(-1); C. BitArray answers = new BitArray (1); D. BitArray answers = new BitArray(-1); Answer: B 6.You need to identify a type that meets the following criteriA. ? Is always a number.? Is not greater than 65,535. Which type should you choose? A. System.UInt16 B. int C. System.String D. System.IntPtr Answer: A 7.You are developing a custom event handler to automatically print all open documents. The event handler helps specify the number of copies to be printed. You need to develop a custom event arguments class to pass as a parameter to the event handler. Which code segment should you use? A. public class PrintingArgs { private int copies; public PrintingArgs(int numberOfCopies) { this.copies = numberOfCopies; } public int Copies { get { return this.copies; } }} B. public class PrintingArgs : EventArgs { private int copies; public PrintingArgs(int numberOfCopies) { this.copies = numberOfCopies; } public int Copies { get { return this.copies; } }} C. public class PrintingArgs { private EventArgs eventArgs; public PrintingArgs(EventArgs ea) { this.eventArgs = ea; } public EventArgs Args {get { return eventArgs; }}} D. public class PrintingArgs : EventArgs { private int copies;} Answer: B 8.You write a class named Employee that includes the following code segment. public class Employee {string employeeId, employeeName, jobTitleName; public string GetName() { return employeeName; } public string GetTitle() { return jobTitleName; } You need to expose this class to COM in a type library. The COM interface must also facilitate forward-compatibility across new versions of the Employee class. You need to choose a method for generating the COM interface. What should you do? A. Add the following attribute to the class definition. [ClassInterface(ClassInterfaceType.None)]public class Employee {} B. Add the following attribute to the class definition. [ClassInterface(ClassInterfaceType.AutoDual)]public class Employee {} C. Add the following attribute to the class definition. [ComVisible(true)]public class Employee {} D. Define an interface for the class and add the following attribute to the class definition. [ClassInterface(ClassInterfaceType.None)]public class Employee : IEmployee {} Answer: D 9.You need to call an unmanaged function from your managed code by using platform invoke services. What should you do? A. Create a class to hold DLL functions and then create prototype methods by using managed code. B. Register your assembly by using COM and then reference your managed code from COM. C. Export a type library for your managed code. D. Import a type library as an assembly and then create instances of COM object. Answer: A 10.You write the following code to call a function from the Win32 Application Programming Interface (API) by using platform invoke. You need to define a method prototype. Which code segment should you use? A. [DllImport("user32")]public static extern int MessageBox(int hWnd, String text, String caption, uint type); B. [DllImport("user32")] public static extern int MessageBoxA(int hWnd,String text, String caption, uint type); C. [DllImport("user32")] public static extern int Win32API_User32_MessageBox(int hWnd, String text, String caption, uint type); D. [DllImport(@"C. \WINDOWS\system32\user32.dll")] public static extern int MessageBox(int hWnd, String text, String caption, uint type); Answer: A 11.You create an application to send a message by e-mail. An SMTP server is available on the local subnet. The SMTP server is named smtp.contoso.com. To test the application, you use a source address, me@contoso.com, and a target address, you@contoso.com. You need to transmit the e-mail message. Which code segment should you use? A. MailAddress addrFrom = new MailAddress("me@contoso.com", "Me"); MailAddress addrTo = new MailAddress("you@contoso.com", "You"); MailMessage message = new MailMessage(addrFrom, addrTo); message.Subject = "Greetings!";message.Body = "Test";message.Dispose(); B. string strSmtpClient = "smtp.contoso.com"; string strFrom = "me@contoso.com"; string strTo = "you@contoso.com"; string strSubject = "Greetings!"; string strBody = "Test"; MailMessage msg = new MailMessage(strFrom, strTo, strSubject, strSmtpClient); C. MailAddress addrFrom = new MailAddress("me@contoso.com"); MailAddress addrTo = new MailAddress("you@contoso.com"); MailMessage message = new MailMessage(addrFrom, addrTo); message.Subject = "Greetings!"; message.Body = "Test"; SmtpClient client = new SmtpClient("smtp.contoso.com"); client.Send(message); D. MailAddress addrFrom = new MailAddress("me@contoso.com", "Me"); MailAddress addrTo = new MailAddress("you@contoso.com", "You"); MailMessage message = new MailMessage(addrFrom, addrTo); message.Subject = "Greetings!"; message.Body = "Test"; SocketInformation info = new SocketInformation(); Socket client = new Socket(info); System.Text.ASCIIEncoding enc = new System.Text.ASCIIEncoding(); byte[] msgBytes = enc.GetBytes(message.ToString()); client.Send(msgBytes); Answer: C 12.You need to create a dynamic assembly named MyAssembly. You also need to save the assembly to disk. Which code segment should you use? A. AssemblyName myAssemblyName = new AssemblyName(); myAssemblyName.Name = "MyAssembly"; AssemblyBuilder myAssemblyBuilder =AppDomain.CurrentDomain.DefineDynamicAssembly (myAssemblyName, AssemblyBuilderAccess.Run); myAssemblyBuilder.Save("MyAssembly.dll"); B. AssemblyName myAssemblyName = new AssemblyName();myAssemblyName.Name = "MyAssembly"; AssemblyBuilder myAssemblyBuilder =AppDomain.CurrentDomain.DefineDynamicAssembly (myAssemblyName, AssemblyBuilderAccess.Save); myAssemblyBuilder.Save("MyAssembly.dll"); C. AssemblyName myAssemblyName =new AssemblyName(); AssemblyBuilder myAssemblyBuilder = AppDomain.CurrentDomain.DefineDynamicAssembly (myAssemblyName, AssemblyBuilderAccess.RunAndSave); myAssemblyBuilder.Save("MyAssembly.dll"); D. AssemblyName myAssemblyName =new AssemblyName("MyAssembly"); AssemblyBuilder myAssemblyBuilder =AppDomain.CurrentDomain.DefineDynamicAssembly (myAssemblyName, AssemblyBuilderAccess.Save); myAssemblyBuilder.Save("C. \\MyAssembly.dll"); Answer: B 13.You need to write a code segment that performs the following tasks: ? Retrieves the name of each paused service. ? Passes the name to the Add method of Collection1. Which code segment should you use? A. ManagementObjectSearcher searcher = new ManagementObjectSearcher("Select * from Win32_Service where State = 'Paused'"); foreach (ManagementObject svc in searcher.Get()) {Collection1.Add(svc["DisplayName"]); } B. ManagementObjectSearcher searcher = new ManagementObjectSearcher("Select * from Win32_Service", "State = 'Paused'"); foreach (ManagementObject svc in searcher.Get()) { Collection1.Add(svc["DisplayName"]);} C. ManagementObjectSearcher searcher = new ManagementObjectSearcher( "Select * from Win32_Service"); foreach (ManagementObject svc in searcher.Get()) {if ((string) svc["State"] == "'Paused'") {Collection1.Add(svc["DisplayName"]); }} D. ManagementObjectSearcher searcher =new ManagementObjectSearcher(); searcher.Scope = new ManagementScope("Win32_Service"); foreach (ManagementObject svc in searcher.Get()) {if ((string)svc["State"] == "Paused") {Collection1.Add(svc["DisplayName"]); }} Answer: A 14.Your company uses an application named Application1 that was compiled by using the .NET Framework version 1.0. The application currently runs on a shared computer on which the .NET Framework versions 1.0 and 1.1 are installed. You need to move the application to a new computer on which the .NET Framework versions 1.1 and 2.0 are installed. The application is compatible with the .NET Framework 1.1, but it is incompatible with the .NET Framework 2.0. You need to ensure that the application will use the .NET Framework version 1.1 on the new computer. What should you do? A. Add the following XML element to the application configuration file. B. Add the following XML element to the application configuration file. C. Add the following XML element to the machine configuration file. D. Add the following XML element to the machine configuration file. Answer: A 15.You are using the Microsoft Visual Studio 2005 IDE to examine the output of a method that returns a string. You assign the output of the method to a string variable named fName. You need to write a code segment that prints the following on a single line The message. "Test Failed. " The value of fName if the value of fName does not equal "John" You also need to ensure that the code segment simultaneously facilitates uninterrupted execution of the application. Which code segment should you use? A. Debug.Assert(fName == "John", "Test FaileD. ", fName); B. Debug.WriteLineIf(fName != "John", fName, "Test Failed"); C. if (fName != "John") {Debug.Print("Test FaileD. "); Debug.Print(fName); } D. if (fName != "John") {Debug.WriteLine("Test FaileD. "); Debug.WriteLine(fName); } Answer: B 16.You are creating an application that lists processes on remote computers. The application requires a method that performs the following tasks: Accept the remote computer name as a string parameter named strComputer.Return an ArrayList object that contains the names of all processes that are running on that computer. You need to write a code segment that retrieves the name of each process that is running on the remote computer and adds the name to the ArrayList object. Which code segment should you use? A. ArrayList al = new ArrayList(); Process[] procs = Process.GetProcessesByName(strComputer); foreach (Process proc in procs) { al.Add(proc);} B. ArrayList al = new ArrayList(); Process[] procs = Process.GetProcesses(strComputer); foreach (Process proc in procs) { al.Add(proc);} C. ArrayList al = new ArrayList(); Process[] procs = Process.GetProcessesByName(strComputer); foreach (Process proc in procs) {al.Add(proc.ProcessName);} D. ArrayList al = new ArrayList(); Process[] procs = Process.GetProcesses(strComputer); foreach (Process proc in procs) {al.Add(proc.ProcessName);} Answer: D 17.You are testing a newly developed method named PersistToDB. This method accepts a parameter of type EventLogEntry. This method does not return a value. You need to create a code segment that helps you to test the method. The code segment must read entries from the application log of local computers and then pass the entries on to the PersistToDB method. The code block must pass only events of type Error or Warning from the source MySource to the PersistToDB method. Which code segment should you use? A. EventLog myLog = new EventLog("Application", "."); foreach (EventLogEntry entry in myLog.Entries) {if (entry.Source == "MySource") { PersistToDB(entry); } } B. EventLog myLog = new EventLog("Application", "."); myLog.Source = "MySource"; foreach (EventLogEntry entry in myLog.Entries) { if (entry.EntryType == (EventLogEntryType.Error & EventLogEntryType.Warning)) { PersistToDB(entry); }} C. EventLog myLog = new EventLog("Application", "."); foreach (EventLogEntry entry in myLog.Entries) { if (entry.Source == "MySource") {if (entry.EntryType == EventLogEntryType.Error || entry.EntryType == EventLogEntryType.Warning) {PersistToDB(entry); } }} D. EventLog myLog = new EventLog("Application", "."); myLog.Source = "MySource"; foreach (EventLogEntry entry in myLog.Entries) {if (entry.EntryType == EventLogEntryType.Error || entry.EntryType == EventLogEntryType.Warning) {PersistToDB(entry); } Answer: C 18.You are creating an application that retrieves values from a custom section of the application configuration file. The custom section uses XML as shown in the following block. You need to write a code segment to define a class named Role. You need to ensure that the Role class is initialized with values that are retrieved from the custom section of the configuration file. Which code segment should you use? A. public class Role : ConfigurationElement { internal string _ElementName = "name"; [ConfigurationProperty("role")] public string Name { get { return ((string)base["role"]); } } } B. public class Role : ConfigurationElement { internal string _ElementName = "role"; [ConfigurationProperty("name", RequiredValue = true)] public string Name { get { return ((string)base["name"]); } } } C. public class Role : ConfigurationElement { internal string _ElementName = "role"; private string _name; [ConfigurationProperty("name")] public string Name { get { return _name; } } } D. public class Role : ConfigurationElement { internal string _ElementName = "name"; private string _name; [ConfigurationProperty("role", RequiredValue = true)] public string Name { get { return _name; } } } Answer: B 19.You need to generate a report that lists language codes and region codes. Which code segment should you use? A. foreach (CultureInfo culture in CultureInfo.GetCultures(CultureTypes.SpecificCultures)) { // Output the culture information...} B. CultureInfo culture = new CultureInfo(""); CultureTypes types = culture.CultureTypes; // Output the culture information... C. foreach (CultureInfo culture in CultureInfo.GetCultures(CultureTypes.NeutralCultures)) { // Output the culture information...} D. foreach (CultureInfo culture in CultureInfo.GetCultures(CultureTypes.ReplacementCultures)) { // Output the culture information...} Answer: A 20.You create an application that stores information about your customers who reside in various regions. You are developing internal utilities for this application. You need to gather regional information about your customers in Canada. Which code segment should you use? A. foreach (CultureInfo culture in CultureInfo.GetCultures(CultureTypes.SpecificCultures)) { // Output the region information...} B. CultureInfo cultureInfo = new CultureInfo("CA"); // Output the region information... C. RegionInfo regionInfo = new RegionInfo("CA"); // Output the region information... D. RegionInfo regionInfo = new RegionInfo("");if (regionInfo.Name == "CA") { // Output the region information...} Answer: C
70-536 Study Guide More Details
70-503 self-study training
Free 70-503 exam Questions and Answers
It is well known that 70-503 exam test is the hot exam of Microsoft certification. Exam Code: 70-503, Exam Name: TS: Microsoft .NET Framework 3.5 C Windows Communication Foundation.
Here we offer a free trial part of the 70-503 exam (Including questions and answers). This will be your best 70-503 self-study training. You can check out the interface, question quality and usability of our practice exams before you decide to buy it.
If you need to buy, please visit here 70-503.
If you need to buy Microsoft certification in other subjects, please visit here Microsoft certification.
Free 70-503 Questions and Answers Demo
1. You are creating a Windows Communication Foundation service by using Microsoft .NET Framework
3.5. You have successfully defined a service contract named IManageOrders.
You write the following code segment.
public class OrderImpl : IManageOrders {
public void MarkOrderClosed(int orderId){
try {
...
}
catch (SqlException exc){
throw new FaultException(new DataFault());
}
}
}
[DataContract]
public class DataFault {
}
You need to create a fault contract for the MarkOrderClosed method on the IManageOrders service
contract.
Which code segment should you add?
A. [FaultContract(typeof(DataFault))]
B. [FaultContract(typeof(Exception))]
C. [FaultContract(typeof(SqlException))]
D. [FaultContract(typeof(FaultException))]
Answer: A
2. You are creating a Windows Communication Foundation service by using Microsoft .NET Framework
3.5. You have successfully defined a service contract named IManageOrders.
You write the following code segment.
Public Class OrderImpl
Implements IManageOrders
Public Sub MarkOrderClosed(ByVal orderId As Integer) _
Implements IManageOrders.MarkOrderClosed
Try
...
Catch ex As SqlException
Throw New FaultException(Of DataFault)( _
New DataFault())
End Try
End Sub
End Class
_
Public Class DataFault
End Class
You need to create a fault contract for the MarkOrderClosed method on the IManageOrders service
contract.
Which code segment should you add?
A.
B.
C.
D.
Answer: A
3. You have created a Windows Communication Foundation service by using Microsoft .NET Framework
3.5.
The existing service interface is named IMyService, and contains the following code segment.
[ServiceContract(Name="SvcOrder",
?Namespace="http://contoso.com/services")]
public interface IMyService
{
[OperationContract]
void DoSomething();
}
You create a new service named IMyServiceV1 that contains an operation named DoSomethingElse.
You need to ensure that existing client applications are still able to access the IMyService.DoSomething
method without modifying client code.
Which code segment should you use?
A. [ServiceContract(Namespace="http:?//contoso.com/services/V1")]
public interface IMyServiceV1 : IMyService
{
[OperationContract]
void DoSomethingElse();
}
B. [ServiceContract(Name="SvcOrder")]
public interface IMyServiceV1 : IMyService
{
[OperationContract]
void DoSomethingElse();
}
C. [ServiceContract(Name="SvcOrderV1",
Namespace="http: //contoso.com/services")]
public interface IMyServiceV1 : IMyService
{
[OperationContract]
void DoSomethingElse();
}
D. [ServiceContract(Name="SvcOrder",
Namespace="http: //contoso.com/services")]
public interface IMyServiceV1 : IMyService
{
[OperationContract]
void DoSomethingElse();
}
Answer: D
4. You have created a Windows Communication Foundation service by using Microsoft .NET Framework
3.5.
The existing service interface is named IMyService, and contains the following code segment.
_
Public Interface IMyService
_
Sub DoSomething()
End Interface
You create a new service named IMyServiceV1 that contains an operation named DoSomethingElse.
You need to ensure that existing client applications are still able to access the IMyService.DoSomething
method without modifying client code.
Which code segment should you use?
A. _
Public Interface IMyServiceV1
Inherits IMyService
_
Sub DoSomethingElse()
End Interface
B. _
Public Interface IMyServiceV1
Inherits IMyService
_
Sub DoSomethingElse()
End Interface
C. _
Public Interface IMyServiceV1
Inherits IMyService
_
Sub DoSomethingElse()
End Interface
D. _
Public Interface IMyServiceV1
Inherits IMyService
_
Sub DoSomethingElse()
End Interface
Answer: D
5. You create a Windows Communication Foundation service by using Microsoft .NET Framework 3.5.
The service contains the following code segment.
[DataContract]
public class Person
{
}
[DataContract]
public class Customer : Person
{
}
You need to create a service contract that meets the following requirements:
The service contract must have an operation contract named GetPerson that returns an object of type
Person.
The GetPerson operation must be able to return an object of type Customer.
Which code segment should you use?
A. [ServiceContract]
[ServiceKnownType("GetPerson")]
public interface IMyService
{
[OperationContract]
Person GetPerson();
}
B. [ServiceContract]
public interface IMyService
{
[OperationContract]
[ServiceKnownType("Customer")]
Person GetPerson();
}
C. [ServiceContract]
[ServiceKnownType(typeof(Customer))]
public interface IMyService
{
[OperationContract]
Person GetPerson();
}
D. [ServiceContract]
[ServiceKnownType("GetPerson",typeof(Customer))]
public interface IMyService
{
[OperationContract]
Person GetPerson();
}
Answer: C
6. You create a Windows Communication Foundation service by using Microsoft .NET Framework 3.5.
The service contains the following code segment.
_
Public Class Person
...
End Class
_
Public Class Customer
Inherits Person
...
End Class
You need to create a service contract that meets the following requirements:
The service contract must have an operation contract named GetPerson that returns an object of type
Person.
The GetPerson operation must be able to return an object of type Customer.
Which code segment should you use?
A. _
_
Public Interface IMyService
_
Function GetPerson() As Person
End Interface
B. _
Public Interface IMyService
_
_
Function GetPerson() As Person
End Interface
C. _
_
Public Interface IMyService
_
Function GetPerson() As Person
End Interface
D. _
_
Public Interface IMyService
_
Function GetPerson() As Person
End Interface
Answer: C
7. You create a Windows Communication Foundation (WCF) service by using Microsoft .NET Framework
3.5.
The WCF service contains two operations named ProcessSimpleOrder and ProcessComplexOrder.
You need to expose the ProcessSimpleOrder operation to all the client applications. You also need to
expose the ProcessComplexOrder operation only to specific client applications.
Which code segment should you use?
A. [ServiceContract]
public interface IOrderManager
{
[OperationContract(Action="*")]
void ProcessSimpleOrder();
[OperationContract]
void ProcessComplexOrder();
}
B. [ServiceContract]
public interface IOrderManager
{
[OperationContract(Name="http: //contoso.com/Simple")]
void ProcessSimpleOrder();
[OperationContract(Name="http: //contoso.com/Complex")]
void ProcessComplexOrder();
}
C. [ServiceContract]
public interface ISimpleOrderManager
{
[OperationContract]
void ProcessSimpleOrder();
}
[ServiceContract]
public interface IComplexOrderManager: ISimpleOrderManager
{
[OperationContract]
void ProcessComplexOrder();
}
D. [ServiceContract]
public interface ISimpleOrderManager
{
[OperationContract(Name="http: //contoso.com/Simple")]
void ProcessSimpleOrder();
}
public interface IComplexOrderManager: ISimpleOrderManager
{
[OperationContract(Name="http: //contoso.com/Complex")]
void ProcessComplexOrder();
}
Answer: C
8. You create a Windows Communication Foundation (WCF) service by using Microsoft .NET Framework
3.5.
The WCF service contains two operations named ProcessSimpleOrder and ProcessComplexOrder.
You need to expose the ProcessSimpleOrder operation to all the client applications. You also need to
expose the ProcessComplexOrder operation only to specific client applications.
Which code segment should you use?
A. _
Public Interface IOrderManager
_
Sub ProcessSimpleOrder()
_
Sub ProcessComplexOrder()
End Interface
B. _
Public Interface IOrderManager
_
Sub ProcessSimpleOrder()
_
Sub ProcessComplexOrder()
End Interface
C. _
Public Interface ISimpleOrderManager
_
Sub ProcessSimpleOrder()
End Interface
_
Public Interface IComplexOrderManager
Inherits ISimpleOrderManager
_
Sub ProcessComplexOrder()
End Interface
D. _
Public Interface ISimpleOrderManager
_
Sub ProcessSimpleOrder()
End Interface
Public Interface IComplexOrderManager
Inherits ISimpleOrderManager
_
Sub ProcessComplexOrder()
End Interface
Answer: C
9. You are creating a Windows Communication Foundation service by using Microsoft .NET Framework
3.5. The service will contain an enumeration named OrderState.
The OrderState enumeration will contain the following four values:
Processing
Cancelled
Confirmed
Closed
The client application must be able to set the state of an Order entity to only the following two values:
Cancelled
Closed
You need to create the data contract for OrderState.
Which code segment should you use?
A. [DataContract]
public enum OrderState
{
Processing=1,
[DataMember]
Cancelled=2,
[DataMember]
Confirmed=3,
Closed=4
}
B. [DataContract]
public enum OrderState
{
Processing=1,
[EnumMember]
Cancelled=2,
Confirmed=3,
[EnumMember]
Closed=4
}
C. [DataContract]
public enum OrderState
{
[EnumMember(Value="False")]
Processing=1,
[EnumMember(Value="True")]
Cancelled=2,
[EnumMember(Value="True")]
Confirmed=3,
[EnumMember(Value="False")]
Closed=4
}
D. [DataContract]
public enum OrderState
{
[DataMember]
Processing=1,
[DataMember(IsRequired=true)]
Cancelled=2,
[DataMember]
Confirmed=3,
[DataMember(IsRequired=true)]
Closed=4
}
Answer: B
10. You are creating a Windows Communication Foundation service by using Microsoft .NET Framework
3.5. The service will contain an enumeration named OrderState.
The OrderState enumeration will contain the following four values:
Processing
Cancelled
Confirmed
Closed
The client application must be able to set the state of an Order entity to only the following two values:
Cancelled
Closed
You need to create the data contract for OrderState.
Which code segment should you use?
A. _
Public Enum OrderState
Processing = 1
_
Cancelled = 2
_
Confirmed = 3
Closed = 4
End Enum
B. _
Public Enum OrderState
Processing = 1
_
Cancelled = 2
Confirmed = 3
_
Closed = 4
End Enum
C. _
Public Enum OrderState
_
Processing = 1
_
Cancelled = 2
_
Confirmed = 3
_
Closed = 4
End Enum
D. _
Public Enum OrderState
_
Processing = 1
_
Cancelled = 2
_
Confirmed = 3
_
Closed = 4
End Enum
Answer: B
70-503 Study Guide More Details
MB7-225 self-study training
Free MB7-225 exam Questions and Answers
It is well known that MB7-225 exam test is the hot exam of Microsoft certification. Exam Code: MB7-225, Exam Name: Navision 4.0 Financials.
Here we offer a free trial part of the MB7-225 exam (Including questions and answers). This will be your best MB7-225 self-study training. You can check out the interface, question quality and usability of our practice exams before you decide to buy it.
If you need to buy, please visit here MB7-225.
If you need to buy Microsoft certification in other subjects, please visit here Microsoft certification.
Free MB7-225 Questions and Answers Demo
1. General Business Posting Groups are: A. Set up in the Financial Management area. B. Are assigned to Vendor Cards. C. Are assigned to Item Cards. D. Are assigned to Resource Cards. Answer: AB 2. Before you assign General Product Posting Groups to items, resources, and item charges, you must: A. Create general product groups B. Create items, resources, and item charges C. Set up General Business posting Groups D. Set up customers and vendors Answer: AB 3. You have posted a sales invoice with a Payment Method Code that has a balancing account. What is the effect on the customer ledger entries? A. Only an invoice customer ledger entry is posted. B. Only a payment customer ledger entry is posted. C. An invoice customer ledger entry and a payment customer ledger entry are posted. The payment is fully applied to the invoice entry, closing both entries. D. An invoice customer ledger entry and a payment customer ledger entry are posted. You must manually apply the entries to each other. Answer: C 4. There are several Balancing fields that are available to track the application at the bottom of the Apply Vendor Entries window. Mark the fields that ARE balancing fields. A. Appln. Currency B. Amount to Apply C. Available Amount D. Invoice Discount Answer: ABC 5. In using Vendor Priority, the Suggest Vendor Payments batch job applies the following rules to determine which invoices to suggest: A. Only vendor entries that can be paid fully are suggested. B. All Priority 1 vendor entries that can be fully paid within the Available Amount (LCY) are suggested first. C. If no priority 1 vendors have documents that can be fully paid, the batch job will not suggest any payments at all. D. Any vendor entries that are due within the specified time period. Answer: AB 6. Setting up a depreciation book duplication list will allow you to: A. Allocate depreciation expenses between different G/L accounts. B. Create and post the same fixed asset entry in multiple depreciation books. C. Allocate depreciation expenses between different dimension values. D. Post fixed asset entries directly to the general ledger. Answer: B 7. When you activate the additional reporting currency and convert the existing G/L entries to additional reporting currency (ACY), what exchange rate(s) is/are used? A. Each entry is converted using the LCY to ACY exchange rate that exists at the posting date of the entry. B. All entries are converted using the LCY to ACY exchange rate that exists at the posting date of the latest entry. C. All entries are converted using the LCY to ACY exchange rate that exists at the work date. D. All entries are converted using the LCY to ACY exchange rate that exists at the posting date of the oldest entry. Answer: C 8. A Dimension is used for the following: A. Grouping similar types B. Indicating type of data being entered C. Specifying the G/L account D. Analyzing similar characteristics with potential for multiple combinations Answer: ABD 9. When you have selected the Recurring Method of Reversing Fixed on a recurring journal line, the program will post a reversing entry on what date? A. The Posting Date + one month B. The same date as the Posting Date on the journal line C. The date after the Posting Date on the journal line D. The Posting Date + the date formula in the Recurring Frequency field Answer: C 10. Which posting groups are combined in the General Posting Setup table? A. General Business Posting Group B. Customer Posting Group C. General Product Posting Group D. Vendor Posting Group Answer: AC 11. Which of the following statements is TRUE about dimensions? A. All dimensions are stored directly on the G/L entries. B. Only global dimensions are stored directly on the G/L entries. C. Only budget dimensions are stored directly on the G/L entries. D. Only shortcut dimensions are stored directly on the G/L entries. Answer: B 12. What is the effect of using the Insert Conv. LCY Rndg. Lines function in journals? A. The function replaces all currency amounts in the journal with LCY amounts. B. The function posts rounding differences to a currency residual account. C. The function inserts a foreign currency journal line that ensures that the journal is balanced both in foreign currency and LCY. D. The function inserts a LCY journal line that ensures that the journal is balanced both in foreign currency and LCY. Answer: D 13. Your client wants all posted customer entries to contain the SALES Department Code. You can achieve this by using A. Dimension Combinations B. Analysis Views C. Account Type Default Dimensions D. Default Dimension Priorities Answer: C 14. When you set up your Business Posting Groups you must consider: A. How many groups you need for breaking down sales by customer. B. How many groups you need for breaking down purchases by vendor. C. How many groups you need for breaking down sales by products. D. How many groups you need for breaking down purchases by products. Answer: AB 15. You are posting a journal line with a check mark in the Correction field and the Amount field containing a positive number. How will the amount be posted to the G/L Accounts? A. The amount will be posted as a positive credit amount B. The amount will be posted as a negative credit amount C. The amount will be posted as a negative debit amount D. The amount will be posted as a positive debit amount Answer: B 16. When you set up your General Product Posting Groups you must consider: A. How many groups you need for breaking down purchases by products. B. How many groups you need for breaking down sales by customer. C. How many groups you need for breaking down purchases by vendor. D. How many groups you need for breaking down sales by different products. Answer: AD 17. Your client wants the program to automatically assign a set of dimensions to every transaction posted for a specific customer. This is achieved by setting up: A. Dimension Combinations B. Default Dimensions C. Dimension Value Combinations D. Shortcut Dimensions Answer: B 18. What field must equal zero before you can post a General Journal? A. Balance B. Balance Account No. C. Total Balance D. Amount Answer: C 19. What are the three layers of the journal entry system? A. Journal Batches, Journal Entries, G/L Registers B. Journal Batches, Journal Entries, Account Schedules C. General Journals, Recurring Journals, Journal Entries D. Journal Templates, Journal Batches, Journal Entries Answer: D 20. Specific Posting Groups can be assigned to a: A. Customer Card B. Item Card C. General Posting Group D. General Posting Setup Answer: AB
MB7-225 Study Guide More Details
MB7-226 self-study training
Free MB7-226 exam Questions and Answers
It is well known that MB7-226 exam test is the hot exam of Microsoft certification. Exam Code: MB7-226, Exam Name: Navision 4.0 Installation & Configuration.
Here we offer a free trial part of the MB7-226 exam (Including questions and answers). This will be your best MB7-226 self-study training. You can check out the interface, question quality and usability of our practice exams before you decide to buy it.
If you need to buy, please visit here MB7-226.
If you need to buy Microsoft certification in other subjects, please visit here Microsoft certification.
Free MB7-226 Questions and Answers Demo
1. What is the responsibility of the Navision client? A. User interface. B. Executing all the business logic. C. Controls access to the data through locking. D. Connect directly to a standard database file without going through the server. Answer: ABD 2. What is the most important tool for monitoring the performance of your application? A. the application monitor B. the server monitor C. the client monitor D. time measurements Answer: C 3. Navision can be described by which of these solutions? A. multi-tier B. two-tier C. client-server D. three-tier Answer: BC 4. Which server options does Navision allow? A. Windows 2000 Server B. Microsoft SQL Server C. Navision Database Server D. Win-Serv Answer: BC 5. You are preparing to do your first Navision database backup. What are some advantages of using the Navision client based backup function? A. The system tests the database for errors, so incorrect information is not copied to a backup. B. The data is not compressed, allowing for faster recovery. C. You can continue to work in Navision while you are making a backup. D. The system compares the tables against the last backup and only copies information that has been changed. Answer: AC 6. CUSTOM SETUP, from the Installation Wizard, offers a number of specific FEATURES. Which of the following is NOT one of them? A. Navision Toolbar For Outlook B. Object Designer C. HELP D. MDAC Answer: B 7. What Navision files are removed from the computer during the uninstall process? A. All files related to Navision are removed. B. Only selected features are removed. C. All Navision files except locally stored licenses, databases and database backups are removed. D. All files related Navision are moved to the Recycle Bin in case the uninstall was made by mistake. Answer: C 8. What two properties have a positive impact in an effort to speed up Navision's response time? A. Commit Cache B. NetType C. Object Cache D. TempPath Answer: AC 9. Which type of installation is recommended for a Navision single user workstation? A. minimum B. maximum C. complete D. typical Answer: C 10. You are 80% finished doing a client install and realize you are installing on the wrong computer. You attempt to cancel the installation, what happens to the portions of the program already installed? A. Nothing, you can not stop the installation process once it begins. B. Nothing, the installed portions stay in the program folders in case you reinstall at a later time. C. The installed files are moved to the temporary folder so they can be accessed in case of another installation attempt. D. Microsoft Installer will perform a rollback and restore the computer to the state it was in before the installation began. Answer: D 11. When starting Navision, and opening a specific database, which of the following statements are true? A. You must enter an ID and password regardless of the Authentication method you select. (Database server authentication or Windows authentication) B. You can open and work in more than one company at a time. C. You must enter an ID and password only if using the Windows Authentication method. D. You must enter an ID and password only if using the Database Authentication method. Answer: D 12. When using the Microsoft Installer to make changes to the setup configuration, which of the statements are incorrect? A. A description of the selected feature is given on the right side of the screen. B. Click on a Feature Icon to display drop down list of options. C. Click on HELP will describe the different feature install options. D. Click on PATH to change the target path of the installation. Answer: D 13. What are the types of Predicates in Where Clauses? A. WHERE Clause BETWEEN Predicate B. WHERE Clause IN Predicate C. WHERE Clause LIKE Predicate D. WHERE Clause SELECT Predicate Answer: ABC 14. Which statement retrieves data from one or more tables? A. SELECT B. UPDATE C. INSERT D. FIND Answer: A 15. In the a-z,A-Z,0-9,_ Identifier option, how would the Sales (LCY) field be transferred over as with the Navision ODBC Driver? A. Sales__LCY_ B. Sales_(LCY) C. Sales (LCY) D. Sales(LCY) Answer: A 16. If you make changes to program properties, what notifies the Navision Database Server about the changes? A. SQL Server Enterprise Manager B. Navision Database Server Manager C. Navision Enterprise Manager D. Navision Server Manager Answer: B 17. Which clause makes it possible to specify conditions on Navision grouped data so as to eliminate some of them and include the rest in the output. A. Predicates in Where B. Order by C. Group by D. Having Answer: D 18. In the All Except Space Identifier option, how would the Profit % field be transferred? A. Profit% B. Profit % C. Profit_PCT D. Profit_% Answer: D 19. Which of the following is a programming language that is specially designed for queries in databases? A. C++ B. SQL C. Visual Basic D. C/AL Answer: B 20. The Integration tab contains database settings that affect the way Navision integrates with SQL Server and external tools. Which of the following are valid options? A. Maintain Views B. Maintain Integrity C. Synchronize D. Maintain Extents Answer: AC
MB7-226 Study Guide More Details
MB6-510 self-study training
Free MB6-510 exam Questions and Answers
It is well known that MB6-510 exam test is the hot exam of Microsoft certification. Exam Code: MB6-510, Exam Name: AX 4.0 Human Resource Management.
Here we offer a free trial part of the MB6-510 exam (Including questions and answers). This will be your best MB6-510 self-study training. You can check out the interface, question quality and usability of our practice exams before you decide to buy it.
If you need to buy, please visit here MB6-510.
If you need to buy Microsoft certification in other subjects, please visit here Microsoft certification.
Free MB6-510 Questions and Answers Demo
1.You want to assemble a group of employees to address a special business need. However, you do not want the group to be part of your formal organization. Which of the following types of organization units should you create? A.A line unit. B.A line and matrix unit. C.A line unit as the parent, and then a matrix unit as the child. D.A matrix or a project unit . Correct:D 2.The company wants to improve the professional support and counseling that it offers to employees. You have been given the task of creating a matrix organization unit and assigning people to act as mentors. When you start assigning mentors to the unit, you notice that some of them are already working in one or more matrix type units. Which of the following rules apply to matrix organization units? A.A person can be affiliated to an indefinite number of matrix units. B.A person can be affiliated to a maximum of five matrix units. C.A person can be affiliated to a maximum of ten matrix units. D.A person can be affiliated to an indefinite number of matrix units, provided the person is already affiliated to a line unit. Correct:A 3.You have just moved a person to a new position in another organization unit and must now decide whether to disable the person's previous position. When a position is inactive, which of the following can you do? A.You can hire people into it as usual. B.You can move people into it if you assign a future start date. C.You cannot hire people into the position. D.You cannot change position information. Correct:C 4.The Sales department has enjoyed considerable success recently and now needs additional support with processing the new orders. To increase the number of sales support personnel, you decide to merge a Sales Administration Unit with the Sales Unit. How do you merge the two organization units into one? A.Drag a unit and drop one on another, and then click Confirm when asked, Merge? B.Select an organization unit, and select the Move option, and then indicate the unit with which you want to merge. C.Move all employees from one unit to the other, and then close the first unit. D.Right-click on a unit, and then select Merge With. Correct:B 5.Until recently, the company's Chief Executive Officer (CEO) also performed the duties of a Chief Operating Officer (COO). However, the company has just hired a new person to take over the responsibilities of the COO position. You have been given the task of creating the new COO position and must decide whether to make the position unique. For unique positions, which of the following is true? A.Only one position can be unique in a unit. B.For each position type, only one position can be unique in an organization unit. C.You cannot hire or move another employee to a unique position that is currently occupied. D.You can hire more than one employee into a unique position. Correct:C
MB6-510 Study Guide More Details
MB7-231 self-study training
Free MB7-231 exam Questions and Answers
It is well known that MB7-231 exam test is the hot exam of Microsoft certification. Exam Code: MB7-231, Exam Name: Navision 4.0 Relationship Management.
Here we offer a free trial part of the MB7-231 exam (Including questions and answers). This will be your best MB7-231 self-study training. You can check out the interface, question quality and usability of our practice exams before you decide to buy it.
If you need to buy, please visit here MB7-231.
If you need to buy Microsoft certification in other subjects, please visit here Microsoft certification.
Free MB7-231 Questions and Answers Demo
1.If you want to store the documents inside Microsoft Navision, which option do you need to specify in the Setup window? A.Disk File B.Embedded C.Network D.No setup option is needed Correct:B 2.Within Microsoft Navision Relationship Management, Synchronization can occur for the following: A.Bank Accounts, Customers, and Vendors B.Country, Currency Codes, and G/L Accounts C.G/L Accounts only D.All Master Records within Microsoft Navision Correct:A 3.What is the default Time Interval (Sec.) setting within the E-mail Logging tab? A.10 seconds B.15 seconds C.30 seconds D.60 seconds Correct:C 4.You would like the Microsoft Navision application to automatically record interactions. What types of processes will NOT record interactions? A.Print Sales and Purchase Quotes B.Print Sales and Purchase Orders C.Print Sales and Purchase Invoices D.Post Sales and Purchase Blanket Orders Correct:D 5.You have two options in the Relationship Management Setup window: Inheritance Information and Defaults Information. Which of the following override the other when both are selected or filled in? A.The default information overrides the inheritance information. B.The inheritance information overrides the default information. C.The first information to be filled in overrides. D.All original information is used as the override. Correct:B 6.The duplicate search feature in the Relationship Management area works on which of the following selections? A.Contact person only B.Contact company only C.Both contact person and company D.Only contacts that have been created as customers Correct:B 7.What is the effect if you enter a low percentage in the Search Hit field? A.A lower number gives a better chance of finding true duplicates B.The number has no effect on finding duplicates C.A higher number does not find as many true duplicates D.A lower number finds many duplicates, but many of these will not be true duplicates Correct:D 8.Your company has an opportunity to sell 20 pieces of office furniture to a potential new customer and the customer has asked for a sales quote. You would like to enter this opportunity into the system, but not yet make a customer card because the sale is in an early stage. What type of card should you make to enter the opportunity under? A.To-do B.Customer Card C.Customer Template D.Sales quotes can be entered without any codes Correct:C 9.Your company makes changes or additions to the contact card each time it is opened. You would like the system to update the data in the fields each time a change has taken place. You will want to set up your Search Index Mode field with the following selection: A.Each Time B.Manual C.Automatic D.Blurry Key Correct:C 10.Before a Sales Quote is created, what must be defined? A.A Contact B.Customer Template C.Opportunity must exist D.A Shipping Address Correct:A B C 11.The Contact Web Sources window is used for what? A.To see the last time the Contact paid their bill. B.To check the amount owed by the contact. C.To select a search engine or web site and enter in a search word that the program will use when searching for information about the contact on the Internet. D.This window is used to show all internet activity by the contact to your website to include inquiries, online sales and payments. Correct:C 12.Which field on the Contact Card contains the date of the last interaction which was successful or unsuccessful? A.Last Date Attempted B.Date of Last Interaction C.Last Date Modified D.No such field exists Correct:A 13.What function would you use if you would like to save a Sales Quote? A.Archive Document function B.Save Document function C.Restore Document function D.Log Interaction function Correct:A 14.What is the result of two or more users opening and/or modifying an interaction template attachment at the same time? A.All user changes occur when the document is imported B.No changes occur when the document is imported C.The changes of the first user to import the document will be saved D.Microsoft Navision will shut down Correct:C 15.Automatically recorded interactions primarily occur when you do the following action: A.Post All Sales Documents B.Print the various documents C.No action is needed to record interactions automatically D.Click on Posting | Record Interaction from the Document form Correct:C 16.To record a phone call as an interaction, what must be done prior to recording the interaction? A.Relationship Management must have all Number Series setup. B.The Interaction Template Code for Outgoing phone calls has been selected on the Interactions tab of the Relationship Management setup window. C.Outgoing calls should automatically be recorded. D.Manually process the telephone call in a new Microsoft Word document and save this as an attachment to the Interaction Template Correct:B 17.Your company normally assigns attachments to Interaction Templates. Select all kinds of documents that can be assigned to Interaction Templates A.New Microsoft Word Documents B.Import all types of documents C.Copy already existing attachments from other interaction templates D..pdf files Correct:A B C 18.Interaction templates are modules you use to: A.Process Interactions B.Create Interactions C.Record Interactions D.Delete Interactions Correct:B 19.You need to delete an interaction log entry from the database due to a mistake. What needs to be done to the interaction to allow deletion from the system? A.Open B.Closed C.Saved D.Canceled Correct:D 20.You would like to use Campaign Pricing to setup your promotional prices for items on your campaign. What are the 2 different methods that the program allows you to set these promotional prices? A.Freehand and annual percentage B.Percentage and straight line C.Fixed sales price and discount percentage D.Fixed sales price and freehand Correct:C
MB7-231 Study Guide More Details
MB7-227 self-study training
Free MB7-227 exam Questions and Answers
It is well known that MB7-227 exam test is the hot exam of Microsoft certification. Exam Code: MB7-227, Exam Name: Navision 4.0 Trade & Inventory Management.
Here we offer a free trial part of the MB7-227 exam (Including questions and answers). This will be your best MB7-227 self-study training. You can check out the interface, question quality and usability of our practice exams before you decide to buy it.
If you need to buy, please visit here MB7-227.
If you need to buy Microsoft certification in other subjects, please visit here Microsoft certification.
Free MB7-227 Questions and Answers Demo
1. John Smith is the person that is responsible for sales with a specific customer group. How could you set up the program to be able to identify all sales transactions relating to the customer group? A.Set up a resource code for John Smith and assign the resource code to all transactions with customers in the customer group B.Set up a human resource code for John Smith and assign the human resource code to all transactions with customers in the customer group C.Set up a customer card for John Smith and use the John Smith customer code for all transactions with the customer group D.Set up a salesperson code for John Smith and assign the salesperson code to all customers in the customer group ANSWER: d 2. What features does the purchase requisition worksheet offer? A.Calculates a current and detailed purchase order proposal plan. B.Handles stockkeeping units that are replenished by transfer and creates the corresponding transfer orders. C.Offers substitute items. D.Handles manually created purchase order proposal lines. ANSWER: abd 3. To calculate the earliest delivery date for the orders for which a customer HAS NOT requested a delivery date, the program sets the shipment date equal to the: A.Todays system date B.Current working date C.Availability date D.Planned delivery date ANSWER: b 4. Your customer is dissatisfied with the order delivery, and you agree that you will issue a compensation for this customer. What documents can you use to post entries that reflect the compensation agreement settled with the customer? A.Sales invoice B.Sales order C.Sales return order D.Finance charge memo ANSWER: abc 5. Companies would typically assign their own serial and lot numbers to items that: A.Are supplied by vendors without serial/lot numbers but are sold with serial/lot numbers. B.Are shipped by vendors to different warehouses. C.Are manufactured and sold by the company and must have serial/lot numbers. D.Items are shipped to customers from different locations. ANSWER: ac 6. Your company needs to make inventory transfers from one warehouse to another. What do you need to set up in the program to be able to track the quantity and value of items in transit at any given time? A.Locations B.Responsibility centers C.In-transit locations D.Warehouses ANSWER: c 7. What is the Item Substitutions granule used for? A.With this granule companies can link items with the same or similar characteristics B.With this granule companies can link items with different characteristics C.With this granule companies can link vendors with the same or similar items D.With this granule companies can link vendors with different items ANSWER: a 8. To manage sales prices in Microsoft Navision in a consistent manner, companies with extensive and complicated price structures are recommended to store all their price-related information: A.In the Sales Prices table only B.On the item cards C.Both in the Sales Prices table and item cards D.In the Sales Prices Worksheet ANSWER: a 9. Is it possible that one item has different reference numbers for the customer, vendor, and bar code? A.Yes B.No C.Yes, if no other options are selected D.No, if no other options are selected ANSWER: a 10. Where can you see reserved and unreserved quantities of all item ledger entries? A.In the Reservation window B.In the Customer Card C.In the Sales & Receivables Setup window D.In the Item Journal window ANSWER: a 11. For the program to suggest a line discount for a sales order, the order must always meet the following condition: A.Minimum order quantity B.Profit percentage defined for the item in question C.The item belongs to an item discount group D.All conditions specified in the Sales Line Discount table ANSWER: d 12. Where does nonstock item processing allow the user to enter an item? A.On a quote B.On a sales order C.On an invoice D.On a customer card ANSWER: abc 13. How many shipments and invoices can an order have? A.One shipment and one invoice B.Two shipments and one invoice C.Two shipments and two invoices D.As many as are necessary to complete the order ANSWER: d 14. Is numbering sequence provided for nonstock items? A.Yes, the program allows the user to set up the numbering sequence for nonstock items B.No, there is no such possibility in the program for nonstock items C.Such functionality is available only for inventory items D.Such functionality becomes available for nonstock items only when they become inventory items ANSWER: a 15. Does the program delete an order automatically when it is completely invoiced by means of combined shipment function? A.Yes B.No C.Yes, if it is defined in setup D.No, this can only be done manually or by using the Delete Invoiced Sales Order batch job ANSWER: d 16. In Microsoft Navision, to be able to post a sales line discount to a separate account in the general ledger, the user must: A.Activate the corresponding option on the sales line before posting the order B.Set this option up per individual line in the Sales Line Discount table C.Activate the corresponding option in the sales & receivables setup D.It is not possible, as discounts are always posted as part of a total sales amount ANSWER: c 17. In Microsoft Navision, to set up a special sales price for an individual customer, the user must: A.Create a record specifying a sales price for the customer in question in the Sales Price table B.First assign the customer in question to a group and then set up a special price for this group C.Create a record specifying a sales price for the customer in question in the item customer catalog D.Update the price information on the item card ANSWER: a 18. Do quantities entered on a blanket sales order affect item availability? A.No B.Yes C.Yes, if it is defined in setup D.No, if it is defined in setup ANSWER: a 19. What is a blanket sales order for? A.It represents a framework for a long-term agreement between the company and a customer B.It is used instead of sales orders C.It is not used at all, it is only for learning how to create sales orders D.Such document does not exist ANSWER: a 20. What can be used for efficient handling of drop shipped orders in the program? A.Human Resources granule B.Drop Shipment granule C.Creating blanket sales orders D.Creating blanket purchase orders ANSWER: b
