2014年4月30日星期三

Microsoft 70-536 examen pratique questions et réponses

Nous assurons seulement le succès de test certification, mais encore la mise à jour est gratuite pour vous. Si vous ne pouvez pas passer le test, votre argent sera 100% rendu. Toutefois, cette possibilité n'est presque pas de se produire. Vous pouvez tout d'abord télécharger le démo gratuit pour prendre un essai.

Beaucoup de gens trouvent difficile à passer le test Microsoft 70-536, c'est juste parce que ils n'ont pas bien choisi une bonne Q&A. Vous penserez que le test Microsoft 70-536 n'est pas du tout autant dur que l'imaginer. Le produit de Pass4Test non seulement comprend les Q&As qui sont impressionnées par sa grande couverture des Questions, mais aussi le service en ligne et le service après vendre.

Différentes façons peuvent atteindre le même but, ça dépend laquelle que vous prenez. Beaucoup de gens choisissent le test Microsoft 70-536 pour améliorer la vie et la carrière. Mais tous les gens ont déjà participé le test Microsoft 70-536, ils savent qu'il est difficile à réussir le test. Il y a quelques dépensent le temps et l'argent, mais ratent finalement.

Code d'Examen: 70-536
Nom d'Examen: Microsoft (TS:MS.NET Framework 2.0-Application Develop Foundation)
Questions et réponses: 155 Q&As

Le test Microsoft 70-536 est l'un très improtant dans tous les tests de Certification Microsoft, mais c'est toujours difficile à obtenir ce Certificat. La présence de Pass4Test est pour soulager les candidats. L'équipe de Pass4Test peut vous aider à économiser le temps et l'éffort. Vous pouvez passer le test sans aucune doute sous l'aide de notre Q&A.

70-536 Démo gratuit à télécharger: http://www.pass4test.fr/70-536.html

NO.1 You write the following code segment to call a function from the Win32 Application Programming
Interface (API) by using platform invoke.
string personName = "N?el";
string msg = "Welcome" + personName + "to club"!";
bool rc = User32API.MessageBox(0, msg, personName, 0);
You need to define a method prototype that can best marshal the string data.
Which code segment should you use?
A. [DllImport("user32", CharSet = CharSet.Ansi)]
public static extern bool MessageBox(int hWnd, String text, String caption, uint type);
}
B. [DllImport("user32", EntryPoint = "MessageBoxA", CharSet = CharSet.Ansi)] public static extern bool
MessageBox(int hWnd, [MarshalAs(UnmanagedType.
LPWStr)]
String text, [MarshalAs(UnmanagedType.LPWStr)]String caption, uint type); }
C. [DllImport("user32", CharSet = CharSet.Unicode)]
public static extern bool MessageBox(int hWnd, String text, String caption, uint type);
}
D. [DllImport("user32", EntryPoint = "MessageBoxA", CharSet = CharSet.Unicode)] public static extern
bool MessageBox(int hWnd, [MarshalAs(UnmanagedType.
LPWStr)]String text,
[MarshalAs(UnmanagedType.LPWStr)]String caption, uint type); }
Answer: C

Microsoft   70-536   70-536

NO.2 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

Microsoft   certification 70-536   certification 70-536   70-536 examen

NO.3 You are writing a method to compress an array of bytes. The array is passed to the method in a
parameter named document.
You need to compress the incoming array of bytes and return the result as an array of bytes.
Which code segment should you use?
A. MemoryStream strm = new MemoryStream(document);
DeflateStream deflate = new DeflateStream(strm,
CompressionMode.Compress);
byte[] result = new byte[document.Length];
deflate.Write(result,0, result.Length);
return result;
B. MemoryStream strm = new MemoryStream(document);
DeflateStream deflate = new DeflateStream(strm,
CompressionMode.Comress);
deflate.Write(document, 0, document.Length);
deflate.Close();
return strm.ToArray();
C. MemoryStream strm = new MemoryStream();
DeflateStream deflate = new DeflateStream(strm,
CompressionMode.Compress);
deflate.Write(document, 0, document.Length);
deflate.Close();
return strm.ToArray();
D. MemoryStream inStream = new MemoryStream(document);
DeflateStream deflate = new DeflateStream(inStream,
CompressionMode.Compress);
MemoryStream outStream = new MemoryStream();
int b;
while ((b = deflate.ReadByte()) != -1)
{
outStream.WriteByte((byte)b);
}
return outStream.ToArray();
Answer: C

Microsoft   70-536   70-536

NO.4 You are developing an application that receives events asynchronously. You create a WqlEventQuery
instance to specify the events and event conditions to which the application must respond. You also
create a ManagementEventWatcher instance to subscribe to events matching the query. You need to
identify the other actions you must perform before the application can receive events asynchronously.
Which two actions should you perform?
(Each correct answer presents part of the solution. Choose two.)
A. Start listening for events by calling the Start method of the ManagementEventWatcher.
B. Set up a listener for events by using the EventArrived event of the ManagementEventWatcher.
C. Use the WaitForNextEvent method of the ManagementEventWatcher to wait for the events.
D. Create an event handler class that has a method that receives an ObjectReadyEventArgs parameter.
E. Set up a listener for events by using the Stopped event of the ManagementEventWatcher.
Answer: AB

Microsoft examen   70-536   70-536

NO.5 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

Microsoft examen   certification 70-536   70-536 examen   70-536 examen

NO.6 You are writing an application that uses SOAP to exchange data with other applications. You use a
Department class that inherits from ArrayList to send objects to another application. The Department
object is named dept.
You need to ensure that the application serializes the Department object for transport by using SOAP.
Which code should you use?
A. SoapFormatter formatter = new SoapFormatter();
byte[] buffer = new byte[dept.Capacity];
MemoryStream stream = new MemoryStream(buffer);
foreach (object o in dept)
{
formatter.Serialize(stream, o);
}
B. SoapFormatter formatter = new SoapFormatter();
byte[] buffer = new byte[dept.Capacity];
MemoryStream stream = new MemoryStream(buffer);
formatter.Serialize(stream, dept);
C. SoapFormatter formatter = new SoapFormatter();
MemoryStream stream = new MemoryStream();
foreach (object o in dept)
{
Formatter.Serialize(stream, o);
}
D. SoapFormatter formatter = new SoapFormatter();
MemoryStream stream = new MemoryStream();
formatter.Serialize(stream, dept);
Answer: D

Microsoft   70-536   70-536   70-536   70-536

NO.7 You are developing a method to hash data for later verification by using the MD5 algorithm. The data is
passed to your method as a byte array named message. You need to compute the hash of the incoming
parameter by using MD5. You also need to place the result into a byte array. Which code segment should
you use?
A. HashAlgorithm algo = HashAlgorithm.Create("MD5");
byte[] hash = algo.ComputeHash(message);
B. HashAlgorithm algo = HashAlgorithm.Create("MD5");
byte[] hash = BitConverter.GetBytes(algo.GetHashCode());
C. HashAlgorithm algo;
algo = HashAlgorithm.Create(message.ToString());
byte[] hash = algo.Hash;
D. HashAlgorithm algo = HashAlgorithm.Create("MD5");
byte[] hash = null;
algo.TransformBlock(message, 0, message.Length, hash, 0); "A Composite Solution With Just One Click"
- Certification Guaranteed 16 Microsoft 70-536 Exam
Answer: A

Microsoft examen   70-536   certification 70-536   70-536

NO.8 Your application uses two threads, named thread One and thread Two. You need to modify the code to
prevent the execution of thread One until thread Two completes execution.
What should you do?
A. Configure threadOne to run at a lower priority.
B. Configure threadTwo to run at a higher priority.
C. Use a WaitCallback delegate to synchronize the threads.
D. Call the Sleep method of threadOne.
E. Call the SpinLock method of threadOne.
Answer: C

Microsoft examen   70-536 examen   70-536 examen   certification 70-536

NO.9 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";
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);
B. 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);
C. string strSmtpClient = "smtp.contoso.com";
string strFrom = "me@contoso.com";
string strTo = "you@contoso.com";
string strSubject = "Greetings!";
string strBody = "Test";
MailMessage msg =
"A Composite Solution With Just One Click" - Certification Guaranteed 7 Microsoft 70-536 Exam
new MailMessage(strFrom, strTo, strSubject, strSmtpClient);
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";
message.Dispose();
Answer: B

Microsoft   70-536   70-536

NO.10 You are creating a class that uses unmanaged resources. This class maintains references to managed
resources on other objects. You need to ensure that users of this class can explicitly release resources
when the class instance ceases to be needed. Which three actions should you perform? (Each correct
answer presents part of the solution. Choose three.)
A. Define the class such that it inherits from the WeakReference class.
B. Define the class such that it implements the IDisposable interface.
C. Create a class destructor that calls methods on other objects to release the managed resources.
D. Create a class destructor that releases the unmanaged resources.
E. Create a Dispose method that calls System.GC.Collect to force garbage collection.
F. Create a Dispose method that releases unmanaged resources and calls methods on other objects to
release the managed resources.
Answer: BDF

Microsoft   certification 70-536   70-536

NO.11 You use Reflection to obtain information about a method named My Method. You need to ascertain
whether MyMethod is accessible to a derived class. What should you do.?
A. Call the IsAssembly property of the MethodInfo class.
B. Call the IsVirtual property of the MethodInfo class.
C. Call the IsStatic property of the MethodInfo class.
D. Call the IsFamily property of the MethodInfo class.
Answer: D

Microsoft   70-536   70-536   70-536

NO.12 You need to create a class definition that is interoperable along with COM.
You need to ensure that COM applications can create instances of the class and can call the GetAddress
method.
Which code segment should you use?
A. public class Customer{
string addressString;
public Customer(string address)
{
addressString = address;
}
public string GetAddress()
{
return addressString;
}
}
B. public class Customer {
static string addressString;
public Customer() { }
public static string GetAddress()
{
return addressString;
}
}
C. public class Customer {
string addressString;
public Customer() { }
public string GetAddress()
{
return addressString;
}
}
D. public class Customer {
string addressString;
public Customer() { }
internal string GetAddress()
{
return addressString;
}
}
Answer: C

Microsoft   certification 70-536   70-536   70-536

NO.13 You are working on a debug build of an application. You need to find the line of code that caused an
exception to be thrown. Which property of the Exception class should you use to achieve this goal?
A. Data
B. Message
C. StackTrace
D. Source
Answer: C

Microsoft examen   70-536 examen   70-536   70-536

NO.14 You write the following code:
public delegate void FaxDocs(object sender, FaxArgs args);
You need to create an event that will invoke FaxDocs. Which code segment should you use?
A. public static event FaxDocs Fax;
B. public static event Fax FaxDocs;
C. public class FaxArgs : EventArgs{
private string coverPageInfo;
public FaxArgs(string coverInfo)
{
this.coverPageInfo = coverPageInfo;
}
public string CoverPageInformation
{
get { return this.coverPageInfo; }
}
}
D. public class FaxArgs : EventArgs
{
private string coverPageInfo;
public string CoverPageInformation
{
get { return this.coverPageInfo; }
}
}
Answer: A

Microsoft   70-536   70-536   70-536

NO.15 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();
AssemblyBuilder myAssemblyBuilder =
AppDomain.CurrentDomain.DefineDynamicAssembly
(myAssemblyName, AssemblyBuilderAccess.RunAndSave);
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("MyAssembly");
AssemblyBuilder myAssemblyBuilder =
AppDomain.CurrentDomain.DefineDynamicAssembly
(myAssemblyName, AssemblyBuilderAccess.Save);
myAssemblyBuilder.Save("c:\\MyAssembly.dll");
D. AssemblyName myAssemblyName =
new AssemblyName();
myAssemblyName.Name = "MyAssembly";
AssemblyBuilder myAssemblyBuilder =
AppDomain.CurrentDomain.DefineDynamicAssembly
(myAssemblyName, AssemblyBuilderAccess.Run);
myAssemblyBuilder.Save("MyAssembly.dll");
Answer: B

Microsoft examen   70-536   70-536   certification 70-536   70-536 examen

NO.16 You are creating an assembly named Assembly1. Assembly1 contains a public method. The global
cache contains a second assembly named Assembly2. You must ensure that the public method is only
called from Assembly2. Which permission class should you use?
A. GacIdentityPermission
B. StrongNameIdentityPermission
C. DataProtectionPermission
D. PublisherIdentityPermission
"A Composite Solution With Just One Click" - Certification Guaranteed 6 Microsoft 70-536 Exam
Answer: B

certification Microsoft   70-536   certification 70-536   70-536 examen   70-536

NO.17 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 : Dictionary<string, string>
B. class MyDictionary : HashTable
C. class MyDictionary : IDictionary
D. class MyDictionary { ... }
Dictionary<string, string> t = new Dictionary<string, string>(); MyDictionary dictionary = (MyDictionary)t;
Answer: A

Microsoft   70-536 examen   70-536 examen   70-536   70-536 examen

NO.18 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

Microsoft   certification 70-536   70-536   70-536 examen   70-536 examen

NO.19 You are developing an application to perform mathematical calculations. You develop a class named
CalculationValues. You write a procedure named PerformCalculation that operates on an instance of the
class.
You need to ensure that the user interface of the application continues to respond while calculations are
being performed. You need to write a code segment that calls the Perform Calculation procedure to
achieve this goal.
Which code segment should you use?
A. public ref class CalculationValues {...};
public ref class Calculator {
public :
void PerformCalculation(Object= values) {}
};
public ref class ThreadTest{
private :
void DoWork (){
CalculationValues= myValues = gcnew CalculationValues(); Calculator = calc = gcnew Calculator();
Thread= newThread = gcnew Thread(
gcnew ParameterizedThreadStart(calc,
&Calculator::PerformCalculation));
newThread->Start(myValues);
}
};
B. public ref class CalculationValues {...};
public ref class Calculator {
public :
void PerformCalculation() {}
};
public ref class ThreadTest{
private :
void DoWork (){
CalculationValues= myValues = gcnew CalculationValues(); Calculator = calc = gcnew Calculator();
ThreadStart= delStart = gcnew
ThreadStart(calc, &Calculator::PerformCalculation);
Thread= newThread = gcnew Thread(delStart);
if (newThread->IsAlive) {
newThread->Start(myValues);
}
}
};
C. public ref class CalculationValues {...};
public ref class Calculator {
public :
void PerformCalculation(CalculationValues= values) {} };
public ref class ThreadTest{
private :
void DoWork (){
CalculationValues= myValues = gcnew CalculationValues(); Calculator = calc = gcnew Calculator();
Application::DoEvents();
calc->PerformCalculation(myValues);
Application::DoEvents();
}
};
D. public ref class CalculationValues {...};
public ref class Calculator {
public :
void PerformCalculation() {}
};
public ref class ThreadTest{
private :
void DoWork (){
CalculationValues= myValues = gcnew CalculationValues(); Calculator = calc = gcnew Calculator();
Thread= newThread = gcnew Thread(
gcnew ThreadStart(calc, &Calculator::PerformCalculation)); newThread->Start(myValues);
}
};
Answer: A

Microsoft   70-536   certification 70-536

NO.20 You are developing a method to hash data with the Secure Hash Algorithm. The data is passed to your
method as a byte array named message. You need to compute the hash of the incoming parameter by
using SHA1. You also need to place the result into a byte array named hash. Which code segment should
you use?
A. SHA1 sha = new SHA1CryptoServiceProvider();
byte[] hash = null;
sha.TransformBlock(message, 0, message.Length, hash, 0);
B. SHA1 sha = new SHA1CryptoServiceProvider();
byte[] hash = BitConverter.GetBytes(sha.GetHashCode());
C. SHA1 sha = new SHA1CryptoServiceProvider();
byte[] hash = sha.ComputeHash(message);
D. SHA1 sha = new SHA1CryptoServiceProvider();
sha.GetHashCode();
byte[] hash = sha.Hash;
Answer: C

certification Microsoft   70-536   70-536

Les produits de Pass4Test sont recherchés par les experts de Pass4Test qui se profitent de leurs connaissances et leurs expériences dans l'Idustrie IT. Si vous allez participer le test Microsoft 70-536, vous devez choisir Pass4Test. La Q&A de Pass4Test peut vous aider à préparer mieux le test Microsoft 70-536 avec sa grande couiverture des questions. En face d'un test très difficile, vous pouvez obtenir le Certificat Microsoft 70-536 sans aucune doute.

Guide de formation plus récente de Microsoft 70-270

Le test Certificat Microsoft 70-270 est bien populaire pendant les professionnels IT. Ce Certificat est une bonne preuve de connaissances et techniques professionnelles. C'est une bonne affaire d'acheter une Q&A de qualité coûtant un peu d'argent. Le produit de Pass4Test vise au test Certification Microsoft 70-270. Vous allez prendre toutes essences du test Microsoft 70-270 dans une courte terme.

Pass4Test est un bon catalyseur du succès pour les professionnels IT. Beaucoup de gens passer le test Microsoft 70-270 avec l'aide de l'outil formation. Les experts profitent leurs expériences riches et connaissances à faire sortir la Q&A Microsoft 70-270 plus nouvelle qui comprend les exercices de pratiquer et le test simulation. Vous pouvez passer le test Microsoft 70-270 plus facilement avec la Q&A de Pass4Test.

Dans ce monde d'informatique, l'industrie IT est suivi par de plus en plus de ges. Dans ce domaine demandant beaucoup de techniques, il faut des Certificat à se preuver les techniques professionnelle. Les Certificats IT sont improtant pour un interviewé pendant un entretien. C'est pas facile à passer le test Microsoft 70-270, donc c'est pourquoi beaucoup de professionnels qui choisissent ce Certificat pour se preuver.

Code d'Examen: 70-270
Nom d'Examen: Microsoft (Installing, Configuring, and Administering Microsoft Windows XP Professional)
Questions et réponses: 170 Q&As

Bien qu'il ne soit pas facile à réussir le test Microsoft 70-270, c'est très improtant à choisir un bon outil de se former. Pass4Test a bien préparé les documentatinos et les exercices pour vous aider à réussir 100% le test. Pass4Test peut non seulement d'être une assurance du succès de votre test Microsoft 70-270, mais encore à vous aider d'économiser votre temps.

70-270 Démo gratuit à télécharger: http://www.pass4test.fr/70-270.html

NO.1 You are a desktop administrator for your company. A company user reports that he is unable to use his
Bluetooth-enabled mobile phone with his Bluetooth-enabled Windows XP Professional computer. He is
trying to play audio from the phone through the speakers on his computer.
You verify that other Bluetooth devices work properly with the user ¯ s co m pu t e r. You t es t t he speake r s t o
make sure they are in working order. You also verify that the mobile phone can send output to a computer.
You then discover that the phone cannot detect the computer.
You need to ensure that the user can use the phone with his computer. What should you do?
A. Place the phone in Bluetooth discovery mode.
B. Place the user ¯ s co m pu t e r i n B l ue t oo t h d i scove r y m ode
C. Add the phone and the computer to the same Bluetooth Personal Area Network (PAN).
D. Install mobile phone synchronization software on the user ¯ s co m pu t e r
Answer: B

Microsoft   70-270   70-270 examen   70-270 examen

NO.2 You are the desktop administrator for your company. The company's network contains a RIS server, a
DHCP server, and a DNS server.
You need to install Windows XP Professional on a computer that does not have a CD-ROM drive. The
computer has the following configuration:
¡¤a Pentium III -GHz processor
¡¤a -GB hard disk
¡¤128 MB of RA
¡¤a modem in the first PCI slo
¡¤an Ethernet card in the last ISA slo
You attempt to install Windows XP Professional on the computer by using a RIS bootable floppy disk.
However, you are unable to connect to the RIS server.
What should you do?
A. Move the Ethernet card to the first ISA slot.
B. Remove the Ethernet card and replace it with an Ethernet card that is PXE compliant.
C. Share the RIS image on the RIS server. Create a network bootable floppy disk. Insert the floppy disk,
and install Windows XP Professional from the share.
D. Place the NDIS network drivers in the root directory of the RIS bootable floppy disk. Use the floppy disk
to connect to the RIS server.
Answer: B

certification Microsoft   70-270 examen   70-270   70-270

NO.3 You are the network administrator for one of your company's branch offices. Ten employees work in the
branch office. All client computers in the branch office run Windows XP Professional. All client computers
have manually configured IP addresses in the 192. 168. 1. 0/24 range.
The branch office has a cable modem connection to the Internet. All employees in the branch office need
access to the main office by means of a virtual private network (VPN) connection over the Internet. The
VPN connection is configured as shown in the exhibit. (Click the Exhibit button.)
Employees in the branch office report that they cannot access resources that are located on the main
office network. You investigate and discover that you can establish a VPN connection locally on a client
computer named Pro1 and can access main office network resources. However, you cannot connect to
Pro1 from other computers on the branch office network.
You want all employees in the branch office to be able to access main office network resources by means
of the VPN connection on Pro1. What should you do?
A. Disable Windows Firewall on the main office VPN connection.
B. Add a port exception to Windows Firewall to allow incoming PPTP traffic on the main office VPN
connection.
C. Select the Allow other network users to control or disable the shared Internet connection check box.
D. Configure all client computers in the branch office to obtain IP addresses automatically.
Answer: D

Microsoft   70-270 examen   certification 70-270   70-270   70-270 examen

NO.4 You are the desktop administrator for your company's sales department. The company's network
contains a RIS server.
You need to install Windows XP Professional on a computer that has a SCSI disk subsystem. You start
the computer by using the Windows XP Professional CD-ROM, and you begin the installation. However,
Setup reports that it cannot find any disks on which to install Windows XP Professional.
You start the computer by using a RIS bootable floppy disk, and you receive the same result. What should
you do?
A. Add an answer file to the root directory of the RIS bootable floppy disk.
Start the computer by using the RIS bootable floppy disk, and run Setup by using RIS.
B. Add the SCSI-controller driver to the root directory of the RIS bootable floppy disk.
Start the computer by using the RIS bootable floppy disk, and run Setup by using RIS.
C. Start the computer by using the Windows XP Professional CD-ROM, and run Setup.
After Setup starts, provide an answer file on a floppy disk.
D. Start the computer by using the Windows XP Professional CD-ROM, and run Setup.
After Setup starts, provide a SCSI-controller driver on a floppy disk.
E. Start the computer by using the Windows XP Professional CD-ROM, and run Setup.
After Setup starts, provide the appropriate HAL on a floppy disk.
Answer: D

Microsoft   70-270 examen   70-270 examen   70-270

NO.5 You are a help desk technician for your company. All employees use Windows XP Professional
computers.
A salesperson named Philippe receives a removable disk drive cartridge from his supervisor. Philippe
now reports that he cannot edit files on the cartridge. When he tries to open any files or folders on the
cartridge, he receives an ° access den i e ¡± e r ror m essag
Philippe ¯ s supe r v i so r i s cu rr en tl y ou t o f t he
office.
You place the cartridge in the removable drive on your computer. You receive the same ° access den i e
error message when you try to access the files and folders.
You call Philippe ¯ s supe r v i so r. She ass you to grant permission to access the contents of the cartridge
only to Philippe. However, she also wants to prevent Philippe from changing permissions on the contents
of the cartridge.
Which two actions should you take? (Each correct answer presents part of the solution. Choose two.)
A. As Administrator, take ownership of the files and folders.
B. As Administrator, grant your help desk user account Allow - Full Control permission on the files and
folders.
C. Grant Philippe Allow - Modify permission on the files and folders.
D. Grant Philippe Allow - Full Control permission on the files and folders.
E. Grant Philippe Allow - Take Ownership permission on the files and folders.
Answer: AC

Microsoft   70-270   70-270   70-270 examen

NO.6 You are a help desk technician for your company, which is in the process of deploying Windows XP
Professional to all client computers.
You upgrade Pierre ¯ s W i ndo w s 98 po rt ab l e co m pu t e r t o W i ndo w s XP P r o f ess i ona l. A ft e r t he upg r ade ,
Pierre reports that some of his older software applications no longer work properly. Also, one of the
hardware devices on his computer is not currently supported by Windows XP Professional. Pierre
requests that you reinstall Windows 98 and all of his applications so that he can use his computer
normally.
You need to restore Pierre ¯ s co m pu t e r t o it s p r -upgraded state while retaining all of the applications,
documents, and personal data on the computer. You want to accomplish this task in the minimum amount
of time.
What should you do?
A. Copy Pierre ¯ s docu m en t s and personal data to a shared folder on the network.
B. Reinstall Windows 98 and Pierre ¯ s app li ca ti ons
C. Copy the documents and personal data to the My Documents folder on Pierre ¯ s co m pu t e r
D. On Pierre ¯ s co m pu t e r, r un Se t up . exe fr o m a W i ndo w s 98 i ns t a lation CD.
E. On Pierre ¯ s co m pu t e r, use t he Add o r R e m ove P r og r a m s W i za r d t o r e m ove t he W i ndo w s XP
Professional Installation item.
F. On Pierre ¯ s co m pu t e r, use a t h ir -party disk-imaging software utility to apply a disk image that contains
Windows 98 and Pierre ¯ s app li ca ti ons
Answer: C

Microsoft   70-270 examen   70-270 examen   70-270

NO.7 You are a desktop administrator for your company. You are responsible for deploying a new application.
The application is packaged in an .msi file.
You need to deploy the application to only three users in the company. The .msi file contains all of the
information necessary to correctly install the application.
You need to install the application so that users see information about the installation progress, but no
other user interface is displayed during the installation. What should you do?
A. Use the Msiexec.exe program to perform a quiet installation of the application.
B. Use the Msiexec.exe program to perform a passive installation of the application.
C. Create a Group Policy object (GPO) that assigns the application. Link the GPO to the site containing
the users who will use the application.
D. Create a Group Policy object (GPO) that advertises the application. Link the GPO to the domain.
Answer: B

Microsoft examen   70-270   70-270   70-270   certification 70-270

NO.8 You are the desktop administrator for your company. You need to upgrade a Windows 98 computer to
Windows XP Professional. Windows 98 is installed in a folder named C:\Win98. You need to ensure that
the computer's applications and settings are retained after the upgrade.
You insert the Windows XP Professional CD-ROM into the computer and restart the computer. The
text-based portion of Setup appears. The text on the screen states that Windows XP Professional will be
installed in a folder named C:\Windows, not in the C:\Win98 folder.
You need to ensure that Windows XP Professional upgrades the existing Windows 98 installation. What
should you do?
A. Rename the C:\Win98 folder to C:\Windows.
B. Modify the installation settings in the text-based portion of Setup so that Windows XP Professional is
installed in the C:\Win98 folder.
C. Restart the computer by using Windows 98. Then insert the Windows XP Professional CD-ROM into
the computer and run Setup from the CD-ROM.
D. Use the Windows XP Professional CD-ROM to create a set of Setup floppy disks. Restart the computer
by using the first floppy disk in the set to launch Setup.
Answer: C

certification Microsoft   70-270   certification 70-270   certification 70-270

NO.9 You are the desktop administrator for your company. You need to deploy Windows XP Professional to
50 new computers. You want to use a fully automated installation process.
Each new computer is configured with a 20-GB hard disk, a CD-ROM drive, and a floppy disk drive. The
computers do not contain network adapter cards.
You specify the company's standard installation settings and save them in an answer file.
You want to use the Sysprep utility to prepare the source computer for the deployment. Which two actions
should you take? (Each correct answer presents part of the solution. Choose two.)
A. Place the answer file in C:\Windows\System.
B. Place the answer file in C:\Windows\System32.
C. Place the answer file in C:\Sysprep.
D. Place Sysprep.exe and Setupcl.exe in C:\Windows\System.
E. Place Sysprep.exe and Setupcl.exe in C:\Windows\System32.
F. Place Sysprep.exe and Setupcl.exe in C:\Sysprep.
Answer: CF

Microsoft examen   70-270   certification 70-270   70-270 examen   certification 70-270

NO.10 You are the desktop administrator for your company's sales department. Katrin is a user in the sales
department. You need to upgrade Katrin's Windows 2000 Professional computer to Windows XP
Professional.
Philippe is the network administrator. He previously downloaded updated Setup files and placed them on
a server named Server1, in a shared folder named Updates. Philippe has successfully installed
computers by using these updated Setup files.
You want to ensure that these updated Setup files are automatically installed on Katrin's computer during
the upgrade. Which command should you run to start Setup?
A. Winnt32. exe /dushare:\\server1\updates
B. Winnt32. exe /copydir:\\server1\updates
C. Winnt32. exe /duprepare:\\server1\updates
D. Winnt32. exe /copysource:\\server1\updates
Answer: A

Microsoft   70-270   70-270 examen   70-270 examen

NO.11 You are the desktop administrator for your company. You are responsible for automating the
deployment of Windows XP Professional to new computers in your company. You are preparing a
Windows XP Professional computer, which you will use to test disk imaging.
You install Windows XP Professional on the test computer and run the Sysprep utility. You use a
third-party software package to create a disk image. You apply the disk image to a new computer and
then restart the computer.
Instead of completing the Windows XP Professional installation, the computer starts the Windows
Welcome program, requiring you to enter additional setup information.
Because you will be deploying a large number of computers, you want to ensure that the disk image can
be applied without additional user interaction. What should you do?
A. Use a network-based RIS server to apply the disk image to new computers.
B. On the test computer, run the Sysprep -factory command. Re-create the disk image by using the
third-party software.
C. Use Setup Manager to create a Sysprep answer file. Copy the answer file to a floppy disk, and insert
the disk into new computers when the disk image is applied.
D. Create an Unattend.txt answer file. Copy the file to the C:\Winnt\System32 folder on the test computer.
Run the Sysprep utility and re-create the disk image by using the third-party software.
Answer: C

certification Microsoft   certification 70-270   70-270

NO.12 You are the desktop administrator for your company's sales department. You need to perform a clean
installation of Windows XP Professional on a computer that currently runs Windows 98.
You start the installation. The text-based portion of Setup finishes successfully. Before the GUI-based
portion of Setup starts, the computer stops responding. You investigate and discover that there is a
problem with a device driver.
You want to know which device is causing the problem. What should you do?
A. Modify the Boot.ini file to include the /fastdetect switch.
B. Modify the Boot.ini file to include the /sos switch.
C. Restart Setup by using the /dudisable switch.
D. Restart Setup by using the /dushare switch.
E. Restart the computer. From the Recovery console, read the Dr. Watson log.
F. Restart the computer. From the Recovery console, read the Comsetup.log file.
Answer: B

Microsoft examen   70-270   70-270 examen   70-270   70-270

NO.13 You are the desktop administrator for your company. You successfully perform a clean installation of
Windows XP Professional on drive C of a computer that is used by an employee named Susan.
Susan is a software developer. She wants her computer to have a dual-boot configuration so that she can
use either Windows XP Professional or Windows 2000 Professional. She installs Windows 2000
Professional on drive G.
After installing Windows 2000 Professional, Susan restarts her computer and chooses to start Windows
XP Professional. When Windows XP Professional starts, Susan sees the following error message, which
is also shown in the exhibit. (Click the Exhibit button.)
"Windows 2000 could not start because the following file is missing or corrupt:
\WINDOWS\SYSTEM32\CONFIG\SYSTEM"
However, Susan restarts her computer and is able to successfully start Windows 2000 Professional.
You want Susan's dual-boot configuration to function properly. You start Susan's computer and choose to
start Windows 2000 Professional.
What should you do next?
A. Copy the NTLDR file and the Ntdetect.com file from the i386 folder on the Windows XP Professional
CD-ROM to the root directory of drive C.
B. Copy the NTLDR file and the Ntdetect.com file from the i386 folder on the Windows XP Professional
CD-ROM to the root directory of drive G.
C. Restore the C:\Windows\System32\Config\System file from a recent backup.
D. Restore the G:\Windows\System32\Config\System file from a recent backup.
Answer: A

Microsoft   70-270 examen   70-270   70-270 examen   certification 70-270   certification 70-270

NO.14 You are a desktop administrator for your company. You need to deploy a new application. The
application is packaged in an .msi file.
The application will be used by only a small number of users. You plan to install the application by using
the Msiexec.exe program.
You need to ensure that the installation process does not display a user interface. What should you do?
A. Manually perform a passive installation of the application.
B. Manually perform a quiet installation of the application.
C. Use a logon script to run the Msiexec.exe program.
D. Use the Runas utility to run the Msiexec.exe program.
Answer: B

Microsoft   certification 70-270   70-270   70-270   70-270 examen

NO.15 You are the desktop administrator for your company's sales department. Susan is a user in the sales
department. Susan's computer currently runs Microsoft Windows NT Workstation 4. 0. Susan uses a
legacy application that is compatible with only Windows NT Workstation.
You want to install Windows XP Professional on Susan's computer. You plan to set up a dual-boot
configuration so that Susan can run either Windows XP Professional or Windows NT Workstation.
Susan's computer has two hard disks, named drive C and drive G. You install Windows XP Professional
on drive G. After Windows XP Professional is installed, Susan reports that Windows NT Workstation is no
longer available.
You need to ensure that both operating systems are available on Susan's computer. What should you do?
A. Insert the Windows XP Professional CD-ROM into the computer.
Run the Sfc.exe /scannow command.
B. Insert the Windows XP Professional CD-ROM into the computer.
Run the Winnt32. exe /cmdcons command.
C. Start the computer by using an MS-DOS bootable floppy disk.
Run the Attrib.exe -r -h -s c:\bootsect.dos command.
D. Start the computer by using the Windows XP Professional CD-ROM.
From the Recovery console, run the Bootcfg /rebuild command.
Answer: D

Microsoft examen   certification 70-270   70-270 examen   certification 70-270

NO.16 You are the administrator of a Windows XP Professional computer named Pro1. The computer is
connected to the Internet. Pro1 provides Internet access to eight other Windows XP Professional
computers that are connected to Pro1.
You enable Internet Connection Sharing (ICS) and Windows Firewall on Pro1.
You run an application named App1 on Pro1. App1 communicates with an online training company on
the Internet. To display an online seminar, the training company needs to contact the App1 application at
port 5800.
You want to ensure that the training company can connect to the App1 application. What should you do?
A. Configure Windows Firewall to enable the Internet Control Message Protocol (ICMP) Allow redirect
option. Then start the App1 application that opens port 5800.
B. Create a new service exception named App1. Use port 5800 as both the external and internal port
number.
C. Edit the %systemroot%\System32\Drivers\Etc\Services file on Pro1 to include a service definition
named App1 for port 5800.
D. Change the TCP/IP settings on Pro1 to enable TCP/IP filtering. Permit network traffic on port 5800.
Answer: B

certification Microsoft   70-270   70-270   70-270 examen

NO.17 You are the desktop administrator for your company. The company's network consists of a single
Active Directory domain. All client computers run Windows XP Professional.
Bruno is a user in the graphics department. Bruno creates a new shared folder named GFXTemplates on
his computer. The GFXTemplates folder contains custom templates that are used by various applications.
The permissions on the GFXTemplates folder must meet the following requirements:
¡¤Users must be able to access the GFXTemplaes folder and all files it contains.
¡¤Users must be able to add newly created template files to the GFXTemplates folder
¡¤Users must not be able to delete any files in the GFXTemplates folder
Bruno configures permissions on the GFXTemplates folder as shown in the following table.
The users in the graphics department report that they cannot add files to the GFXTemplates folder. What
should you do to resolve this problem?
A. Modify the NTFS permissions on the GFXTemplates folder to grant the Everyone group Allow - Modify
permission.
B. Modify the NTFS permissions on the GFXTemplates folder to grant the Users group Allow - Read and
Allow - Write permissions.
C. Modify the shared folder permissions on the GFXTemplates folder to grant the Everyone group Allow -
Change permission.
D. Modify the shared folder permissions on the GFXTemplates folder to grant the Users group Allow -
Read and Allow - Write permissions.
Answer: B

certification Microsoft   certification 70-270   70-270

NO.18 You are a help desk technician for your company. Stefan and Irene are software developers for the
company. Stefan is developing a Web application on his Windows XP Professional computer. The
computer is named Stefan132. All client computers use Microsoft Internet Explorer 6. 0 or later as their
Web browser.
When Irene types http://Stefan132 in the Address bar of her Web browser, she cannot access the Web
application. However, Stefan can access the Web application by typing http://localhost or http://Stefan132
in the Address bar of his Web browser. He can also access resources on the company network.
When you run the Ping command on your computer, you cannot connect to Stefan ¯ s co m pu t e r. W hen you
attempt to access http://Stefan132 from your computer, Internet Explorer displays ° DNS o r Se r ve r E rr o r
You need to ensure that Irene can access the Web application on Stefan ¯ s co m pu t e r. F ir s t, you es t ab li sh a
Remote Assistance connection to Stefan ¯ s co m pu t e r
What should you do next on Stefan ¯ s co m pu t e r
A. Run the IPconfig /renew command.
B. Stop and then restart the World Wide Web Publishing service.
C. Ensure that the Everyone group has Allow - Full Control permission on the Inetpub folder.
D. In the properties of the Local Area Connection connection, allow a Windows Firewall exception for port
80.
Answer: D

Microsoft   certification 70-270   70-270 examen   70-270 examen

NO.19 You are the desktop administrator for your company's sales department. Susan is a user in the sales
department. Susan's Windows XP Professional computer has a single hard disk, which is formatted as
NTFS.
Susan's computer contains a folder named C:\Files1. The C:\Files1 folder is shared as Files1. Users in
the sales department have permissions to create files in the Files1 shared folder.
Company policy allows interns to read files, but prohibits interns from creating files in the Files1 shared
folder. Company policy allows members of the Sales group and the Marketing group to create files in the
Files1 shared folder.
Carlos is an intern. He is a member of the Interns group, the Sales group, and the Marketing group.
Susan reports that Carlos is able to create files in the Files1 shared folder.
You inspect Susan's computer to evaluate the Files1 shared folder. Permissions on Susan's computer are
granted as shown in the following table.
You want ensure that Carlos cannot create files in the Files1 shared folder. What should you do?
A. On the Files1 shared folder, remove the Interns group's access.
B. On the C:\Files1 folder, remove the Interns group's access.
C. On the C:\Files1 folder, assign the Interns group Deny - Full Control permission.
D. On the C:\Files1 folder, assign the Interns group Deny - Write permission.
Answer: D

Microsoft examen   70-270   70-270   70-270 examen

NO.20 You are the desktop administrator for one of your company's branch offices. The network in the
branch office consists of a single network segment, which contains a domain controller, a DHCP server,
10 Windows 2000 Server computers, and 50 Windows 2000 Professional computers. All servers and
client computers are members of the company's Active Directory domain.
You purchase 50 new client computers for the branch office. Each new client computer contains a built-in
PXE-compliant network adapter. You install and configure RIS on one of the Windows 2000 Server
computers that is on the network in the branch office. You create a Windows XP Professional RIS image
on the Windows 2000 Server computer.
You connect the new client computers to the network in the office, and you turn on each computer. Each
computer displays a message stating that it cannot contact a PXE boot server. You verify that the RIS
server is connected to the network.
You need to ensure that the new client computers can connect to the RIS server and can begin installing
Windows XP Professional. What should you do?
A. Ask a domain administrator to authorize the RIS server.
B. Grant the Everyone group Allow - Read NTFS permission on the RIS image.
C. Install RIS on the domain controller. Copy the RIS image to the domain controller.
D. Add a reservation for the RIS server to the DHCP server.
Answer: A

certification Microsoft   70-270   certification 70-270   70-270

Pass4Test est un catalyseur de votre succès de test Microsoft 70-270. En visant la Certification de Microsoft, la Q7A de Pass4Test avec beaucoup de recherches est lancée. Si vous travillez dur encore juste pour passer le test Microsoft 70-270, la Q&A Microsoft 70-270 est un bon choix pour vous.

Microsoft meilleur examen MB6-824, questions et réponses

Pour l'instant, vous pouvez télécharger le démo gratuit de Q&A Microsoft MB6-824 dans Pass4Test pour se former avant le test Microsoft MB6-824.

Les spécialistes d'expérience de Pass4Test ont fait une formation ciblée au test Microsoft MB6-824. Cet outil de formation est convenable pour les candidats de test Microsoft MB6-824. Pass4Test n'offre que les produits de qualité. Vous aurez une meilleure préparation à passer le test avec l'aide de Pass4Test.

Pass4Test est un seul site web qui peut offrir toutes les documentations de test Microsoft MB6-824. Ce ne sera pas un problème à réussir le test Microsoft MB6-824 si vous préparez le test avec notre guide d'étude.

Choisir le Pass4Test peut vous aider à réussir 100% le test Microsoft MB6-824 qui change tout le temps. Pass4Test peut vous offrir les infos plus nouvelles. Dans le site de Pass4Test le servie en ligne est disponible toute la journée. Si vous ne passerez pas le test, votre argent sera tout rendu.

Le Certificat de Microsoft MB6-824 signifie aussi un nouveau jalon de la carrière, le travail aura une space plus grande à augmenter, et tout le monde dans l'industrie IT sont désireux de l'obtenir. En face d'une grande passion pour le test Certification Microsoft MB6-824, le contrariété est le taux très faible à réussir. Bien sûr que l'on ne passe pas le test MB6-824 sans aucun éffort, en même temps, le test de Microsoft MB6-824 demande les connaissances bien professionnelles. Le guide d'étude dans le site Pass4Test peut vous fournir un raccourci à réussir le test Microsoft MB6-824 et à obtenir le Certificat de ce test. Choisissez le guide d'étude de Pass4Test, vous verrez moins de temps dépensés, moins d'efforts contribués, mais plus de chances à réussir le test. Ça c'est une solution bien rentable pour vous.

Code d'Examen: MB6-824
Nom d'Examen: Microsoft (AX 2009 Human Resource Management)
Questions et réponses: 50 Q&As

MB6-824 Démo gratuit à télécharger: http://www.pass4test.fr/MB6-824.html

NO.1 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.
Answer: b

Microsoft   MB6-824   certification MB6-824   certification MB6-824   MB6-824 examen

NO.2 When can you start registering participants for a course?
A.The course is registered in their development plan.
B.When the course status is open.
C.When the course status is created.
D.As long as the registration deadline is not exceeded.
Answer: b

certification Microsoft   MB6-824 examen   certification MB6-824   MB6-824

NO.3 A new employee is employed in a company and a HR assistant registers the employee data in the
Employee form. What optiona are available to categorize the employee type?
A.Internal and external employees.
B.Employees, contractors, and work centers.
C.An employee can only be registered as an Employee type.
D.A new employee is automatically registered as a Temporary and this option is mandatory until the trial
period expeires.
Answer: b

Microsoft   MB6-824 examen   MB6-824   MB6-824 examen   MB6-824   MB6-824

NO.4 A new initiative has been launched within the company to examine overall levels of job satisfaction. A
part of the analysis involves tracking absence over the preceding year. Which of the following provides
department managers with a graphical overview of the amount and cause of employee absence?
A.Transactions
B.History
C.Absence statistics
D.Absence registration
Answer: c

Microsoft   MB6-824   certification MB6-824

NO.5 Which of the following are situations in which you would use reason codes?
A.When moving, hiring, or terminating an employee.
B.When assigning benefits.
C.When updating an employee resume.
D.When ending a recruitment project.
Answer: a

Microsoft examen   MB6-824   certification MB6-824   MB6-824   MB6-824   MB6-824

NO.6 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.
Answer: c

Microsoft examen   certification MB6-824   certification MB6-824   MB6-824 examen   certification MB6-824

NO.7 The company has just updated its mobile phones to the latest model and wants to start issuing the
phones to its employees. Before the company can do so, however, it must create each phone in which of
the following Human Resource tables?
A.Loans
B.Loan types
C.Loan items
D.Create loan items
Answer: c

Microsoft examen   MB6-824   MB6-824

NO.8 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.
Answer: a

Microsoft   MB6-824   certification MB6-824

NO.9 An employee's main employment relation with the company is which of the following?
A.A role in the line organization.
B.A job in the line organization.
C.A position in the line organization.
D.An organization unit in the line organization.
Answer: c

certification Microsoft   certification MB6-824   certification MB6-824

NO.10 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.
Answer: d

Microsoft   MB6-824   MB6-824   MB6-824   MB6-824

Le Certificat Microsoft MB6-824 est un passport rêvé par beaucoup de professionnels IT. Le test Microsoft MB6-824 est une bonne examination pour les connaissances et techniques professionnelles. Il demande beaucoup de travaux et efforts pour passer le test Microsoft MB6-824. Pass4Test est le site qui peut vous aider à économiser le temps et l'effort pour réussir le test Microsoft MB6-824 avec plus de possibilités. Si vous êtes intéressé par Pass4Test, vous pouvez télécharger la partie gratuite de Q&A Microsoft MB6-824 pour prendre un essai.

Microsoft MB6-818 examen pratique questions et réponses

Maintenant, beaucoup de professionnels IT prennent un même point de vue que le test Microsoft MB6-818 est le tremplin à surmonter la pointe de l'Industrie IT. Beaucoup de professionnels IT mettent les yeux au test Certification Microsoft MB6-818.

La solution offerte par Pass4Test comprenant un test simulation bien proche de test réel Microsoft MB6-818 peut vous assurer à réussir 100% le test Microsoft MB6-818. D'ailleur, le service de la mise à jour gratuite est aussi pour vous. Maintenant, vous pouvez télécharger le démo gratuit pour prendre un essai.

Choisissez le Pass4Test, choisissez le succès de test Microsoft MB6-818. Bonne chance à vous.

Vous aurez une assurance 100% à réussir le test Microsoft MB6-818 si vous choisissez le produit de Pass4Test. Si malheuresement, vous ne passerez pas le test, votre argent seront tout rendu.

Code d'Examen: MB6-818
Nom d'Examen: Microsoft (AX 2009 Financials)
Questions et réponses: 202 Q&As

MB6-818 Démo gratuit à télécharger: http://www.pass4test.fr/MB6-818.html

NO.1 What functionality is used to enter and reuse specific transaction identification when a record is
updated in journals?
A.Transaction history
B.Identification text
C.Voucher numbers
D.Transaction texts
Answer: D

certification Microsoft   MB6-818   MB6-818 examen   MB6-818

NO.2 At what specific day intervals, can a payment day be specified on the Payment day form in Microsoft
Dynamics AX 2009?
Choose the 2 that apply.
A.Week
B.Month
C.Quarter
D.Year
Answer: AB

Microsoft examen   MB6-818   certification MB6-818   MB6-818

NO.3 Contoso Entertainment Europe (CEE) is the subsidiary of Contoso Entertainment US (CEU).The
Consolidated company does not have any chart of accounts and the subsidiary chart of accounts is being
used in the consolidated company. Which of the following statements are true when this consolidation is
performed in Microsoft Dynamics AX 2009?
A.The Current field must not be selected during the consolidation process.
B.The Consolidation account field must be selected during the consolidation process.
C.The Consolidation account field must not be selected during the consolidation process.
D.Enter the consolidation account field in the Chart of accounts of the Subsidiary company.
Answer: C

Microsoft   certification MB6-818   MB6-818 examen   MB6-818

NO.4 The Financial Controller of Contoso decides to restrict the accounts to use in a specific journal. What
setup is used to achieve this in Microsoft Dynamics AX 2009?
A.Transaction control
B.Posting restrictions
C.Journal control
D.Ledger accounts control
Answer: C

Microsoft   MB6-818   certification MB6-818   certification MB6-818   certification MB6-818

NO.5 In Microsoft Dynamics AX 2009, what needs to be set up to view ledger balances in different
currencies, other than the default currency of the company?
A.Set up the other currency for conversion on the Currency convertor tab in the Exchange rates form.
B.Set the Validate currency code to the List option and specify currencies for all ledger accounts in the
Chart of accounts form.
C.Change the default currency to any other currency in the Company information form.
D.It is not possible to view balances in other currencies in Microsoft Dynamics AX 2009.
Answer: A

certification Microsoft   MB6-818   MB6-818   MB6-818   MB6-818 examen

NO.6 The Controller wants to have a bank transaction type which will be mandatory when the vendor
invoices are paid by check. What setup must be made in the Methods of Payment form to achieve this in
Microsoft Dynamics AX 2009?
A.Specify the Bank transaction type in the Methods of payment form.
B.Select the Bank transaction type mandatory check box in the Methods of payment form.
C.Select Bank transaction type is mandatory in the bank accounts form.
D.Specify the Bank transaction type compulsorily and post a vendor payment journal.
Answer: B

Microsoft   certification MB6-818   MB6-818 examen

NO.7 What is the purpose of Balance control accounts in Microsoft Dynamics AX 2009?
A.To monitor the balance after a journal is posted.
B.To monitor only the current balance of an account as transactions are entered in a journal.
C.To monitor only the expected balance of an account as transactions are entered in a journal.
D.To monitor both the current balance and expected balance of an account as transactions are entered in
a journal.
Answer: D

Microsoft   MB6-818 examen   MB6-818 examen

NO.8 Sales tax group can be attached to which of the following options in Microsoft Dynamics AX 2009?
Choose the 3 that apply.
A.Company
B.Customers/Vendors
C.Ledger accounts
D.Ledger budget
Answer: BCD

Microsoft   MB6-818   MB6-818

NO.9 What must be defined in the Bank Parameters form to manage Non-Sufficient Funds in Microsoft
Dynamics AX 2009?
A.Bank groups
B.Bank transaction groups
C.Bank transaction type
D.Bank accounts
Answer: C

certification Microsoft   MB6-818 examen   MB6-818   MB6-818

NO.10 The Controller of Contoso decides to have a validation of dimensions for all the administrative
expense accounts. When a transaction is updated, it verifies that the dimension value entered in the
transaction matches the value specified in the ledger accounts. Which dimension validation is specified
for administrative expense accounts?
A.Fixed
B.Table
C.Default
D.To be filled in
Answer: B

Microsoft   MB6-818   certification MB6-818   certification MB6-818   MB6-818

NO.11 The Accounting Manager of Contoso instructs the Accounts Receivables Administrator not to allow
manual updates for settlement through the open edit transactions option. What must be set up in
Microsoft Dynamics AX 2009 to achieve automatic updates of settlement with an invoice?
Choose the 2 that apply.
A.Enable the Automatic settlement option in the Accounts receivables parameters form.
B.Enable the settlement option in the Posting profiles form for customers.
C.Clear the Automatic settlement check box in the General ledger parameters form.
D.Clear the Automatic settlement check box in the Posting profiles form for customers.
Answer: AB

Microsoft examen   certification MB6-818   certification MB6-818   MB6-818 examen   MB6-818 examen

NO.12 How many Customer groups must be set up in Microsoft Dynamics AX 2009 to create customer
records?
A.Zero
B.One
C.Two
D.Three
Answer: B

certification Microsoft   certification MB6-818   certification MB6-818   MB6-818   certification MB6-818

NO.13 Contoso has a standard vendor payment term of Net 30 days. If an order with a Net 30 days payment
terms is received on August 15, and the invoice is dated September 15; what is the due date for the
invoice in Microsoft Dynamics AX 2009?
A.July 15
B.August 15
C.September 15
D.October 15
Answer: D

certification Microsoft   MB6-818   MB6-818 examen

NO.14 The Accountant of Contoso wants to set up new terms of payment for a vendor that the company is
making late payments to currently. As per the vendor request, the payments now must be made within 10
days. What Payment method must be specified in the Terms of payment form to achieve this in Microsoft
Dynamics AX 2009?
A.COD
B.Net
C.Gross
D.Total
Answer: B

Microsoft examen   MB6-818   certification MB6-818   certification MB6-818

NO.15 What ledger accounts must be specified in the Exchange rates form to track the currency profit and
losses when the exchange adjustment is run in Microsoft Dynamics AX 2009?
A.Realized loss and profit
B.Unrealized loss and profit
C.Simulation loss and profit
D.Exchange adjustment loss and profit
Answer: B

Microsoft   MB6-818   MB6-818   MB6-818   MB6-818

NO.16 From which of the following forms in Microsoft Dynamics AX 2009 do the values, if defined, flow in the
fields, Routing number, Days, Suffix, Drawer, Validate bank accounts, and Post account in the Bank
accounts form?
A.Bank group
B.Chart of accounts
C.Bank transaction type
D.Bank transaction groups
Answer: A

certification Microsoft   certification MB6-818   MB6-818

NO.17 Which option must be selected for the Period in the Methods of payment form to combine all invoices
for customers with the same payment?
A.Invoice
B.Date
C.Week
D.Total
Answer: D

Microsoft examen   MB6-818   MB6-818   MB6-818   MB6-818

NO.18 Contoso has a compensation policy which guarantees its customers a reimbursement of 10% of the
invoice amount in case of product damage and the minimum refund is set to 5%. The customer,
Adventure Inc. makes a purchase of USD 10,000, where more than 50% of the goods are damaged. As
the reimbursement amount is greater than the minimum refund, where is the balance amount that is
payable to the customer, transferred in Microsoft Dynamics AX 2009?
A.Vendor account
B.Customer account
C.Expense account
D.Profit and loss account
Answer: A

Microsoft examen   MB6-818   MB6-818 examen   certification MB6-818   certification MB6-818   MB6-818

NO.19 The Controller decides to give cash discounts to his domestic customer group. A cash discount of 10%
if paid within 5 days from the date of invoice, 5% if paid within 10 days, and 2% if paid within 14 days is
given; how can this scenario be achieved in Microsoft Dynamics AX 2009?
A.For the 14 days 2% code, the 10 days 5% code is selected in the Next discount code list. For the 10
days 5% code, the 5 days 10% code is selected in the Next discount code.
B.For the 10 days 5% code, the 14 days 2% code is selected in the Next discount code list. For the 10
days 5% code, the 5 days 10% code is selected in the Next discount code.
C.For the 5 days 10% code, the 14 days 2% code is selected in the Next Discount Code list. For the 10
days 5% code, the 10 days 5% code is selected in the Next discount code.
D.For the 5 days 10% code, the 10 days 5% code is selected in the Next discount code list. For the 10
days 5% code, the 14 days 2% code is selected in the Next discount code.
Answer: D

Microsoft examen   certification MB6-818   MB6-818 examen

NO.20 How is the exchange rate for the default currency set up to specify the equivalent of 100 units of the
foreign currency?
A.Specify the Express exchange rate as 100 in the General ledger parameters form.
B.Specify the Express exchange rate as 1*100 in the General ledger parameters form.
C.Specify the Express exchange rate as 100 against each foreign currency in the Exchange rates form.
D.The exchange rate for the default currency can be specified only with the equivalent of one unit of the
foreign currency.
Answer: A

Microsoft   MB6-818   certification MB6-818   MB6-818   certification MB6-818   certification MB6-818

NO.21 The Accountant wants to specify a check number manually when generating a payment. What setup
is required for the check number in the Check layout form in Microsoft Dynamics AX 2009?
A.Variable
B.Fixed
C.Free
D.Original
Answer: C

Microsoft   MB6-818   MB6-818 examen   MB6-818

NO.22 Which calculation methods are available for defining the Payment Fee in Microsoft Dynamics AX
2009?
Choose the 2 that apply.
A.Interval
B.Period/Value
C.Amount
D.Percent
Answer: CD

Microsoft   MB6-818   MB6-818   certification MB6-818

NO.23 The tax authority imposes special duties on an item. The duty amounts are added to the net amount
before the Sales tax is calculated. Which of the following options of origin must be set up in Microsoft
Dynamics AX 2009 to calculate the Sales tax?
A.Percentage of net amount
B.Percentage of gross amount
C.Percentage of Sales tax
D.Amount per unit
Answer: B

Microsoft   certification MB6-818   MB6-818   MB6-818   MB6-818

NO.24 Contoso acquires a new fixed asset during January of this year and the To date for the depreciation
was set to December 31, 2008. The Controller notices that there is no depreciation posted since July 1,
2008 and instructs the Accountant to post the amounts for all depreciations from July through December
in a single journal line, where the date is set to December 31, 2008 on the proposed journal lines. Which
feature in Microsoft Dynamics AX 2009, helps the Accountant to achieve this?
A.Summarize depreciation
B.Depreciation convention
C.Derogatory depreciation
D.Extraordinary depreciation
Answer: A

Microsoft   certification MB6-818   MB6-818 examen   MB6-818   MB6-818 examen   MB6-818

NO.25 What ledger accounts must be set up to capture the cash receipts and disbursements for cash flow
forecasting in Microsoft Dynamics AX 2009?
Choose the 2 that apply.
A.Liquidity accounts
B.Dependent ledger accounts
C.Total accounts
D.Customer and vendor accounts
Answer: AB

certification Microsoft   MB6-818   MB6-818 examen

NO.26 The Cash-Discount Administration in the Accounts Payable Parameters form is set to Unspecific. The
Accountant of Contoso managing Accounts Payable updates a vendor Invoice for USD 105 with an
obtainable cash discount of USD 10.50. Considering the cash discount, a payment of USD 94.50 must be
made to the vendor. The invoice was settled for USD 95 on the due date. To which account is the
difference of USD 0.50 posted in Microsoft Dynamics AX 2009?
A.Vendors cash discount account.
B.Ledger account specified for cash discount differences.
C.Error account along with the vendors cash discount account.
D.Ledger account specified for penny differences for a cash discount.
Answer: B

Microsoft   MB6-818   MB6-818 examen   MB6-818 examen

NO.27 What is the maximum number of slip copies that can be printed for checks in Microsoft Dynamics AX
2009?
A.One
B.Two
C.Three
D.Four
Answer: B

certification Microsoft   MB6-818 examen   MB6-818   MB6-818 examen

NO.28 The voucher templates in Microsoft Dynamics AX 2009 can be used with which of the following
journals?
Choose the 2 that apply.
A.General journal
B.Fixed asset journal
C.Purchase journal
D.Accounts payable invoice journal
Answer: AD

Microsoft   MB6-818   MB6-818

NO.29 The Controller wants to approve a daily journal posted by a newly appointed accountant. What setup
is required in Microsoft Dynamics AX 2009 to approve daily journals?
A.Select the Active option and assign a user group to the journal in the Journal names form.
B.Select the Active option for the user to approve the transactions in the User form for automatic approval
of the journal.
C.Set permissions at the security level for each module for approval.
D.Approval of transactions cannot be set in Microsoft Dynamics AX 2009.
Answer: A

Microsoft examen   MB6-818   MB6-818   MB6-818   MB6-818

NO.30 What are the row type options available to create a row structure in the Structure designer form in
Microsoft Dynamics AX 2009?
Choose the 2 that apply.
A.Element
B.Total
C.Group Total
D.Calculation
Answer: AD

Microsoft   MB6-818   MB6-818 examen   MB6-818   MB6-818

But que Pass4Test n'offre que les produits de qualité est pour vous aider à réussir le test Microsoft MB6-818 100%. Le test simulation offert par Pass4Test est bien proche de test réel. Si vous ne pouvez pas passer le test Microsoft MB6-818, votre argent sera tout rendu.

Le matériel de formation de l'examen de meilleur Microsoft 70-563

Les produits de Pass4Test a une bonne qualité, et la fréquence de la mise à jour est bien impressionnée. Si vous avez déjà choisi la Q&A de Pass4Test, vous n'aurez pas le problème à réussir le test Microsoft 70-563.

Le test de Certification Microsoft 70-563 devient de plus en plus chaud dans l'Industrie IT. En fait, ce test demande beaucoup de travaux pour passer. Généralement, les gens doivent travailler très dur pour réussir.

Est-que vous s'inquiétez encore à passer le test Certification 70-563 qui demande beaucoup d'efforts? Est-que vous travaillez nuit et jour juste pour préparer le test de Microsoft 70-563? Si vous voulez réussir le test Microsoft 70-563 plus facilement? N'hésitez plus à nous choisir. Pass4Test vous aidera à réaliser votre rêve.

Il y a beaucoup de gans ambitieux dansn l'Industrie IT. Pour monter à une autre hauteur dans la carrière, et être plus proche du pic de l'Industrie IT. On peut choisir le test Microsoft 70-563 à se preuver. Mais le taux du succès et bien bas. Participer le test Microsoft 70-563 est un choix intelligent. Dans l'Industrie IT de plus en plus intense, on doit trouver une façon à s'améliorer. Vous pouvez chercher plusieurs façons à vous aider pour réussir le test.

Code d'Examen: 70-563
Nom d'Examen: Microsoft (Designing and Developing Windows Applications Using the Microsoft .NET Framework 3.5)
Questions et réponses: 135 Q&As

Nous croyons que pas mal de candidats voient les autres site web qui offrent les ressources de Q&A Microsoft 70-563. En fait, le Pass4Test est le seul site qui puisse offrir la Q&A recherchée par les experts réputés dans l'Industrie IT. Grâce à la Q&A de Pass4Test impressionée par la bonne qualité, vous pouvez réussir le test Microsoft 70-563 sans aucune doute.

Aujourd'hui, il y a pleine de professionnels IT dans cette société. Ces professionnels sont bien populaires mais ils ont à être en face d'une grande compétition. Donc beaucoup de professionnels IT se prouver par les tests de Certification très difficile à réussir. Pass4Test est voilà pour offrir un raccourci au succès de test Certification.

70-563 Démo gratuit à télécharger: http://www.pass4test.fr/70-563.html

NO.1 Rate your level of proficiency in planning user interaction and presentation, including planning data
capture, designing user interface components, and designing a data binding strategy.
A. I am considered an expert on this. I have successfully done this multiple times without assistance or
error. I train or supervise others on this activity. Others come to me when they have questions or need
assistance with this.
B. I have successfully done this without assistance and with few errors, but I do not train or supervise
others on this activity.
C. I am proficient at this. I have successfully done this on my own, but I occasionally require assistance
for some types of problems encountered when doing this and/or occasionally make minor errors.
D. I have successfully done this with the assistance of others or specific instructions.
E. I am a novice. I have not yet done this or am learning.
Answer: A

Microsoft   70-563 examen   70-563   70-563 examen

NO.2 You plan to create a Windows application by using the .NET Framework 3.5.
The Windows application must use a proprietary protocol to connect to a Windows Communication
Foundation (WCF) service. The application persists data to a Microsoft SQL Server 2008 database by
using the WCF service.
You need to analyze the feasibility of creating the application.
Which proof of concept should you create?
A. A Windows application that connects to a WCF service by using HTTP
B. A Windows application that connects directly to a SQL Server 2008 database
C. A Windows application that connects to a WCF service by using the proprietary protocol
D. A Windows application that connects to a WCF service by using HTTP and persists data to a SQL
Server database
Answer: C

Microsoft   70-563   certification 70-563   70-563   70-563

NO.3 You are creating a Windows application by using the .NET Framework 3.5.
The application accesses an external Windows Communication Foundation (WCF) service by using the
following contract.
<ServiceContractAttribute(SessionMode:=SessionMode.NotAllowed)> _
Public Interface IOrderService
End Interface
The service contract has multiple operations. The operations will be called by the Windows application
when required.
For a single invocation of the application, you plan to maintain the information of the application state
between subsequent method calls to the WCF service. The application state information cannot be
persisted once the application closes.
You need to ensure that the application can consume the WCF service.
What should you do?
A. Save the information of the application state in the Windows application.
B. Save the information of the application state in a Microsoft SQL Server 2008 database.
C. Save the information of the application state in the HttpContext.Current.Session property.
D. Use the binding and transport elements to support sessions for the WCF service in the Windows
application.
Answer: A

Microsoft   70-563   70-563   certification 70-563   70-563

NO.4 Rate your level of proficiency in validating an application design against specifications, including
analyzing the technical feasibility of application design, validating proof of concept, evaluating a design
against available resources, and evaluating test requirements.
A. I am considered an expert on this. I have successfully done this multiple times without assistance or
error. I train or supervise others on this activity. Others come to me when they have questions or need
assistance with this.
B. I have successfully done this without assistance and with few errors, but I do not train or supervise
others on this activity.
C. I am proficient at this. I have successfully done this on my own, but I occasionally require assistance
for some types of problems encountered when doing this and/or occasionally make minor errors.
D. I have successfully done this with the assistance of others or specific instructions.
E. I am a novice. I have not yet done this or am learning.
Answer: A

Microsoft examen   certification 70-563   70-563

NO.5 Rate your level of proficiency in planning application deployment and maintenance, including planning
for multiple component application development and planning performance monitoring and exception
management strategies.
A. I am considered an expert on this. I have successfully done this multiple times without assistance or
error. I train or supervise others on this activity. Others come to me when they have questions or need
assistance with this.
B. I have successfully done this without assistance and with few errors, but I do not train or supervise
others on this activity.
C. I am proficient at this. I have successfully done this on my own, but I occasionally require assistance
for some types of problems encountered when doing this and/or occasionally make minor errors.
D. I have successfully done this with the assistance of others or specific instructions.
E. I am a novice. I have not yet done this or am learning.
Answer: A

Microsoft   70-563   70-563   70-563

NO.6 Rate your level of proficiency in designing the application architecture, including designing n-layer
architecture, planning a component reuse strategy, and planning multithreaded implementation and user
interface responsiveness.
A. I am considered an expert on this. I have successfully done this multiple times without assistance or
error. I train or supervise others on this activity. Others come to me when they have questions or need
assistance with this.
B. I have successfully done this without assistance and with few errors, but I do not train or supervise
others on this activity.
C. I am proficient at this. I have successfully done this on my own, but I occasionally require assistance
for some types of problems encountered when doing this and/or occasionally make minor errors.
D. I have successfully done this with the assistance of others or specific instructions.
E. I am a novice. I have not yet done this or am learning.
Answer: A

certification Microsoft   certification 70-563   70-563 examen   70-563

NO.7 You have developed a console application by using the Microsoft .NET Framework 1.1. The console
application uses a set of assemblies for the business logic and the data layer.
You plan to convert the console application to a Windows Forms application.
You need to design a conversion strategy by using minimum amount of time and development effort.
What should you do?
A. Convert the console application and all the data layer assemblies to the .NET Framework 3.5.
B. Convert the console application to the .NET Framework 3.5 by using the conversion wizard of Microsoft
Visual Studio .NET 2008.
C. Upgrade the business logic and the data layer assemblies to the .NET Framework 3.5. Convert the
console application to Windows Forms.
D. Retain the business logic and the data layer assemblies as the .NET Framework 1.1 assemblies.
Convert the console application to Windows Forms.
Answer: D

Microsoft   70-563 examen   certification 70-563   certification 70-563

NO.8 You create a Windows application by using the .NET Framework 3.5.
The application is used for stock trading purposes. The application has the following features:
The application is deployed to workstations that contain four monitors.
Only one instance of the application can be run at a time.
The application has a multiple-document interface (MDI).
A third-party control is used on the Windows form to display real-time data by using graphs.
The stack of monitors on each workstation is two monitors high and two monitors wide.
When multiple stock quotes are viewed at the same time, the Windows form has to be extended to
another monitor.
The information has to be viewed across the monitors together.
You need to modify the application to meet the following requirements:
Users can compare two or more stock quotes at the same time.
The Windows form can be maximized and restored to the monitor selected by the user.
Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)
A. Add a Tab control to the Windows form and display one stock quote for each tab.
B. Add a Table control to the Windows form and display one stock quote for each column.
C. Convert the application to a single-document interface (SDI).
D. Allow multiple instances of the application to be run at the same time.
E. Write a code segment in the Load event of the Windows form. Set the Height property to twice the
height of the screen, and set the Width property to twice the width of the screen.
Answer: DE

Microsoft   certification 70-563   70-563 examen   70-563

NO.9 You create a Windows application by using the .NET Framework 3.5.
You review the design for a Windows application that has the following features:
The data layer sends and receives data updates by using Microsoft Messaging Queue (MSMQ) 4.0.
Data is stored in a Microsoft SQL Server 2008 server database instance.
Data from a DataSet object is displayed in a DataGrid control.
The application is deployed to portable computers that can access the corporate network only when
plugged on to it. The data must be most securely stored when the computer is in offline mode.
You need to ensure that the portable computers can update data even when offline.
What should you do?
A. Change the data layer to use a local XML file instead of MSMQ.
B. Change the data layer to use a local data cache along with Microsoft Sync Services instead of MSMQ.
C. Create an ASP.NET Web service to receive data updates from the portable computers.
D. Create a Windows Communication Foundation (WCF) service to send and receive data updates from
the portable computers.
Answer: B

Microsoft examen   70-563   70-563 examen

NO.10 You are creating a Windows application by using the .NET Framework 3.5.
The application is deployed by using the XCopy command. Updates to the application are made available
through a Web site.
The number of users of the application increases.
You need to ensure that all users use the same version of the application.
What should you do?
A. Change the application to use the ClickOnce deployment method.
B. Run the application from a universal naming convention (UNC) path.
C. Create a Microsoft Windows Installer (MSI) package for the application.
D. Write a bootstrap code that ascertains the availability of a new version of the application.
Answer: A

Microsoft   certification 70-563   70-563   70-563   certification 70-563

NO.11 You create a Windows application by using the .NET Framework 3.5.
You plan to evaluate an application design that contains the following specifications:
Common dialog controls are used to browse through files and folders.
Files are saved by using the StreamWriter object.
When the Save button is clicked, a MessageBox control displays a message.
The message warns the user about the requirement for elevated rights.
You need to ensure that the application meets the following requirements:
It works compatibly on Microsoft Windows XP and Windows Vista operating systems.
It follows Windows Vista User Experience guidelines.
It is able to save a physical file outside the application folder when the Save button is clicked.
What change in design should you recommend?
A. Use the isolated storage mechanism to store the file.
B. Enable the user to execute the application as an administrator.
C. Display the SystemIcons.Shield icon next to the Save button and remove the MessageBox control.
D. Write a Windows service that exposes a remoting object to save the file, and then run the service
under the LocalSystem account.
Answer: C

Microsoft   70-563 examen   70-563 examen

NO.12 You create a Windows application by using the .NET Framework 3.5.
You create a Windows user control in the application.
The application contains the following code segment. (Line numbers are included for reference only.)
01 Public Structure FullName
02 Public FirstName As String
03 Public LastName As String
04 End Structure
The user control has a property named UserName of the FullName type. You add the user control to a
Windows form.
During the design phase, the UserName property must be allowed to update the FirstName and
LastName properties as comma-delimited values in the property window.
You need to ensure that the properties in the FullName structure are represented as string values.
What should you do?
A. Create a TypeConverter class for the FullName structure.
B. Override the ToString method for the FullName structure.
C. Implement the IFormattable interface for the FullName structure.
D. Implement the IConvertible interface for the FullName structure.
Answer: A

Microsoft   70-563   certification 70-563   70-563

NO.13 You maintain a Windows Forms application and an ASP.NET application.
The Windows Forms application has the following features:
The application impersonates the logged-on user.
The data is stored in a Microsoft SQL Server 2008 database.
The application grants user access to data by calling the IPrincipal.IsInRole method on the basis of user
roles.
The ASP.NET application uses forms-based authentication to authenticate users.
You need to share the login and user role information between the Windows Forms application and the
ASP.NET application.
What should you do?
A. Modify the Windows Forms application to use client application services instead of impersonation.
B. Add a WebBrowser control to the Windows Forms application to display the ASP.NET login page.
C. Enable integrated security between the Windows Forms application and the Microsoft SQL Server
2008 database.
D. Enable SQL Server authentication between the Windows Forms application and the Microsoft SQL
Server 2008 database.
Answer: A

Microsoft   70-563   certification 70-563   70-563   70-563

NO.14 How many years of experience do you have in developing Windows-based applications by using
Windows Forms technologies in .NET Framework 3.5?
A. I have not done this yet.
B. Less than 6 months
C. 6 months 1 year
D. 1 2 years
E. 2 3 years
F. More than 3 years
Answer: A

Microsoft examen   70-563   70-563   70-563   70-563 examen

NO.15 You create a Windows application by using the .NET Framework 3.5.
You create a Windows user control in the application.
The application contains the following code segment. (Line numbers are included for reference only.)
01 public struct FullName
02 {
03 public string FirstName { get; set; }
04 public string LastName { get; set; }
05 }
The user control has a property named UserName of the FullName type. You add the user control to a
Windows form.
During the design phase, the UserName property must be allowed to update the FirstName and
LastName properties as comma-delimited values in the property window.
You need to ensure that the properties in the FullName structure are represented as string values.
What should you do?
A. Create a TypeConverter class for the FullName structure.
B. Override the ToString method for the FullName structure.
C. Implement the IFormattable interface for the FullName structure.
D. Implement the IConvertible interface for the FullName structure.
Answer: A

certification Microsoft   70-563   70-563 examen   70-563

NO.16 You are creating a Windows application by using the .NET Framework 3.5.
The application will access an external Windows Communication Foundation (WCF) service by using the
following contract.
[ServiceContract(SessionMode=SessionMode.NotAllowed)]
public interface IOrderService
{
}
The service contract has multiple operations. The operations will be called by the Windows application
when required.
For a single invocation of the application, you plan to maintain the information of the application state
between subsequent method calls to the WCF service. The application state information cannot be
persisted once the application closes.
You need to ensure that the application can consume the WCF service.
What should you do?
A. Save the information of the application state in the Windows application.
B. Save the information of the application state in a Microsoft SQL Server 2008 database.
C. Save the information of the application state in the HttpContext.Current.Session property.
D. Use the binding and transport elements to support sessions for the WCF service in the Windows
application.
Answer: A

certification Microsoft   70-563   70-563   certification 70-563   70-563 examen

NO.17 You create a Windows application by using the .NET Framework 3.5.
The application uses a Microsoft SQL Server 2008 database.
You discover that the application is non-responsive and performs slowly at certain times during the day.
Twenty-five additional users are added to the application to meet a deadline.
You need to ensure that all users experience a consistent level of high application performance
throughout the day. You want to achieve this goal by using minimum development effort.
Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)
A. Use the CommandBehavior.CloseConnection option and the DataReader objects.
B. Perform a stress test on all the components. Change all the components to inherit from the
System.EnterpriseServices.ServicedComponent class.
C. Create a Test Harness application to test the serialization of DataSet objects. Serialize multiple
versions of the DataSet objects whenever possible.
D. Use the SQL Server Profiler tool to identify functions that call stored procedures in the database. Divide
these functions into multiple queries.
E. Create a Test Harness application to test the performance of remoting proxies. Change the remoting
proxies to use the TcpChannel class instead of the HttpChannel class.
Answer: AE

Microsoft examen   70-563 examen   70-563   70-563 examen   70-563 examen   certification 70-563

NO.18 Rate your level of proficiency in designing security implementation, including designing data
transmission and storage, authentication and authorization, and role-based security.
A. I am considered an expert on this. I have successfully done this multiple times without assistance or
error. I train or supervise others on this activity. Others come to me when they have questions or need
assistance with this.
B. I have successfully done this without assistance and with few errors, but I do not train or supervise
others on this activity.
C. I am proficient at this. I have successfully done this on my own, but I occasionally require assistance
for some types of problems encountered when doing this and/or occasionally make minor errors.
D. I have successfully done this with the assistance of others or specific instructions.
E. I am a novice. I have not yet done this or am learning.
Answer: A

certification Microsoft   certification 70-563   70-563 examen   70-563 examen

NO.19 You are creating a Windows application by using the .NET Framework 3.5.
You plan to evaluate the design strategy of the application.
The design strategy contains the following elements:
The application uses the ClickOnce deployment.
The application runs on computers that have the Microsoft Windows 98 operating system, a 256-MB RAM,
and a 1-GB disk space.
The application transmits the collected data to a server by using a Windows Communication Foundation
(WCF) service.
The application must meet the following requirements:
It displays real-time data.
It gathers data from a serial interface.
The code written for it is small and can be easily deployed.
You discover that the design strategy does not function properly.
You need to ensure that the design strategy functions appropriately.
What should you recommend?
A. Transmit data directly to the database server.
B. Change the application to a console application.
C. Upgrade the operating system to Microsoft Windows XP.
D. Create a Microsoft Windows Installer .MSI installation package for the application.
Answer: C

certification Microsoft   70-563   certification 70-563

NO.20 You create a Windows application by using the .NET Framework 3.5.
The application is used for data entry purposes. The application has the following features:
Data is read from a shared Microsoft SQL Server 2008 database instance.
Data entered and saved by the users is temporarily stored in a local SQL Server 2008 Compact edition
database instance.
When the users log off from the application, new records from the local database instance are
synchronized to the shared database.
You discover that the performance of the application is affected when multiple users log off from the
application at the same time.
You need to design a performance improvement strategy for the application by using minimum amount of
cost, time, and development effort.
What should you do?
A. Upgrade the local database to Microsoft SQL Server 2008 Express edition.
B. Modify the application to synchronize data into the shared database as soon as the users save their
work.
C. Write a Web service that synchronizes data to the shared database. Call the service when the users
log off from the application.
D. Store the data entered by the users temporarily in an XML file. Merge the new records from the local
XML file to the shared database when the users log off from the application.
Answer: B

certification Microsoft   70-563   certification 70-563   70-563   70-563 examen   70-563

Votre vie changera beaucoup après d'obtenir le Certificat de Microsoft 70-563. Tout va améliorer, la vie, le boulot, etc. Après tout, Microsoft 70-563 est un test très important dans la série de test Certification Microsoft. Mais c'est pas facile à réussir le test Microsoft 70-563.