Archive for the ‘Microsoft Certification’ Category

70-229 study guide

Wednesday, June 8th, 2011

“Designing and Implementing Databases with Microsoft SQL Server 2000, Enterprise Edition”, also known as 70-229 exam, is a Microsoft certification.With the complete collection of questions and answers, Test4actual has assembled to take you through 105 Q&As to your 70-229 Exam preparation. In the 70-229 exam resources, you will cover every field and category in Microsoft certifications helping to ready you for your successful Microsoft Certification.
Test4actual is famous as the leading provider in IT certification matetial providing. It has a team of experienced IT experts who can update the study materials just at the time when it is available. And these experts can ensure the accuracy of the materials. Test4actual promises to help you pass the 70-229 exam at your first attampt. If you fails unfuturnately, test4actul will give you a full refund.

You need study hard to prepare for this difficult but valuable exam. You must get it to get a better job a higher soeciety satuts and fatter salary. However, you know clearly that it is not so easy to pass this exam. With the help of test4actual, it becomes easier. Come to visit test4actual, download the free 70-229 demos to check out the quality of the study materials before you make your final decision.

70-505 Free Demos

Thursday, May 26th, 2011

Exam 70-505:

TS: Microsoft .NET Framework 3.5, Windows Forms Application Development

Published:  February 05, 2009

Language(s):  English, French, German, Japanese, Spanish, Chinese (Simplified)

Audience(s):  Developers

Technology: Microsoft Visual Studio 2008

Type: Proctored Exam

QUESTION NO: 1

You are creating a Windows application by using the .NET Framework 3.5. You plan to create a form that might result in a time-consuming operation. You use the QueueUserWorkItem method and a Label control named lblResult. You need to update the users by using the lblResult control when the process has completed the operation. Which code segment should you use?   

A. Private Sub DoWork(ByVal myParameter As Object) ‘thread work Invoke(New MethodInvoker(AddressOf ReportProgress))End SubPrivate Sub ReportProgress () Me.lblResult.Text = “Finished Thread”End Sub

B. Private Sub DoWork (ByVal myParameter As Object) ‘thread work Me.lblResult.Text = “Finished Thread”End Sub

C. Private Sub DoWork (ByVal myParameter As Object)’thread work System.Threading.Monitor.Enter(Me) Me.lblResult.Text = “Finished Thread” System.Threading.Monitor.Exit(Me)End Sub

D. Private Sub DoWork (ByVal myParameter As Object) ‘thread work System.Threading.Monitor.TryEnter(Me) ReportProgress()End SubPrivate Sub ReportProgress () Me.lblResult.Text = “Finished Thread”End Sub

Answer: A

QUESTION NO: 2

You are creating a Windows component by using the .NET Framework 3.5. The component will be used in Microsoft Word 2007 by using a ribbon button. The component uploads large files to a network file share. You find that Word 2007 becomes non-responsive during the upload. You plan to create your own thread to execute the upload. You need to ensure that the application completes the upload efficiently. What should you do?   

A. Use the AsyncResult.SyncProcessMessage method.

B. Call the BeginInvoke method, perform the upload, and then call the EndInvoke method.

C. Retrieve a WaitHandle from an implementation of the IAsyncResult interface before the upload.

D. Set the IsCompleted property on an implementation of the IAsyncResult interface before the upload.

Answer: B

QUESTION NO: 3

You are creating a Windows Forms application by using the .NET Framework 3.5. The application requires a thread that accepts a single integer parameter. You write the following code segment. (Line numbers are included for reference only.) 01 Dim myThread As Thread = New Thread(New _    ParameterizedThreadStart(AddressOf DoWork))02 myThread.Start(100)03  You need to declare the method signature of the DoWork method. Which method signature should you use?   

A. Public Sub DoWork()

B. Public Sub DoWork(ByVal nCounter As Integer)

C. Public Sub DoWork(ByVal oCounter As Object)

D. Public Sub DoWork(ByVal oCounter As System.Delegate)

Answer: C

QUESTION NO: 4

You are creating a Windows application by using the .NET Framework 3.5. The Windows application has the print functionality. You create an instance of a BackgroundWorker component named backgroundWorker1 to process operations that take a long time. You discover that when the application attempts to report the progress, you receive a System.InvalidOperationException exception when executing the backgroundWorker1.ReportProgress method. You need to configure the BackgroundWorker component appropriately to prevent the application from generating exceptions. What should you do?   

A. Set the Result property of the DoWorkEventArgs instance to True before you attempt to report the progress.

B. Set the CancellationPending property of backgroundWorker1 to True before you attempt to report the background process.

C. Set the WorkerReportsProgress property of backgroundWorker1 to True before you attempt to report the background process.

D. Report the progress of the background process in the backgroundWorker1_ProgressChanged event.

Answer: C

QUESTION NO: 5

You are creating a Windows application for graphical image processing by using the .NET Framework 3.5. You create an image processing function and a delegate. You plan to invoke the image processing function by using the delegate. You need to ensure that the calling thread meets the following requirements: It is not blocked when the delegate is running.It is notified when the delegate is complete. What should you do?   

A. Call the Invoke method of the delegate.

B. Call the BeginInvoke and EndInvoke methods of the delegate in the calling thread.

C. Call the BeginInvoke method by specifying a callback method to be executed when the delegate is complete. Call the EndInvoke method in the callback method.

D. Call the BeginInvoke method by specifying a callback method to be executed when the delegate is complete. Call the EndInvoke method of the delegate in the calling thread.

Answer: C

QUESTION NO: 6

You are creating a Windows application by using the .NET Framework 3.5. The Windows application has print functionality. You create an instance of a BackgroundWorker component named backgroundWorker1. You discover that when the application attempts to cancel the background process, you receive a System.InvalidOperationException exception on the following code segment: backgroundWorker1.CancelAsync() You need to configure the BackgroundWorker component appropriately to prevent the application from generating exceptions. What should you do?   

A. Cancel the background process in the backgroundWorker1_DoWork event.

B. Set the IsBusy property of backgroundWorker1 to True before you attempt to cancel the progress.

C. Set the WorkerSupportsCancellation property of backgroundWorker1 to True before you attempt to cancel the progress.

D. Set the DoWorkEventArgs Cancel property to True in the backgroundWorker1_DoWork event handler before you attempt to cancel the background process.

Answer: C

QUESTION NO: 7

You are creating a Windows Forms application by using the .NET Framework 3.5. You write the following code segment to bind a list of categories to a drop-down list. (Line numbers are included for reference only.) 01 Dim cnnNorthwind As OleDbConnection = _    New OleDbConnection(connectionString)02 Dim cmdCategory As OleDbCommand = New OleDbCommand( _    “SELECT CategoryID, CategoryName FROM Categories ORDER BY     CategoryName”, cnnNorthwind)03 Dim daCategory As OleDbDataAdapter = _    New OleDbDataAdapter(cmdCategory)04 Dim dsCategory As DataSet = New DataSet()05 daCategory.Fill(dsCategory)06 You need to ensure that the drop-down list meets the following requirements: Displays all category names.Uses the category ID as the selected item value. Which code segment should you add at line 06?   

A. ddlCategory.DataSource = dsCategoryddlCategory.DisplayMember = “CategoryName”ddlCategory.ValueMember = “CategoryID”

B. ddlCategory.DataSource = dsCategory.Tables(0)ddlCategory.DisplayMember = “CategoryName”ddlCategory.ValueMember = “CategoryID”

C. ddlCategory.DataBindings.Add(”DisplayMember”, _ dsCategory, “CategoryName”)ddlCategory.DataBindings.Add(”ValueMember”, _ dsCategory, “CategoryID”)

D. ddlCategory.DataBindings.Add(”DisplayMember”, _ dsCategory.Tables(0), “CategoryName”)ddlCategory.DataBindings.Add(”ValueMember”, _ dsCategory.Tables(0), “CategoryID”)

Answer: B

QUESTION NO: 8

You are creating a Windows Forms application by using the .NET Framework 3.5. The application stores a list of part numbers in an integer-based array as shown in the following code segment. (Line numbers are included for reference only.) 01 Dim parts() As Integer = _    {105, 110, 110, 235, 105, _    135, 137, 205, 105, 100, 100}02 03 For Each item In results04  tbResults.Text += item.ToString() & vbCrLf05 Next You need to use a LINQ to Objects query to perform the following tasks: Obtain a list of duplicate part numbers.Order the list by part numbers.Provide the part numbers and the total count of part numbers in the results. Which code segment should you insert at line 02?   

A. Dim results = (From n In parts _ Order By n _ Group n By n Into n1 = Group _ Select Key = n, Count = n1.Count()).Distinct()

B. Dim results = (From n In parts _ Group n By n Into n1 = Group _ Where n1.Count() > 1 _ Order By n1 _ Select Key = n, Count = n1.Count())

C. Dim results = (From n In parts _ Order By n _ Group n By n Into n1 = Group _ Where n1.Count() > 1 _ Select n1)

D. Dim results = (From n In parts _ Order By n _ Group n By n Into n1 = Group _ Where n1.Count() > 1 _ Select Key = n, Count = n1.Count())

Answer: D

QUESTION NO: 9

You are creating a Windows Forms application by using the .NET Framework 3.5. The application is used by a financial service provider. You discover that the service provider transfers large amounts of data by using XML. You need to read and validate the XML documents in the most time-efficient manner. Which technology should you use?   

A. The XmlReader class

B. The XmlDocument class

C. The XmlResolver class

D. The LINQ to XML method

Answer: A

QUESTION NO: 10

You are creating a Windows Forms application for a book retailer by using the .NET Framework 3.5. You are creating a Windows form to allow users to maintain a list of books in an XML document. You write the following code segment. (Line numbers are included for reference only) 01 XmlDocument xmlDoc = new XmlDocument(); 02 XmlNode bookstore = xmlDoc.CreateElement(”bookstore”);03 xmlDoc.AppendChild(bookstore);04 XmlElement book = xmlDoc.CreateElement(”book”);05 book.SetAttribute(”ISBN”, strISBN);06 XmlElement title = xmlDoc.CreateElement(”title”);07 The variables strTitle and strISBN are already initialized with the necessary values. You need to ensure that after the form is complete the XML document has the following structure. <bookstore>  <book ISBN=”n-nnn-nnnnn-nn”>   <title>Title</title>  </book></bookstore> Which code segment should you insert at line 07?    

A. title.InnerText = strTitlebook.AppendChild(title)bookstore.AppendChild(book)

B. title.InnerText = strTitlebook.AppendChild(bookstore)bookstore.AppendChild(title)

C. title.Value = strTitlebook.AppendChild(title)bookstore.AppendChild(book)

D. title.Value = strTitlebookstore.AppendChild(title)book.AppendChild(bookstore)

Answer: A

QUESTION NO: 11

You are creating a Windows Forms application by using the .NET Framework 3.5. You need to populate a list box control along with category names by using a DataReader control. Which code segment should you use?   

A. Dim reader As OleDbDataReaderDim cnnNorthwind As OleDbConnection = New _ OleDbConnection(connectionString)cnnNorthwind.Open()Dim cmdCategory As OleDbCommand = New _ OleDbCommand(”SELECT * FROM Categories”, cnnNorthwind)reader = cmdCategory.ExecuteReader()While reader.Read() lbCategories.Items.Add(reader(”CategoryName”))End WhilecnnNorthwind.Close()

B. Dim reader As OleDbDataReaderDim cnnNorthwind As OleDbConnection = New _ OleDbConnection(connectionString)cnnNorthwind.Open()Dim cmdCategory As OleDbCommand = New _ OleDbCommand(”SELECT * FROM Orders”, cnnNorthwind)reader = cmdCategory.ExecuteReader()While reader.NextResult() lbCategories.Items.Add(reader(”CategoryName”))End WhilecnnNorthwind.Close()

C. Dim reader As OleDbDataReaderDim cnnNorthwind As OleDbConnection = New _ OleDbConnection(connectionString)cnnNorthwind.Open()Dim cmdCategory As OleDbCommand = New _ OleDbCommand(”SELECT * FROM Orders”, cnnNorthwind)reader = cmdCategory.ExecuteReader()cnnNorthwind.Close()While reader.Read() lbCategories.Items.Add(reader(”CategoryName”))End WhilecnnNorthwind.Close()

D. Dim reader As OleDbDataReaderUsing cnnNorthwind As OleDbConnection = New _ OleDbConnection(connectionString) cnnNorthwind.Open() Dim cmdCategory As OleDbCommand = New _  OleDbCommand(”SELECT * FROM Orders”, cnnNorthwind) reader = cmdCategory.ExecuteReader()End UsingWhile reader.Read() lbCategories.Items.Add(reader(”CategoryName”))End WhilecnnNorthwind.Close()

Answer: A

QUESTION NO: 12

You are creating a Windows application for a financial services provider by using the .NET Framework 3.5. You write the following code segment in the form. (Line numbers are included for reference only.) 01 Dim queryString As String = _    “SELECT CategoryID, CategoryName FROM Categories”02 The connection string for the financial services database is stored in the variable named connString. You need to ensure that the form populates a DataGridView control named gridCAT. Which code segment should you add at line 02?   

A. Dim adapter As OleDbDataAdapter = _ New OleDbDataAdapter(queryString, connString)Dim categories As DataSet = New DataSet()adapter.Fill(categories, “Categories”)gridCAT.DataSource = categories.Tables(0)

B. Dim conn As OleDbConnection = New OleDbConnection(connString)conn.Open()Dim cmd As OleDbCommand = New OleDbCommand(queryString, conn)Dim reader As OleDbDataReader = cmd.ExecuteReader()gridCAT.DataSource = reader

C. Dim adapter As OleDbDataAdapter = New _  OleDbDataAdapter(queryString, connString)Dim categories As DataSet = New DataSet()adapter.Fill(categories, “Categories”)gridCAT.DataSource = categories

D. Dim conn As OleDbConnection = New OleDbConnection(connString)conn.Open()Dim cmd As OleDbCommand = New OleDbCommand(queryString, conn)Dim reader As OleDbDataReader = cmd.ExecuteReader()gridCAT.DataSource = reader.Read()

Answer: A

QUESTION NO: 13

You are creating a Windows Forms application by using the .NET Framework 3.5. You write a code segment to connect to a Microsoft Access database and populate a DataSet. You need to ensure that the application meets the following requirements: It displays all database exceptions. It logs all other exceptions by using the LogExceptionToFile. Which code segment should you use?   

A. Try categoryDataAdapter.Fill(dsCategory)Catch ex As SqlException  MessageBox.Show(ex.Message, “Exception”)  LogExceptionToFile(ex.Message)End Try

B. Try categoryDataAdapter.Fill(dsCategory)Catch ex As SqlException  MessageBox.Show(ex.Message, “Exception”)Catch ex As Exception  LogExceptionToFile(ex.Message)End Try

C. Try categoryDataAdapter.Fill(dsCategory)Catch ex As OleDbException  MessageBox.Show(ex.Message, “Exception”)Catch ex As Exception  LogExceptionToFile(ex.Message)End Try

D. Try categoryDataAdapter.Fill(dsCategory)Catch ex As OleDbException  MessageBox.Show(ex.Message, “Exception”)  LogExceptionToFile(ex.Message)End Try

Answer: C

QUESTION NO: 14

You are creating a Windows Forms application for inventory management by using the .NET Framework 3.5. The application provides a form that allows users to maintain stock balances.  The form has the following features: A dataset named dsStockBalance to store the stock informationA business component named scInventory  The scInventory component provides a method named Save.  You need to ensure that only the modified stock balances of dsStockBalance are passed to the scInventory.Save method. Which code segment should you use?   

A. If dsStockBalance.HasChanges() = True Then dsStockBalance.AcceptChanges()End IfdsUpdates = dsStockBalance.GetChanges()scInventory.Save(dsStockBalance)

B. If dsStockBalance.HasChanges() = True Then dsUpdates = dsStockBalance.GetChanges()End IfdsStockBalance.AcceptChanges()scInventory.Save(dsStockBalance)

C. If dsStockBalance.HasChanges() = True Then dsStockBalance.AcceptChanges() dsUpdates = dsStockBalance.GetChanges() scInventory.Save(dsUpdates)End If

D. If dsStockBalance.HasChanges() = True Then dsUpdates = dsStockBalance.GetChanges() dsStockBalance.AcceptChanges() scInventory.Save(dsUpdates)End If

Answer: D

QUESTION NO: 15

You are creating a Windows Forms application by using the .NET Framework 3.5. You use LINQ expressions to read a list of customers from the following XML file. <customers>  <customer birthDate=”4/1/1968″> Paul Koch </customer>  <customer birthDate=”7/5/1988″> Bob Kelly </customer>  <customer birthDate=”3/24/1990″> Joe Healy </customer>  <customer birthDate=”9/15/1974″> Matt Hink </customer>  <customer birthDate=”1/7/2004″> Tom Perham </customer>  <customer birthDate=”9/23/1946″> Jeff Hay </customer>  <customer birthDate=”5/15/1947″> Kim Shane </customer>  <customer birthDate=”4/24/1979″> Mike Ray </customer></customers> You need to obtain a list of names of customers who are 21 years of age or older. Which code segment should you use?   

A. Dim customers As XDocument = XDocument.Load(”Customers.xml”)Dim results = From c In customers.Descendants(XName.Get(”customer”)) _ Where DateTime.Parse(c.Attribute(”birthDate”)).AddYears(21) < _ DateTime.Now _ Select c.Attribute(”Name”)

B. Dim customers As XDocument = XDocument.Load(”Customers.xml”)Dim results = From c In customers.Descendants(XName.Get(”customer”)) _ Where DateTime.Parse(c.Attribute(”birthDate”)).AddYears(21) < _ DateTime.Now _ Select FullName = c.Value

C. Dim customers As XDocument = XDocument.Load(”Customers.xml”)Dim results = From c In customers.Descendants(XName.Get(”customer”)) _ Where DateTime.Parse(c.Attribute(”birthDate”)).AddYears(21) < _ DateTime.Now _ Select c.Element(”customer”)

D. Dim customers As XDocument = XDocument.Load(”Customers.xml”)Dim results = From c In customers.Descendants() _ Where DateTime.Parse(c.Attribute(”birthDate”)).AddYears(21) < _ DateTime.Now _ Select FullName = c.Value

Answer: B

QUESTION NO: 16

You are creating a Windows Forms application by using the .NET Framework 3.5. You plan to modify a list of orders within a DataGridView control in the application. You need to ensure that a value is required in the first column of the grid control. Which code segment should you use?   

A. Private Sub dataGridOrders_CellValidated( _ ByVal sender As Object, _ ByVal e As DataGridViewCellEventArgs) _ Handles dataGridOrders.CellValidated  If e.ColumnIndex = 0 Then   Dim cellValue = dataGridOrders(e.ColumnIndex, e.RowIndex).Value    If cellValue = Nothing _    Or String.IsNullOrEmpty(cellValue.ToString()) Then     dataGridOrders.EndEdit()    End If  End IfEnd Sub

B. Private Sub dataGridOrders_Validated( _ ByVal sender As Object, _ ByVal e As EventArgs) _ Handles dataGridOrders.Validated  If dataGridOrders.CurrentCell.ColumnIndex = 0 Then   Dim cellValue = dataGridOrders.Text    If cellValue = Nothing Or _    String.IsNullOrEmpty(cellValue.ToString()) Then     dataGridOrders.EndEdit()    End If  End IfEnd Sub

C. Private Sub dataGridOrders_Validating( _ ByVal sender As Object, _ ByVal e As CancelEventArgs) _ Handles dataGridOrders.Validating  If dataGridOrders.CurrentCell.ColumnIndex = 0 Then   Dim cellValue = dataGridOrders.Text    If cellValue = Nothing Or _    String.IsNullOrEmpty(cellValue.ToString()) Then     e.Cancel = True    End If  End IfEnd Sub

D. Private Sub dataGridOrders_CellValidating( _ ByVal sender As Object, _ ByVal e As DataGridViewCellValidatingEventArgs) _ Handles dataGridOrders.CellValidating  If e.ColumnIndex = 0 Then   If e.FormattedValue = Nothing _   Or String.IsNullOrEmpty(e.FormattedValue.ToString()) Then    e.Cancel = True   End If  End IfEnd Sub

Answer: D

QUESTION NO: 17

You are creating a Windows Forms application by using the .NET Framework 3.5. The application displays employee names by using the TreeView control.  You need to implement the drag-and-drop functionality in the TreeView control. Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)    

A. Set the AllowDrop property to true. Create an event handler for the DragOver event.

B. Set the AllowDrop property to true. Create an event handler for the ItemDrag event to call the DoDragDrop method.

C. Set the AllowDrop property to true. Create an event handler for the DragEnter event to call the DoDragDrop method.

D. Create an event handler for the DragDrop event to handle the move or copy by itself.

E. Create an event handler for the DragEnter event to handle the move or copy by itself.

Answer: BD

QUESTION NO: 18

You are creating a Windows Forms application by using the .NET Framework 3.5. You plan to display detailed help instructions for each control in the form. You create a help file. You configure a HelpProvider component on the form. You need to display the help file for the control that is focused when the F1 key is pressed. Which method of the HelpProvider class should you call for each control?   

A. SetShowHelp

B. SetHelpString

C. SetHelpKeyword

D. SetHelpNavigator

Answer: A

QUESTION NO: 19

You are creating a Windows Forms application by using the .NET Framework 3.5. Users use the application to process and approve invoices. A list of recently accessed invoices is stored in the users settings section of the App.config file. You need to maintain the list of invoices from the last persisted state. What should you do?   

A. Use the Properties.Settings object during runtime.

B. Use the Properties.Settings.Default object during runtime.

C. Use the ConfigurationManager.AppSettings object during runtime.

D. Use the ConfigurationManager.GetSection method during runtime.

Answer: B

QUESTION NO: 20

You are creating a Windows Forms application by using the .NET Framework 3.5. You have resource files in five different languages. You need to test the application in each language. What should you do?   

A. Set the CurrentCulture property explicitly to the respective culture for each language.

B. Set the CurrentCulture property explicitly to IsNeutralCulture for each language.

C. Set the CurrentUICulture property explicitly to IsNeutralCulture for each language.

D. Set the CurrentUICulture property explicitly to the respective culture for each language.

Answer: D

70-662 Study Giude

Thursday, May 26th, 2011

Microsoft 70-662 test which is also called Microsoft Exchange Server 2010, Configuring is a Microsoft certification test. To pass this examination with high quality you need to spend plenty of time reviewing the knowledge of relative Microsoft certification tests. You also have to study hard or you will fail this exam.

It is very difficult for most of the candidates to prepare the tests all by their own. They often turn to some IT certification materials. There are many kinds of study materials for these tests on the market today. Test4actual is known to be the leader of the IT certification providers. Test4actual has the best team of experts who will update the 70-662 study materials regularly.

Test4actual promises to provide you with the most accurate and up-to-date study materials for the 70-662 test. It has totally 157 questions and answers which covers all the test points occurs in the real exams.

The following are some 70-662 demos from test4actual for you to refer to:

QUESTION NO: 1

Your network contains an Active Directory forest. All domain controllers run Windows Server 2008.

You need to ensure that you can install an Exchange Server 2010 server in the Active Directory forest.

What should you do?

A. From the Exchange Server 2010 installation media, run setup /ps.

B. From the Exchange Server 2010 installation media, run setup /NewProvisionedServer.

C. From the Windows Server 2008 installation media, run adprep.exe /forestprep.

D. From the Windows Server 2008 installation media, run adprep.exe /domainprep.

Answer: A

QUESTION NO: 2

You plan to deploy an Exchange Server 2010 Client Access server on a new server. The server will be a member of a database availability group (DAG). You need to identify the operating system required for the planned deployment. The solution must minimize software costs. Which operating system should you identify?   

A. Windows Server 2008 Service Pack 2 (SP2) Enterprise

B. Windows Server 2008 R2 Foundation

C. Windows Server 2008 R2 Standard

D. Windows Server 2008 Service Pack 2 (SP2) Web

Answer: C

QUESTION NO: 3

You have an Active Directory forest that contains one domain named contoso.com. The functional level of both the forest and the domain is Windows Server 2003. You have an Exchange Server 2003 organization. All servers have Exchange Server 2003 Service Pack 2 (SP2) installed. You plan to transition to Exchange Server 2010. You need to prepare the Active Directory environment for the deployment of the first Exchange Server 2010 Service Pack 1 (SP1) server. What should you run?

A. Setup.com /Preparead

B. Setup.com /PrepareDomain

C. Setup.com /PrepareLegacyExchangePermissions

D. Setup.com /PrepareSchema

Answer: A

QUESTION NO: 4

You have an Exchange organization that contains Exchange 2000 Server and Exchange Server 2003 Service Pack 2 (SP2) servers. You plan to transition the organization to Exchange Server 2010. You need to prepare the Exchange organization for the deployment of Exchange Server 2010 Mailbox, Client Access, and Hub Transport servers. What should you do first?

A. Install the Active Directory Connector (ADC).

B. Delete all Recipient Update Service (RUS) objects

C. Deploy an Exchange Server 2010 Edge Transport server.

D. Remove all Exchange 2000 Server servers from the organization.

Answer: D

QUESTION NO: 5

You have an Active Directory forest that contains three sites named Site1, Site2, and Site3.

Each site contains two Exchange Server 2007 Client Access servers, two Mailbox servers,

and two Hub Transport servers. All Exchange Server 2007 servers have Exchange Server 2007 Service Pack 1 (SP1) installed. You need to ensure that you can deploy Exchange Server 2010 servers in Site1. You must achieve this goal by using the minimum amount of administrative effort. What should you do?

A. Upgrade all Client Access servers in the organization to Exchange Server 2007 Service

Pack 2 (SP2).

B. Upgrade all Exchange Server 2007 servers in Site1 to Exchange Server 2007 Service

Pack 2 (SP2).

C. Upgrade all Exchange Server 2007 servers in the organization to Exchange Server 2007 Service Pack 2 (SP2).

D. Upgrade all Exchange Server 2007 servers in Site1 and all Client Access servers in the organization to Exchange Server 2007 Service Pack 2 (SP2).

Answer: D

70-671 Practise Exams

Friday, May 20th, 2011

Looking for the right job not easy is not as easy as turning your hand, but we can get a suitable job if we have special expertise.       If you have a certification of Microsoft, then a lot of big companies will gladly welcome you as a member of them. There are many job opportunities for IT professionals and before you become an IT professional, you need to pass some IT certification exams. But unfortunately, get the Microsoft certification is not easy at all, because you need to pass some Microsoft tests which you can not believe it is easy. For all the reasons, you probably need some help. Test4actual is a recognised leader in certification preparation for IT professionals, providing the most comprehensive choice of training available for those seeking industry-standard accreditation.

“Design & Providing MS Vol Licensing Solutions to Small & Med”, also known as 70-671 exam, is a Microsoft certification. The Microsoft 70-671 practise test that test4actual can provide are based on the extensive research and real-world experience from our online trainers with over 10 years of IT and certification experience. Test4actual replicates the actual online exam environment by providing a computer based, timed testing environment.

Test4actual experts regularly update our study materials with new questions and explanations as soon as they became available. You will receive the most reliable and up-to-date information available anywhere on the market.

Test4actual offers you exclusive 70-671 study materials for a detailed and accurate look inside the current 70-671 exam ovjectives. Test4actual is so helpful for people who will face the IT certification tests because it can help the people about the materials for the test.

70-665 study guide

Wednesday, May 18th, 2011

People who have a computer or other similar device must know about Microsoft Corporation is a multinational corporation which manufactures, licenses, and also supports a wide range of products and services related to computing. To most of us, we can get a satisfied job if we can get the certificaiton of Microsoft. Get a good job in a big company can enhance your prestige and social status but the way to get the good iob is not easy at all. A Microsoft cetfification is popular in many big companies now a day. It is the finest way to make your dream come true through passing the IT certification exams.

“PRO: Unified Communications (available in 2010)”, also known as 70-665 exam, is one of the hottest Microsoft exams. Test4actual provided questions and answers related to the Microsoft test and through those questions you can learn what kind of questions which probably will come out in the real Microsoft exams. Besides the credibility of the sources, if you look for the place which provides the IT certification materials, you also need to make sure if the source guarantee you for your best mark on your exam. Our test4actual practise questions and answers are designed by highly experienced and certified trainers that have put together the best 70-665 exam questions that will keep success on your 70-665 exam. Test4actual is not afraid to guarantee that you will pass the test with good grades if you curious with the materials quality, you can check out the demo before you decide to buy the IT certification materials.

Test4actual is so helpful for people who will face the IT ceterfication test because it can help the people learn about the materials for the test.

The newest 70-685 braindumps

Wednesday, September 22nd, 2010

Because we updated the 70-685 at the first time, so many of our customers has been updated by the first time, and all passed the exam! Test4actual has been committed to one year of free updates. Changes in the 70-685 soon, resulting in lots of braindumps providers can not guarantee that update, but Test4actual will not happen, because test4actual own prometric system, so you can keep up to date! 70-685 is a very timely example of

 

 

70-685 DEMO :

 

1. All client computers on your company network run Windows 7 and are members of a Windows Server 2008 R2 domain. The R&D department staff are local administrators on their computers and are members of the R&D global security group.

A new version of a business software application is available on the network.

You plan to apply an AppLocker security policy to the R&D group.

You need to ensure that members of the R&D group are not allowed to upgrade the software.

What should you do?

A. Create an Audit only restriction based on the version of the software.

B. Create an Audit only restriction based on the publisher of the software.

C. Create an Enforce rule restriction based on the version of the software.

D. Create an Enforce rule restriction based on the publisher of the software.

Answer: C

 

2. All client computers on your company network run Windows 7 and are members of an Active Directory Domain Services domain.

AppLocker is configured to allow only approved applications to run.

Employees with standard user account permissions are able to run applications that install into the user profile folder.

You need to prevent standard users from running unauthorized applications.

What should you do?

A. Create Executable Rules by selecting the Create Default Rules option.

B. Create Windows Installer Rules by selecting the Create Default Rules option.

C. Create the following Windows Installer Rule:

Deny �C Everyone – %OSDRIVE%\Users\<user name>\Downloads\*

D. Create the following Executable Rule:

Deny – Everyone – %OSDRIVE%\Users\<user name>\Documents\*

Answer: A

 

3. All client computers on your company network were recently upgraded from Windows Vista to Windows 7.

Several employees use a scanner to import document images into a database. They install a new scanning application on their computers. The application updates the device driver for the scanners as part of the installation process.

Employees report that the application can no longer connect to the scanner.

You need to ensure that the employees can use the scanner.

What should you do?

A. Roll back the device driver to the previous version.

B. Reinstall the application in Windows Vista compatibility mode.

C. Set the application compatibility properties to run the application as an administrator.

D. Restart the computer by using the System Configuration tool to load only basic devices and services.

Answer: A

 

4. This question is the first in a series of questions that all present the same scenario.

For your convenience, the scenario is repeated in each question. Each question presents a different goal and answer choices, but the text of the scenario is exactly the same in each question in this series.

Start of repeated scenario

You are an enterprise desktop support technician for Consolidated Messenger.

Network Configuration

The company has three offices named Office1, Office2, and Office3. The offices connect to each other over the Internet by using VPN connections. Each office has an 802.11g wireless access point. All wireless access points are configured to use Radius01 for authentication.

Active Directory Configuration

The network contains one Active Directory domain named consolidatedmessenger.com. The relevant organizational unit structure is shown in the following diagram.

The relevant Group Policy objects (GPOs) in the domain are configured as shown in the following table.

Group Policy name

Linked to OU

Desktops

Desktops

Laptops

Laptop

ServerComputers

Servers

AllComputers

CorpComputers

AllUsers

UserAccounts

Applications

The relevant applications on the network are shown in the following table.

Application name

Type

Description

FinanceApp1

Windows Application

A financial analysis application that is used by the finance users.

ERPApp1

Windows Application

A new ERP application that is deployed in a pilot project.

Server Configuration

The relevant servers are configured as shown in the following table.

Server name

Server role(s)

Office

DC01

Domain controller, DNS

Office1

DC02

Domain controller, DNS

Office1

File01

File server, DHCP

Office1

Radius01

Network Policy Server (NPS)

Office1

DC03

Domain controller, DNS, DHCP

Office2

DC04

Domain controller, DNS, DHCP

Office3

Client Configuration

Each office has 500 desktop computers that run Windows 7 Enterprise.

There are 250 mobile users that travel regularly between all three offices. The mobile users have laptop computers that run Windows 7 Enterprise.

To prevent the spread of malware, the company restricts the use of USB devices and only allows the use of approved USB storage devices.

Printers

The marketing group has several printers that are shared on File01. A shared printer name Printer1 is a high-performance, black-and-white printer. A shared printer named Printer2 is a high-definition, photo-quality, color printer. Printer2 should only be used to print marketing brochures.

End of repeated scenario

The chief financial officer (CFO) releases new guidelines that specify that only users from finance are allowed to run FinanceApp1.

Users in the Marketing OU report that they can run FinanceApp1.

You need to ensure that only users in the Finance OU can run FinanceApp1.

What should you do?

A. In the AllComputers GPO, create a new AppLocker executable rule.

B. In the Desktops GPO and the Laptops GPO, create a new Windows Installer rule.

C. In the AllComputers GPO, create a software restriction policy and define a new hash rule.

D. In the Desktops GPO and the Laptops GPO, create a software restriction policy and define a new path rule.

Answer: A

 

5. This question is the first in a series of questions that all present the same scenario.

For your convenience, the scenario is repeated in each question. Each question presents a different goal and answer choices, but the text of the scenario is exactly the same in each question in this series.

Start of repeated scenario

You are an enterprise desktop support technician for City Power & Light.

City Power & Light is a utility company. The company has a main office and a branch office. The main office is located in Toronto. The branch office is located in Boston. The main office has 1,000 employees. The branch office has 10 employees.

Active Directory Configuration

The network contains a single Active Directory domain named cpandl.com. The functional level of the forest is Windows Server 2008 R2.

Server Configuration

All servers run Windows Server 2008 R2. The relevant servers in the main office are configured as shown in the following table.

Server name

Role

IP address

DC1

Global catalog, DNS server

192.168.1.5

DC2

Global catalog, DNS server

192.168.2.2

DC3

Global catalog, DNS server

192.168.3.2

DC4

Global catalog, DNS server

192.168.4.2

CA1

Enterprise root certification authority (CA)

192.168.1.4

Server1

File and Print Server, DHCP server, VPN server

192.168.1.3

Server2

File and Print Server, VPN server

192.168.2.3

Server3

File and Print Server

192.168.3.3

Server4

DirectAccess server

192.168.1.7

All computers in the main office are configured to use DHCP. All computers in the branch office are configured to use static IP addresses.

User Information

  • ·All user accounts are standard user accounts.
  • ·All client computers run Windows 7 Enterprise.
  • ·Each portable computer has a PPTP-based VPN connection to the internal network.

Corporate Security Guidelines

  • ·All users must be granted the least privileges possible.
  • ·All locally stored documents must be encrypted by using Encrypting File System (EFS).
  • ·The hard disk drives on all portable computers must be encrypted by using Windows BitLocker Drive Encryption (BitLocker).
  • ·All encryption certificates must be stored on smart cards.

End of repeated scenario

The company is deploying a new application.

When users attempt to install the application, they receive an error message indicating that they need administrative privileges to install it.

You need to recommend a solution to ensure that users can install the application. The solution must adhere to the corporate security guidelines.

What should you recommend?

A. Publish the application by using a Group Policy.

B. Disable User Account Control (UAC) by using a Group Policy.

C. Add all domain users to the local Power Users group by using Restricted Groups.

D. Add the current users to the local Administrators group by using Group Policy preferences.

Answer: A

 

6. This question is the first in a series of questions that all present the same scenario.

For your convenience, the scenario is repeated in each question. Each question presents a different goal and answer choices, but the text of the scenario is exactly the same in each question in this series.

Start of repeated scenario

You are an enterprise desktop support technician for A. Datum Corporation.

Active Directory Configuration

The company has three offices. The offices are configured as shown in the following table.

Office

Organizational unit (OU)

Active Directory site

Number of users

Main office

MainOffice

Main office site

1,200

Branch office 1

BranchOffice1

Branch 1 site

500

Branch office 2

BranchOffice2

Branch 2 site

400

 

 

 

 

The network contains a single Active Directory domain named adatum.com. Two Group Policy objects (GPOs) are configured as shown in the following table.

GPO name

Links

Configuration

Software Updates

MainOffice OU

Configures computers that run Windows 7 in the main office to use a server named WSUS1 for Windows Updates

Certificate Enrollment

adatum.com domain

Enables autoenrollment for computer certificates

Servers

The relevant servers in the main office are configured as shown in the following table.

Server name

Role

DC1

Domain controller, DNS server

DC2

Domain controller, DNS server

DHCP1

DHCP server

WSUS1

Windows Server Update Services (WSUS) server

Web1

Web server

CA1

Enterprise root certification authority (CA)

NPS1

Network Policy Server(NPS)

 

 

Wireless Network

A wireless network is implemented in the main office. The wireless network is configured to use WPA2-Enterprise security.

Client Configuration

All client computers run Windows 7 Enterprise and are configured to use DHCP. Windows Firewall is disabled on all client computers.

All computers in the research department have Windows XP Mode and Windows Virtual PC installed. You deploy a custom Windows XP Mode image to the research department computers. An application named App1 is installed in the image.

Each research department computer has the following hardware:

  • ·4 GB of RAM
  • ·Intel Core i7 processor
  • ·500-GB hard disk drive

Corporate Security Policy

The corporate security policy includes the following requirements:

  • ·Users without domain accounts must be denied access to internal servers.
  • ·All connections to the company��s wireless access points must be encrypted.
  • ·Only employees can be configured to have user accounts in the Active Directory domain.
  • ·The hard disk drives on all portable computers must be encrypted by using Windows BitLocker Drive Encryption (BitLocker).

End of repeated scenario

Users in the research department report that they cannot run App1 or Windows XP Mode.

You need to ensure that all research department users can run App1. You need to achieve this goal by using the minimum amount of administrative effort.

What should you do?

A. Approve all Windows 7 updates on WSUS1.

B. Enable hardware virtualization on the research department computers.

C. Give each member of the research department a computer that has an Intel Core i5 processor.

D. Request that a domain administrator create a GPO that configures the Windows Remote Management (WinRM) settings.

Answer: B

Test4actual 70-452 study guide

Wednesday, September 22nd, 2010

Lots people failed the 70-452, because the 70-452 was changed, now the test4actual had update the newest 70-452 exam, so many people buy the 70-452 braindumps from test4actual, becasue our 70-452 are the real exam questions and have 100% correct answers! if you want to take 70-452, please choose test4actual, we are sure you will pass the exam with good score!

Still hesitant? See the DEMO first

 

1. You design a Business Intelligence (BI) solution by using SQL Server 2008.

You plan to create a SQL Server 2008 Reporting Services (SSRS) solution that contains five sales dashboard reports.

Users must be able to manipulate the reports’ parameters to analyze data.

You need to ensure that the following requirements are met:

��Users can manipulate the parameters for data analysis in a single trip to the data source.

��Reports are automatically rendered as soon as they are accessed for the first time.

Which two tasks should you perform? (Each correct answer presents part of the solution. Choose two.)

A. Filter data by using expressions.

B. Specify the default values for each parameter.

C. Create an available values list for each parameter.

D. Create report parameters by using query parameters to filter data at the data source.

Answer: AB

 

2. You design a SQL Server 2008 Reporting Services (SSRS) solution. You create a report by using Microsoft Visual Studio .NET 2008.

The report contains the following components:

��A dataset named Customer that lists all active customers and their details. The dataset accepts no parameters.

��A dataset named SalesHistory that lists all sales transactions for a specified time period and accepts year and month as parameters.

You need to ensure that a summary of sales transactions is displayed for each customer after the customer details.

Which component should you add to the report?

A. List

B. Table

C. Matrix

D. Subreport

Answer: D

 

3. You design a Business Intelligence (BI) solution by using SQL Server 2008.

The solution includes a SQL Server 2008 Analysis Services (SSAS) database. The database contains a data mining structure that uses a SQL Server 2008 table as a data source. A table named OrderDetails contains detailed information on product sales. The OrderDetails table includes a column named Markup.

You build a data mining model by using the Microsoft Decision Trees algorithm. You classify Markup as discretized content.

The algorithm produces a large number of branches for Markup and results in low confidence ratings on predictable columns.

You need to verify whether the Markup values include inaccurate data.

What should you do?

A. Modify the content type of Markup as Continuous.

B. Create a data mining dimension in the SSAS database from OrderDetails.

C. Create a data profile by using SQL Server 2008 Integration Services (SSIS).

D. .Create a cube in SSAS. Use OrderDetails as a measure group. Recreate the data mining structure and mining model from the cube data.

Answer: C

 

4. You design a Business Intelligence (BI) solution by using SQL Server 2008.

The solution contains a SQL Server 2008 Analysis Services (SSAS) database. A measure group in the database contains log entries of manufacturing events. These events include accidents, machine failures, production capacity metrics, and other activities.

You need to implement a data mining model that meets the following requirements:

��Predict the frequency of different event types.

��Identify short-term and long-term patterns.

Which algorithm should the data mining model use?

A. the Microsoft Time Series algorithm

B. the Microsoft Decision Trees algorithm

C. the Microsoft Linear Regression algorithm

D. the Microsoft Logistic Regression algorithm

Answer: A

 

5. You design a Business Intelligence (BI) solution by using SQL Server 2008.

The solution includes a SQL Server 2008 Analysis Services (SSAS) database. A cube in the database contains a large dimension named Customers. The database uses a data source that is located on a remote server.

Each day, an application adds millions of fact rows and thousands of new customers.

Currently, a full process of the cube takes several hours.

You need to ensure that queries return the most recent customer data with the minimum amount of latency.

Which cube storage model should you use?

A. hybrid online analytical processing (HOLAP)

B. relational online analytical processing (ROLAP)

C. multidimensional online analytical processing (MOLAP)

D. automatic multidimensional online analytical processing (automatic MOLAP)

Answer: A

Microsoft 70-680 Braindumps

Wednesday, September 8th, 2010

If you want to get the MCTS Certification,you should pass any exams first !

 

70-680 is one of them! Lots people want to pass the exam! But 70-680 was always updated, with the result that many people can not! Do not worry now, because test4actual can keep time updates, as 70-680, test4actual is the world’s first update only IT certification material, because we have prometric center, so all we can to keep updated on any subject!

Still as the same, look at it under the DEMO

 

 

1. You have a computer that runs Windows 7. The computer has a single volume.

You install 15 applications and customize the environment.

You complete the following actions:.Create an export by using Windows Easy Transfer.Create a system image by using Backup and Restore.Install the User State Migration Tool (USMT) and run Scanstate

The disk on the computer fails. You replace the disk.

You need to restore the environment to the previous state.

What should you do?

A. Install Windows 7, install USMT, and then run Loadstate.

B. Install Windows 7 and then import the Windows Easy Transfer package.

C. Start the computer from a Windows Recovery Environment (Windows RE) disk and then run Bcdboot.exe.

D. Start the computer from a Windows Recovery Environment (Windows RE) disk and then restore the system image.

Answer: D

 

2. Your network consists of one Active Directory domain. You have two computers named Computer1 and Computer2 that run Windows 7. Both computers are members of the domain.

From Computer1, you can recover all Encrypting File System (EFS) encrypted files for users in the domain.

You need to ensure that you can recover all EFS encrypted files from Computer2.

What should you do?

A. On Computer1, back up %systemroot%\DigitalLocker. On Computer2, restore %systemroot%\DigitalLocker.

B. On Computer1, export the data recovery agent certificate. On Computer2, import the data recovery agent certificate.

C. On Computer1, run Secedit.exe and specify the /export parameter. On Computer2, run Secedit.exe and specify the /import parameter.

D. On Computer1, run Cipher.exe and specify the /removeuser parameter. On Computer2, run Cipher.exe and specify the /adduser parameter.

Answer: B

 

3. You have a computer that runs Windows 7. The computer has System Protection enabled.

You need to retain only the last System Protection snapshot of the computer. All other snapshots must be deleted.

What should you do?

A. Run Disk Cleanup for Programs and Features.

B. Run Disk Cleanup for System Restore and Shadow Copies.

C. From the System Protection Restore settings, select Turn off System Restore.

D. From the System Protection Restore settings, select Only restore previous versions of files.

Answer: B

 

4. You have a computer that runs Windows 7.

You have a system image of the computer.

You need to restore a single file from the system image. You must achieve this goal in the minimum amount of time.

What should you do first?

A. From Disk Management, select Attach VHD.

B. From Backup and Restore, select Restore my files.

C. Restart the computer and run System Restore.

D. Restart the computer and run System Image Recovery.

Answer: A

 

5. You have a computer that runs Windows 7.

You need to identify how much disk space is occupied by previous versions.

What should you do?

A. At a command prompt, run Diskpart.

B. At a command prompt, run Vaultcmd.

C. From System, view the System Protection settings.

D. From the properties of drive C, view the previous versions settings.

Answer: C

http://www.certtop.com

6. You have a computer that runs Windows 7.

You manually create a system restore point.

You need to restore a copy of a file stored on drive C from two days ago. You must achieve this goal in the minimum amount of time.

What should you do?

A. From Recovery, select System Restore.

B. From Backup and Restore, select Restore my files.

C. From the command prompt, run Wbadmin get items.

D. From the properties of the file, select Previous Versions.

Answer: D

 

7. You have a computer that runs Windows 7.

You add a new hard disk drive to the computer and create a new NTFS partition.

You need to ensure that you can use the Previous Versions feature on the new drive.

What should you do?

A. From Disk Management, convert the new disk to a dynamic disk.

B. From System Properties, configure the System Protection settings.

C. From System and Security, enable BitLocker Drive Encryption (BitLocker).

D. From the properties of the new drive, create a share and modify the caching settings.

Answer: B

 

8. You have a computer that contains the folders shows in the following table.

Folder name

Folder location

Data1

C:\Users\User1

Data2

C:\users\User1

You accidentally delete the Data1 folder.

You need to restore the contents of the Data1 folder. The solution must not overwrite any changes to the Data2 folder.

What should you do?

A. From Recovery, restore a system restore point.

B. From the Previous Versions tab of the User1 folder, click Copy.

C. From the Sharing tab of the User1 folder, modify the Caching settings.

D. Start the computer and then press F8. Restore the Last Known Good Configuration.

Answer: B

 

9. You need to back up your Encrypting File System (EFS) certificate. You must achieve this goal in the minimum amount of time.

What should you do?

A. Run Cipher.exe /x.

B. Run Ntbackup.exe /p.

C. From Backup and Restore, click Back up now.

D. From Backup and Restore, click Create a system image.

Answer: A

 

10. You need to reduce the amount of space currently being used to store system restore points.

What should you do?

A. Run Disk Cleanup.

B. Run Msconfig.exe.

C. Configure disk quotas.

D. Configure Windows Backup.

Answer: A

 

Had read DEMO yes? Do you found it was been updated it? Interested? Why wait? Click here to start your journey by 70-680

70-682 exam questions

Monday, August 30th, 2010

Newest Microsoft 70-682  is put on shelves on test4actual.com. It is all prepared for the candidates who are planning to take this Microsoft 70-682 and get the Pro: Upgrading to Windows 7 MCITP Enterprise Desktop Support Technician certification. Using Test4actual Microsoft 70-682 test questions  material to prepare for the exam is the easiest way to pass Microsoft 70-682 exam at present.

Most of our customers came here to ask for this 70-682 exam questions , but we are so sorry because we dont have it at that time,but now we can tell you the latest news of this Microsoft 70-682 exam exam .

Download Microsft 70-682 exam dumps from our demo link which shows on our site. PDF or test engine as you like to read by yourself. There are 150 Q&As in the Microsoft 70-682 test questions  material, so we should remember each question and the correct answer as we can, after we study the exam course well we also should make lots of practice, use the correct exam material to test by ourself then take the exam .

70-293 practice questions

Tuesday, May 18th, 2010

 

http://www.test4actual.com/70-293

 

1. You are a network administrator for your company. The network contains Windows Server 2003 computers and Windows XP Professional client computers. All computers are members of the same Active Directory forest. The company uses a public key infrastructure (PKI) enabled application to manage marketing data. Certificates used with this application are managed by the application administrators. You install Certificate Services to create an offline stand-alone root certification authority (CA) on one Windows Server 2003 computer. You configure a second Windows Server 2003 computer as a stand-alone subordinate CA. You instruct users in the marketing department to enroll for certificates by using the Web enrollment tool on the stand-alone subordinate CA. Some users report that when they attempt to complete the enrollment process, they receive an error message on their certificate, as shown in the exhibit. (Click the Exhibit button.) Other users in the marketing department do not report receiving the error. You need to ensure that users in the marketing department do not continue to receive this error message. You also need to ensure that only users in the marketing department trust certificates issued by this CA. You create a new organizational unit (OU) named Marketing. What else should you do?

 

 

A. Place all marketing department computer objects in the Marketing OU. Create a new Group Policy object (GPO) and link it to the Marketing OU. Publish the root CA’s root certificate in the Trusted Root Certification Authorities section of the GPO.

B. Place all marketing department user objects in the Marketing OU. Create a new Group Policy object (GPO) and link it to the Marketing OU. In the User Configuration section of the GPO, configure a certificate trust list (CTL) that contains the subordinate CA’s certificate.

C. Place all marketing department computer objects in the Marketing OU. Create a new Group Policy object (GPO) and link it to the Marketing OU. In the Computer Configuration section of the GPO, configure a certificate trust list (CTL) that contains the subordinate CA’s certificate.

D. Place all marketing department user objects in the Marketing OU. Create a new Group Policy object (GPO) and link it to the Marketing OU. In the User Configuration section of the GPO, configure a certificate trust list (CTL) that contains the root CA’s certificate.

Answer: D

 

2. Servers in your environment run Windows Server 2003. You plan to configure a highly available file server. You need to choose the appropriate high-availability technology and the minimum Windows Server 2003 edition for this server. Which technology and edition should you choose? (Each correct answer presents part of the solution. Choose two.)

A. failover clustering

B. Network Load Balancing

C. Windows Server 2003, Standard Edition

D. Windows Server 2003, Enterprise Edition

Answer: A D

 

3. You are the network administrator for Contoso, Ltd. The network consists of a single Active Directory domain named contoso.com. The functional level of the domain is Windows Server 2003. The domain contains Windows Server 2003 computers and Windows XP Professional computers. The domain consists of the containers shown in the exhibit. (Click the Exhibit button.) All production server computer accounts are located in an organizational unit (OU) named Servers. All production client computer accounts are located in an OU named Desktops. There are Group Policy objects (GPOs) linked to the domain, to the Servers OU, and to the Desktops OU. The company recently added new requirements to its written security policy. Some of the new requirements apply to all of the computers in the domain, some requirements apply to only servers, and some requirements apply to only client computers. You intend to implement the new requirements by making modifications to the existing GPOs. You configure 10 new Windows XP Professional computers and 5 new Windows Server 2003 computers in order to test the deployment of settings that comply with the new security requirements by using GPOs. You use the Group Policy Management Console (GPMC) to duplicate the existing GPOs for use in testing. You need to decide where to place the test computer accounts in the domain. You want to minimize the amount of administrative effort required to conduct the test while minimizing the impact of the test on production computers. You also want to avoid linking GPOs to multiple containers. What should you do?

 

 

A. Place all test computer accounts in the contoso.com container.

B. Place all test computer accounts in the Computers container.

C. Place the test client computer accounts in the Desktops OU and the test server computer accounts in the Servers OU.

D. Create a child OU under the Desktops OU for the test client computer accounts. Create a child OU under the Servers OU for the test server computer accounts.

E. Create a new OU named Test under the contoso.com container. Create a child OU under the Test OU for the test client computer accounts. Create a second child OU under the Test OU for the test server computer accounts.

Answer: E

http://www.certtop.com/70-293.html

 

4. Your company has a single Active Directory directory service domain. All servers in your environment run Windows Server 2003. You have a stand-alone server that serves as a Stand-alone root certification authority (CA). You need to ensure that a specific user can back up the CA and configure the audit parameters on the CA. What should you do?

A. Assign the user account to the CA Admin role.

B. Add the user account to the local Administrators group.

C. Grant the user the Back up files and directories user right.

D. Grant the user the Manage auditing and security log user right.

Answer: B

 

5. You are a network administrator for your company. You install Windows Server 2003, Enterprise Edition on two servers named Server1 and Server2. You configure Server1 and Server2 as a two-node server cluster. Server1 and Server2 are connected to a shared fiber-attached array. You configure the server cluster for file sharing. You configure Server1 as the preferred owner of the file sharing resources. You perform the following backups by using the Backup or Restore Wizard. Tuesday Wednesday Server1 Normal backup including system state Incremental backup and Automated System Recovery (ASR) backup Server2 Normal backup including system state Incremental backup and ASR backup On Thursday morning, Server2 experiences a hard disk failure. The failed disk contains only the operating system for Server2. You evict Server2 from the server cluster. You need to recover Server2 and restore it to the cluster. You need to minimize data loss and recovery time. What should you do?

 

 

A. Restore the quorum disk signature and data from the Tuesday backup of Server1, and add Server2 to the server cluster.

B. Restore Server2 by using ASR, and add Server2 to the server cluster.

C. Restore the Tuesday backup of Server2, and add Server2 to the server cluster.

D. Restore the Tuesday normal backup and the Wednesday incremental backup of Server2, and add Server2 to the server cluster.

Answer: B

6. You are the network administrator for your company. The network consists of a single Active Directory domain. All computers on the network are members of the domain. The domain contains a Windows Server 2003 computer named Server1. You are planning a public key infrastructure (PKI) for the company. You want to deploy a certification authority (CA) on Server1. You create a new global security group named Cert Administrators. You need to delegate the tasks to issue, approve, and revoke certificates to members of the Cert Administrators group. What should you do?

A. Add the Cert Administrators group to the Cert Publishers group in the domain.

B. Configure the Certificates Templates container in the Active Directory configuration naming context to assign the Cert Administrators group the Allow – Write permission.

C. Configure the CertSrv virtual directory on Server1 to assign the Cert Administrators group the Allow – Modify permission.

D. Assign the Certificate Managers role to the Cert Administrators group.

Answer: D

http://www.exam4actual.com/70-293.html

 

7. Your company has a single Active Directory directory service domain. All servers in your environment run Windows Server 2003. Client computers run Windows XP or Windows Vista. You plan to create a security update scan procedure for client computers. You need to choose a security tool that supports all the client computers. Which tool should you choose?

A. UrlScan Security Tool

B. Enterprise Scan Tool (EST)

C. Malicious Removal Tool (MRT)

D. Microsoft Baseline Security Analyzer (MBSA)

Answer: D

 

8. Your company has a single Active Directory directory service domain. Servers in your environment run Windows Server 2003. Client computers run Windows XP or Windows Vista. You plan to create an internal centrally managed security update infrastructure for client computers. You need to choose a security update management tool that supports all the client computers. Which tool should you choose?

A. Microsoft Assessment and Planning (MAP) Toolkit

B. Microsoft Baseline Security Analyzer (MBSA)

C. Microsoft System Center Operations Manager

D. Windows Server Update Services (WSUS)

Answer: D

 

9. Your company has an Active Directory directory service domain. All servers run Windows Server 2003. You are developing a security monitoring plan. You must monitor the files that are stored in a specific directory on a member server. You have the following requirements. Log all attempts to access the files.Retain log information until the full weekly backup occurs. You need to ensure that the security monitoring plan meets the requirements. What should your plan include?

A. Configure a directory service access audit policy. Increase the maximum size of the security log.

B. Configure a directory service access audit policy. Set the system log to overwrite events older than 7 days.

C. Configure an object access audit policy for the directory. Increase the maximum size of the system log.

D. Configure an object access audit policy for the directory. Set the security log to overwrite events older than 7 days.

Answer: D

http://www.test4actual.com/70-680.html

 

10. You are a network administrator for your company. The network consists of multiple physical segments. The network contains two Windows Server 2003 computers named Server1 and Server2, and several Windows 2000 Server computers. Server1 is configured with a single DHCP scope for the 10.250.100.0/24 network with an IP address range of 10.250.100.10 to 10.250.100.100. Several users on the network report that they cannot connect to file and print servers, but they can connect to each other’s client computers. All other users on the network are able to connect to all network resources. You run the ipconfig.exe /all command on one of the affected client computers and observe the information in the following table.

You need to configure all affected client computers so that they can communicate with all other hosts on the network. Which two actions should you take? (Each correct answer presents part of the solution. Choose two.)

 

 

A. Disable the DHCP service on Server2.

B. Increase the IP address range for the 10.250.100.0/24 scope on Server1.

C. Add global DHCP scope options to Server1 for default gateway, DNS servers, and WINS servers.

D. Delete all IP address reservations in the scope on Server1.

E. Run the ipconfig.exe /renew command on all affected client computers.

F. Run the ipconfig.exe /registerdns command on all affected client computers.

Answer: A E

 

 

Here is the other Microsoft exams : http://www.scp-500.com

Exam : Microsoft MB5-292

Tuesday, March 9th, 2010

Exam : Microsoft MB5-292
Title :Microsoft Point of Sale 1.0
Update : Demo
1.If a firewall other than the Windows Firewall is in use on a store’s network, what action must be taken for Microsoft Point of Sale to work properly?
A.Open the firewall for the port used by Point of Sale.
B.Disable the firewall.
C.Give all Point of Sale users permissions on the main computer.
D.None of the above.
Correct:A
2.What is the name of the default MSDE instance installed with Microsoft Point of Sale?
A.(local)
B.\MSPOS
C.\MSPOSInstance
D.\MSPOSPractice
Correct:C
3.Practice mode uses what database?
A.The store database.
B.A backup database.
C.The practice database.
D.None of the above.
Correct:C
4.Microsoft Point of Sale works on which operating systems?(Choose the 2 that apply.)
A.Windows XP SP2.
B.Windows Server 2003.
C.Windows 2000.
D.Windows Millennium Edition.
Correct:A B
5.What is the first step for using practice mode?
A.Set up the practice mode database.
B.Switch to practice mode.
C.Manually create some ‘dummy’ items.
D.Create a special employee record.
Correct:A
6.After installing Microsoft Point of Sale, how many days may pass before the product must be activated?
A.1 day
B.10 days
C.20 days
D.60 days
Correct:C
7.What composes a sales tax?
A.Items.
B.Tax authorities.
C.Prices.
D.None of the above.
Correct:B
8.Which of the following is NOT an option for the “Cost Update Method” in Microsoft Point of Sale Manager?
A.Last Cost
B.Weighted Average
C.FIFO
D.None
Correct:C

http://www.test4actual.com/MB5-292.html

9.To setup the Touchless Tendering feature, which of the following options or configurations is NOT required?
A.Setup Credit and Debit tender types
B.Configure the Validation mask on each Credit and Debit tender type
C.Enable the Verify via EDC checkbox on each Credit and Debit tender type
D.Enable the Touchless Tendering options in Manager under Tools | Options | Tender
Correct:C
10.What causes an exchange rate to go into effect at the register?
A.Assigning a currency with an exchange rate to an active tender type.
B.Using the currency calculator.
C.Having cashiers do manual calculations.
D.None of the above.
Correct:A
11.Which step is NOT required in order for the currency calculator to be available at the register:
A.Select “Use currency calculator” on the Tender tab of the Options dialog box.
B.Set up a cash tender type.
C.Specify the tender type that will be used to give change at the register.
D.Set up denominations for a cash tender type.
Correct:C
12.Before you can ring up a sale, tender types must be set up where?
A.In the Tender window.
B.In Manager.
C.In the Options dialog box.
D.None of the above.
Correct:B
13.Currencies are used for what?
A.Defining the types of payment accepted by the store.
B.Defining accepted currencies and exchange rates for the store.
C.Defining the country where the store is located.
D.None of the above.
Correct:B
14.Typically, you have one receipt format for each type of what?
A.Receipt printer.
B.Receipt.
C.Invoice.
D.Report.
Correct:B
15.You have recently signed an agreement to accept the American Express card. You have created a new tender type named AMEX; however, the tender does not appear in the POS when tendering a sale. What should you do to display the new tender?
A.Perform a Z report at each POS register
B.Mark the “Verify using EDC” option on the tender properties
C.Settle the existing credit card batch
D.Configure the Validation Format on the tender
Correct:A

Test4actual MB5-292 exam Features

Tuesday, March 9th, 2010

With the complete collection of questions and answers, Test4actual has assembled to take you through 180 Q&A to your MB5-292 exam preparation. In the MB5-292 exam resources, you will cover every field and category in Microsoft Business Solutions helping to ready you for your successful Microsoft Certification.

Free MB5-292 Demo Download
Test4actual offers free demo for Microsoft Business Solutions MB5-292 exam (Microsoft Point of Sale 1.0). You can check out the interface, question quality and usability of our practice exams before you decide to buy it. We are the only one site can offer demo for almost all products.

Microsoft Point of Sale 1.0:MB5-292 exam

Tuesday, March 9th, 2010

Product Description
Exam Number/Code: MB5-292
Exam Name: Microsoft Point of Sale 1.0
Questions and Answers:180Q&A
Update Time:2010-1-16
Price:$109.00
With the complete collection of questions and answers, Test4actual has assembled to take you through 180 Q&A to your MB5-292 exam preparation. In the MB5-292 exam resources, you will cover every field and category in Microsoft Business Solutions helping to ready you for your successful Microsoft Certification.

Exam : MBS MB7-223

Monday, March 8th, 2010

Exam : MBS MB7-223
Title : Navision 4.0 Warehouse Management
Version : Demo
1. If you delete a put-away instruction or some of the lines in an instruction, how can you find the lines again?
A. You cannot find the lines again: therefore, do not delete put-away instructions.
B. You can recreate the lines only from the posted receipt.
C. You can recreate the lines both from the posted receipt or the put-away worksheet.
D. You can recreate the lines only from the put-away worksheet.
Answer: C
2. Which criteria does the program not use when it suggests bins for put-away?
A. The put-away template that warehouse management has set up for the warehouse.
B. The weight, cubage and special storage requirements of the item or stockkeeping unit.
C. The distance of the bin from the shipping area.
D. The capacity, bin type and bin ranking of the bins.
Answer: C
3. The program keeps separate records for all but one of the following:
A. Registered put-aways
B. Posted warehouse shipments
C. Registered picks
D. Registered cross-docks
Answer: D
4. On a warehouse put-away, why would you use the function Split Line on a line with Action Type Place?
A. To place some of the items in a different bin than that suggested by the program.
B. To indicate that two different warehouse employees must put the items away in different bins.
C. To put away an item that was out of place.
D. To take some of the items from a different bin than that suggested by the program.
Answer: A
5. Company X is a large company with complex warehousing operations, several warehousing locations,and a dedicated warehouse staff. You are a warehouse employee working for Company X in the receiving area. You receive a shipment from a vendor that contains items from eight different purchase orders.Which of the following is the most efficient way for you to create a receipt for these items?
A. Open the individual purchase orders and create warehouse receipts by clicking Functions, CreateWhse. Receipt.
B. Create a new warehouse receipt and use the Get Source Documents function to select the different purchase orders that apply to this receipt.
C. Create a new warehouse receipt and use the Use Filters to Get Src. Docs. function to get all released purchase order lines that come from this vendor and that are due to be received on this date.
D. Create a new warehouse receipt and manually enter a line for each item received.
Answer: C
6. Which action can you perform in the Warehouse Put-away window?
A. Create a put-away.
B. Register a put-away.
C. Get warehouse documents.
D. Get bin content.
Answer: B
7. What does it mean to register a quantity opposed to post a quantity?
A. There is no difference.
B. Register indicates a record within the warehouse, whereas post indicates a record in other parts of the company.
C. Register indicates a record that does not influence the quantity of the item on the item ledger, while post indicates a change in the item ledger quantity.
D. Post changes both the item ledger entries and value ledger entries, whereas register changes only the item ledger entries.
Answer: C
8. Company X is a large company with complex warehousing operations, several warehousing locations,and a dedicated warehouse staff. You are a warehouse employee working for Company X in the receiving area. You receive a shipment from a vendor that contains items from eight different purchase orders.Once you have created the warehouse receipt with all the appropriate lines, you confirm that the quantities in the lines are correct and you post the warehouse receipt.Which of the following does not occur when you post the warehouse receipt?
A. The program creates entries in the Item Ledger Entries table and in the Item Register.
B. The program updates the Qty. to Receive and Qty. Received fields in the appropriate lines in the appropriate purchase orders.
C. If the purchase order is completely received, the program posts the purchase order as invoiced.
D. The program creates a posted warehouse receipt document.
Answer: C

http://www.test4actual.com/MB7-223.html

9. You are a warehouse employee working with a warehouse receipt. When checking the items, you discover that the vendor has shipped only half the number of items that you ordered. To record this in the warehouse receipt, you reduce the number in the Qty. to Receive field to reflect the number of items you actually received.
When you post the warehouse receipt:
A. The program changes the quantity in the Quantity field of the purchase order to reflect the quantity received.
B. The program keeps the line on the warehouse receipt document, sets the Qty. Received field to the actual Qty. Received and sets the Qty. to Receive to the remaining quantity.
C. The program deletes the line from the warehouse receipt document.
D. The program keeps the line on the warehouse receipt document and sets the document status to Completely Received.
Answer: B
10. You have posted a warehouse receipt where some of the lines have a quantity to cross-dock.When the program creates the put-away for these items, what happens?
A. The program specifies that the items be put away to the Cross-Dock bin set up on the location card.
B. The program specifies that the items be put away in the Shipping bin.
C. The program specifies that the items be left in the Receiving bin to be handled later.
D. The program specifies that the items be put away in their respective bins in the warehouse.
Answer: A
11. Company X is a large company with complex warehousing operations, several warehousing locations,and a dedicated warehouse staff. You are a warehouse employee working for Company X in the receiving area. You receive a shipment from a vendor that contains items from eight different purchase orders. Once you have created the warehouse receipt for this shipment, you can do all of the following except:
A. Assign a warehouse employee to the warehouse receipt.
B. Sort the lines according to Item, Document, Bin, or Due Date.
C. Print a copy of the warehouse receipt information.
D. Create a put-away before posting the warehouse receipt.
Answer: D
12. The cross-docking functionality allows you to:
A. Ship items directly from warehouse receipt documents.
B. Make cross-dock items available for internal warehouse movements.
C. View cross-dock opportunities on the warehouse receipt document and designate quantities to be placed in the cross-dock bin at put-away.
D. Create a pick instruction from posted warehouse receipts.
Answer: C
13. Depending on the warehouse setup, a put-away can be created from all these menu items except for one. Which one?
A. Posted Shipments
B. Posted Receipts
C. Internal Put-aways
D. Put-away Worksheets
Answer: A
14. When using the Use Filters to Get Src. Docs. function in the receipt document, you have the option of filtering on different criteria. From the criteria listed below, select the one that you cannot filter on:
A. Item No.
B. Buy-from Vendor No.
C. Planned Receipt Date
D. Direct Unit Cost
Answer: D
15. Select the document that is not one of the source documents for a warehouse receipt:
A. Purchase order
B. Production order
C. Inbound transfer order
D. Sales return order
Answer: B

Test4actual MB7-223 exam Features

Monday, March 8th, 2010

Quality and Value for the MB7-223 exam
Test4actual Practice Exams for Microsoft Microsoft Business Solutions MB7-223 are written to the highest standards of technical accuracy, using only certified subject matter experts and published authors for development.

100% Guarantee to Pass Your MB7-223 exam
If you prepare for the exam using our Test4actual testing engine, we guarantee your success in the first attempt. If you do not pass the MB7-223 exam Microsoft Business Solutions Designing for Microsoft Internetwork Solutions) on your first attempt we will give you a FULL REFUND of your purchasing fee AND send you another same value product for free.

Microsoft MB7-223 Downloadable, Printable Exams (in PDF format)
Our Exam MB7-223 Preparation Material provides you everything you will need to take your MB7-223 exam. The MB7-223 exam details are researched and produced by Professional Certification Experts who are constantly using industry experience to produce precise, and logical. You may get questions from different web sites or books, but logic is the key. Our Product will help you not only pass in the first try, but also save your valuable time.