Archive for the ‘MCTS’ Category

MCTS 70-529-CSHARP Short Notes

Published by admin on January 21st, 2010 - in MCTS

Creating and Accessing XML Web Services

  • Web Services Description Language (Wsdl.exe) is a tool used to generate code for XML Web services and Web service clients from WSDL, XSD schema files, and discovery documents.
  • Use the XML (Extensible Markup Language), SOAP (Simple Object Access Protocol), XSD (XML Schema Definition), and WSDL (Web Services Description Language) protocols to create a Web service.
  • Use MessageName property to implement two Web methods with the same name and ensure that each of these two Web methods is uniquely identified when it is called separately.

  • Use the CacheDuration property of the WebMethod attribute to specify the number of seconds for which the response should be held in the cache.
  • Use the Namespace property of the WebService attribute to specify the namespace of a proxy generated by Visual Studio .NET 2005.
  • Use the BufferResponse property of the WebMethod attribute to serialize the Web method response into a memory buffer until the response is completely serialized and returned back to the Web service clients over the network.
  • Pass 70-529-CSHARP exam in the first attempt. Full featured Tests. 472 questions with answers and 373 study notes articles and exam tips:

    C#.NET 2.0 Distributed Application Development
    Download link: http://www.ucertify.com/exams/Microsoft/70-529-CSHARP.html

    (more…)

TwitterDeliciousDiggYahoo MailGoogle BookmarksShare

Performing drag-and-drop operations in a Windows Forms application

Published by admin on November 9th, 2009 - in MCTS

In a Windows Forms application, a drag-and-drop functionality refers to the transferring of data with the mouse. It enables a user to drag data such as a text, an image, or other object with the mouse’s left-button from one control and drop it to another control. This functionality is an event-driven process that occurs when the data is copied from the source control and when the data is dropped onto the target control. The source as well as target control events are involved in implementing the drag-and-drop operations are as follows:

  • Source Control Events: These events occur when a mouse pointer triggers some action on a source control. The following are the source control events:. To get a glimpse of these PrepKits, you can download its free demo version (which contains 15 free practice questions) from:

    Download link: http://www.ucertify.com/exams/Microsoft/70-526-VB.html

    1. MouseDown Event: It occurs when the mouse button is pressed and the mouse pointer is over the source control. A method that handles this event calls the DoDragDrop method of the source control.
    2. GiveFeedback Event: It occurs when a drag-and-drop operation is initiated. The appearance of the mouse pointer can be modified by the source of a drag event. In this event, a user can obtain the visual feedback during the operation. This event provides a custom mouse pointer to a user.
    3. QueryContinueDrag Event: It occurs during a drag-and-drop operation. It is raised when the keyboard or the mouse button state changes during the operation. It also enables the drag source in order to determine whether the drag-and-drop operation is cancelled.
  • Target Control Events: These events occur when a mouse pointer triggers some action on a target control. The following are the source control events:
    1. DragEnter Event: It occurs when an object is dragged into the bounds of the target control. It is raised when the mouse cursor is first dragged over the target control during a drag-and-drop operation.
    2. DragOver Event: It occurs when an object is dragged over the bounds of the target control. It is raised when the mouse cursor is within the bounds of the control.
    3. DragDrop Event: It occurs when the mouse button is released over the target control and a drag-and-drop operation is completed.
    4. DragLeave Event: It occurs when the an object is dragged out of the bounds of the target control. It occurs when the current drag-and-drop operation is cancelled.

Sequence of a Drag-and-Drop Operation

The following is the general sequence of events that take place in a drag-and-drop operation:

  1. The drag-and-drop operation is initiated by calling the DoDragDrop method within the MouseDown event handler on the source control. The method contains two parameters, namely the Object data that specifies the desired data to pass and the DragDropEffects data value that specifies a particular drag operation on a control. The method determines under which control the current mouse cursor is located. It then checks whether the valid drop target operation has been performed. In this sequence, a new DataObject object is automatically created.
  2. The GiveFeedback event is raised when a custom mouse pointer is displayed during the dragging operation. The QueryContinueDrag event is raised to determine whether the drag operation should be continued or aborted.
  3. The drop-and-drop operation is allowed when the AllowDrop property is set to true in the Properties window at design time. The property can be set to true programmatically in the Form_Load event of a Windows form.
  4. The DragEnter event for a target control is raised when the mouse cursor is first dragged over the control. The DragOver event takes place when a mouse pointer stays over the bounds of a control.
  5. Finally, the DragDrop event is raised when the mouse button is released over a valid target control. In the Windows form, the event handler extracts the appropriate data from the DataObject object. Data is then displayed in the target control.

DragDropEffects Enumeration Values

The DragDropEffects enumeration identifies the effects of a drag-and-drop operation in a Windows Forms application. It contains the FlagsAttribute attribute that enables a user to perform a bitwise combination of its member values. It is used by the DragEventArgs, GiveFeedbackEventArgs, and Control classes. The following are the member values that can exist in this enumeration:

Member Values Description
All During a drag-and-drop operation data is copied, dragged, and removed from the source control. The data is then scrolled and dropped onto the target control.
Copy During a drag operation, data is copied to the target control.
Link During the operation, data from the source control is linked to the target control.
Move During the operation, data is moved from the source control to the target control.
None During a drag-and-drop operation, the target control does not accept the data from the source control.
Scroll During a drag-and-drop operation, the scrolling operation is initiated or is currently being performed.

Implementing Drag-and-Drop Operations between Applications

Generally, a drag-and-drop operation is performed within a single Windows Forms application. This operation can also be implemented between two applications. The following conditions should be fulfilled in order to enable a drag-and-drop operation between applications:

  • A target control should allow one of the drag effects being specified when the DoDragDrop method is called.
  • A target control should accept data in the same format that was set when the DoDragDrop method is called.

Implementing Drag-and-Drop Operations by using a TreeView Control

The implementation of a drag-and-drop operation in a TreeView control is slightly different from other controls. When a drag operation is initiated on a TreeView node, the ItemDrag event is raised. The event passes an instance of ItemDragEventArgs to a method that handles this event. The ItemDragEventArgs object contains a reference that is copied to the DataObject object in the DoDragDrop method.

Download link: http://www.ucertify.com/exams/Microsoft/70-526-VB.html>

TwitterDeliciousDiggYahoo MailGoogle BookmarksShare

Things to practice for Microsoft test 70-528 CSHARP

Published by admin on October 10th, 2009 - in .NET, MCTS, Things to practice

The 70-528 test measures an individual’s ability to develop and implement ASP.NET Web applications using .NET Framework 2.0. Before taking the 70-528 test, you should practice the following:

  1. Create a new Web application and add Web Forms pages to the application.
  2. Add Web server controls to a Web Form and configure their properties programmatically.
  3. Create event handlers for a page or control at design time.
  4. Manage state of an application by using client-based and server-based state management options.
  5. To analyze the capabilities of the software, you can download a demo version and evaluate it free of cost. For more information, please visit: 70-528-C# .NET 2.0 Web-based Application Development

    (more…)

TwitterDeliciousDiggYahoo MailGoogle BookmarksShare

MCTS: .NET Framework 2.0 Web Applications

Published by admin on August 9th, 2009 - in .NET, MCPD, MCTS

About MCTS: .NET 2.0 Web Applications Certification

Microsoft’s MCTS: .NET Framework 2.0 Web Applications certification has been designed for professionals who have a thorough knowledge and expertise in .NET Framework 2.0. These professionals have in-depth knowledge in Web application technology and data access in Web applications. This certification is a pre-requisite for the more advanced Microsoft Certified Professional Developer (MCPD) certification.

MCTS: .NET 2.0 Web Applications certification core exams

What is .NET 2.0 Application Development (70-536) exam?

Microsoft’s 70-536 is designed to test your knowledge of the Microsoft .NET Framework 2.0 fundamentals. The 70-536 exam measures your skills that include Developing applications, Implementing service processes, threading, and application domains, embedding configuration, diagnostic, management, and installation features into a .NET Framework application, etc. After passing this test along with another core exam, you will become an MCTS: .NET 2.0 Web Applications, MCTS: .NET 2.0 Windows Applications or MCTS: .NET 2.0 Distributed Applications.

What is .NET 2.0 Web Application Development (70-528) exam?

Microsoft’s 70-528 measures your ability to develop and implement Web-based applications using Visual Basic language on the Microsoft .NET Framework. The exam proves that you have working knowledge of Microsoft Visual Studio 2005 and ASP.NET 2.0. You should pass this test along with exam 70-536-VB, for completing the requirements for the MCTS: .NET 2.0 Web Applications certification.

Code languages

When the exam begins, you can choose the programming language in which the code segments will appear. The available code languages for this exam are:

  • Microsoft Visual Basic 2005
  • Microsoft Visual C# 2005
  • Microsoft Visual C++ 2005

Benefits of MCTS: .NET 2.0 Web Applications certification

  • Microsoft products are most widely used today and the MCTS: .NET 2.0 Web Applications certification proves expertise on the Microsoft products and technologies.
  • Professionals holding the MCTS: .NET 2.0 Web Applications certification are preferred by the employers and they also get preference in promotions.
  • MCTS: .NET 2.0 Web Applications certification is helpful for professionals who have entry-level certifications in related technologies to upgrade their credentials and get recognition from the industry.
  • MCTS: .NET 2.0 Web Applications Certified professional can find appropriate job easily and get paid more.

Job Roles for MCTS certified professionals

The job roles for MCTS certified professionals typically include:

  • Web developers
  • Windows developers
  • Enterprise software developers

How uCertify helps you get MCTS: .NET 2.0 Web Applications certified?

We provide quality training products to help you pass the MCTS: certification exam in the first attempt. The MCTS: .NET 2.0 Web Applications certification preparation kit (PrepKit) consist of full-length practice tests, containing realistic questions and detailed study notes along with technical articles and step-by-step, fully illustrated ‘How tos’ to impart in-depth knowledge of the subject. In addition to the predefined simulated tests, there is also an option for customized and adaptive testing to help you prepare efficiently for the real exams. At the end of each exam, detailed performance reports shows the status of preparedness and help you to prepare accordingly. In other words, we provide you everything you need to become MCTS: .NET 2.0 Web Applications certified.

For More Information, please visit http://www.ucertify.com/>

TwitterDeliciousDiggYahoo MailGoogle BookmarksShare

.NET Test Taking Tips

Published by admin on August 9th, 2009 - in .NET, MCAD, MCPD, MCSD, MCTS

Introduction

Get the inside on how to crack computer based certification tests from those who have years of experience developing computer assisted learning software…

Preparing for the Exam

These certification exams check your knowledge and experience on their subject. So the best way to get through is to learn and master each and every aspect of the product/subject and get hands on experience on it. You should follow these steps to prepare for any such certification exam:

  • Identifying the exam objectives: for that you need to go through the product vendors site because these objectives keep on changing from time to time.
  • Study the suggested reading material and make sure you understand everything and also perform the tasks they suggest.
  • If you feel the need, you can also go for instructor-led or online training courses.
  • Nothing beats a test better than taking it beforehand. Buy good test simulation software and test your skills on it.
  • Register for the test at least two weeks before, this helps in building the tempo.

Before the test

  • Be confident and relaxed.
  • Sleep well the night before the exam.
  • Arrive early at the test center with at least two forms of identification.
  • If you need a quick drink of water or a visit to the restroom, take time before the exam, because once started the exam will not be paused for these needs.

At the Testing center

  • You will be asked to present your ID and sign the log as you arrive at the testing center.
  • The center in-charge will explain the rules that you have to follow during the exam and will ask you to sign a paper stating that you understand the rules of the exams and will follow them.
  • You are not allowed to take in any sort of written or printed material with you to the exam. You will be provided with the scratch paper, pencils and anything you need for the exam.
  • Before the test you will have an opportunity to take a practice exam that is not related with the subject but will give you an orientation of the exam process.
  • If you have any problem regarding the testing process you can ask the test administrator.

Test Taking Approach

  • As you start the test be calm and read the question and ALL its options carefully even if you think you know the answer.
  • If you are taking an adaptive test REMEMBER you will not get a chance to change your answer once you move on, so be sure before you mark the answer. In a linear test you will have a chance to change the answer.
  • If you know the answer, answer the question and move on, if you are not sure still mark your best guess and move on. If it is a linear test, you should also book mark the question so that you can return to it afterwards.
  • Sometimes related questions also provide answer for the questions you were unsure of, so it is always a good idea to book mark the question.
  • If you are unsure of the correct answer, read all options and eliminate options that are obviously wrong. Then choose from the options left.
  • Once you finished answering all the questions, check the time left. If you have time, review the book marked questions.
  • Never leave a question unanswered. All certification tests that we know are timed and count unanswered questions as wrong. If you don’t have time, take a blind guess.

You might find these useful

Useful contacts>

TwitterDeliciousDiggYahoo MailGoogle BookmarksShare

MCTS: .NET Framework 2.0 Windows Applications

Published by admin on August 9th, 2009 - in .NET, MCPD, MCTS

About MCTS: .NET 2.0 Windows Applications Certification

Microsoft�s MCTS: .NET Framework 2.0 Windows Applications has been designed for professionals who have a thorough knowledge and expertise in .NET Framework 2.0. These professionals have in-depth knowledge in Windows Forms technology and data access in Microsoft Windows applications. This certification is a pre-requisite for the more advanced Microsoft Certified Professional Developer (MCPD) certification. For the current MCAD or MCSD .NET certified professionals, this certification is not required to upgrade to MCPD as they can take the upgrade exam (s) to achieve the MCPD status.

MCTS: .NET 2.0 Windows Applications certification core exams

What is .NET 2.0 Application Development(70-536) exam?

Microsoft’s 70-536 is designed to test your knowledge of the Microsoft .NET Framework 2.0 fundamentals. The 70-536 exam measures your skills that include Developing applications, Implementing service processes, threading, and application domains, embedding configuration, diagnostic, management, and installation features into a .NET Framework application, etc. After passing this test along with another core exam, you will become an MCTS: .NET 2.0 Windows Applications, MCTS: .NET 2.0 Windows Applications or MCTS: .NET 2.0 Distributed Applications.

What is .NET 2.0 Windows Application Development(70-526) exam?

Microsoft’s 70-526 measures your ability to develop and implement Windows-based applications using Visual Basic language on the Microsoft .NET Framework. The exam proves that you have working knowledge of Microsoft Visual Studio 2005 and ASP.NET 2.0. You should pass this test along with exam 70-536-VB, for completing the requirements for the MCTS: .NET 2.0 Windows Applications certification.

Code languages

When the exam begins, you can choose the programming language in which the code segments will appear. The available code languages for this exam are as follows:

  • Microsoft Visual Basic 2005
  • Microsoft Visual C# 2005

Benefits of MCTS: .NET 2.0 Windows Applications certification

  • Microsoft products are most widely used today and the MCTS: .NET 2.0 Windows Applications certification proves expertise on the Microsoft products and technologies.
  • Professionals holding the MCTS: .NET 2.0 Windows Applications certification enhances employment opportunities for programmers.
  • MCTS: .NET 2.0 Windows Applications certification is helpful for professionals who have entry-level certifications in related technologies to upgrade their credentials and get recognition from the industry.
  • MCTS: .NET 2.0 Windows Applications Certified professional get special offers and discount on Microsoft products and other selected products from Microsoft.

Job Roles for MCTS certified professionals

The job roles for MCTS certified professionals typically include:

  • Web developers
  • Windows developers
  • Enterprise software developers

How uCertify helps you get MCTS: .NET 2.0 Windows Applications certified?

The uCertify MCTS: .NET 2.0 Windows Applications certification preparation kits (PrepKits) provide a comprehensive preparation package fulfilling each and every objective for the exams. The tests come with challenging practice questions that reflect the format, topics and difficulty of the real exams. They also include step-by-step: “How Tos”, technical articles, quiz and fully customizable tests with in-depth answer explanations to help you learn practical skills. In other words, we provide you everything you need to become MCTS: .NET 2.0 Windows Applications certified.

For More Information, please visit http://www.ucertify.com/>

TwitterDeliciousDiggYahoo MailGoogle BookmarksShare

Current Generation of Certifications

Microsoft has released a new three-tiered certification hierarchy. It consists of three series and four credentials that introduce an entry-level Technology Series composed of the “Technology Specialist” credential, a Professional Series composed of the “IT Professional” and “Professional Developer” credentials, and the Master Series composed of the “Master” credential. There also exists a new Architect Series composed of the “Microsoft Certified Architect” program, which consists of a Review Board interview.

Technology Series (MCTS)

The Technology Specialist certifications enable professionals to target specific technologies, and are generally the first step toward the Professional-level certifications. There are currently 20 MCTS certifications, which can be roughly grouped into the following specializations, each requiring certain examinations to be passed:

Office Specializations

Managing Projects with Microsoft Office Project 2007

  • Exam 70-632: Microsoft Office Project 2007, Managing Projects

Enterprise Project Management with Microsoft Office Project Server 2007

  • Exam 70-633: Microsoft Office Project Server 2007, Managing Projects

Forefront Client and Server, Configuration

  • Exam 70-557: Microsoft Forefront Client and Server, Configuration

Office SharePoint Server 2007, Configuration

  • Exam 70-630: Microsoft Office SharePoint Server 2007, Configuring

Office SharePoint Server 2007, Application Development

  • Exam 70-542: Microsoft Office SharePoint Server 2007 – Application Development

.NET Framework Specializations

.NET Framework 2.0 Web Applications

  • Exam 70-528: Microsoft .NET Framework 2.0 – Web-Based Client Development
  • Exam 70-536: Microsoft .NET Framework 2.0 – Application Development Foundation

.NET Framework 2.0 Windows Applications

  • Exam 70-526: Microsoft .NET Framework 2.0 – Windows-Based Client Development
  • Exam 70-536: Microsoft .NET Framework 2.0 – Application Development Foundation

.NET Framework 2.0 Distributed Applications

  • Exam 70-529: Microsoft .NET Framework 2.0 – Distributed Application Development
  • Exam 70-536: Microsoft .NET Framework 2.0 – Application Development Foundation

SQL Server Specializations (more…)

TwitterDeliciousDiggYahoo MailGoogle BookmarksShare

Current Upgrade Paths for .NET Exams

With the exception of Obsolete Certifications, Microsoft generally offers upgrade paths, which allow a person holding a previous generation certification to upgrade to the current generation paths by sitting upgrade exams. Typically this is a single normal exam, usually consisting of a mixture of questions from the composite exams making up the current certification path. Using this upgrade feature, professionals in the field can maintain their certification standards without having to start from scratch every few years.

With the introduction of the Professional Series your MCTS, MCITP, or MCPD certifications will retire when Microsoft discontinues mainstream support for the related technology. Typically, mainstream support is discontinued 7 to 10 years after the initial product release. When support ends, your related certification will retire.

Microsoft’s initial communications about the Professional Series certifications was announced that a “refresh” or recertification of the MCITP and MCPD credentials would be required within three years. This policy has changed. To address the needs of the worldwide customer base, the updated policy is to retire a certification when mainstream support for the related technology retires. There is no action required from you if you earned a Professional Series certification before the policy change; the updated policy applies to your certification, which will be valid until mainstream support for the related technology retires.

Technology Specialist Series (MCTS) Upgrades

There are no upgrade paths that lead only to an MCTS certification. All prior certification paths lead to either an MCPD or MCITS certification, which will indirectly confer the relevant prerequisite MCTS certification on the successful candidate.

(more…)

TwitterDeliciousDiggYahoo MailGoogle BookmarksShare

Skills required for Microsoft test 70-562-C#

Microsoft has specified more than thirty objectives for the 70-562 test. These objectives are grouped under seven topics. Following are some important areas in which an individual should possess good knowledge before taking the 70-562 test:

  1. Configuring providers.
  2. Configuring authentication, authorization, and impersonation.
  3. Configuring projects, solutions, and reference assemblies.
  4. Configuring session state using Microsoft SQL Server, State Server, or InProc.
  5. Publishing Web applications.
  6. Configuring application pools.
  7. Compiling an application using Visual Studio or command-line tools.
  8. Implementing data-bound controls.
  9. Loading user controls dynamically.
  10. Creating and consuming custom controls.
  11. Implementing client-side validation and server-side validation.
  12. Consuming standard controls.
  13. Reading and writing XML data.
  14. Manipulating data using the DataSet and DataReader objects.
  15. Calling a Windows Communication Foundation (WCF) service or a Web service from an ASP.NET Web page.
  16. Implementing a DataSource control.
  17. Binding controls to data using data binding syntax.
  18. Configuring debugging and custom errors.
  19. Setting up an environment to perform remote debugging.
  20. Debugging unhandled exceptions when using ASP.NET AJAX.
  21. Implementing tracing of a Web application.
  22. Debugging deployment issues.
  23. Monitoring Web applications.
  24. Implementing Web Forms using ASP.NET AJAX.
  25. Interacting with the ASP.NET AJAX client-side library.
  26. Consuming services from client scripts.
  27. Creating and registering client script.
  28. Accessing device capabilities.
  29. Controlling device-specific rendering.
  30. Adding mobile Web controls to a Web page.
  31. Implementing control adapters.
  32. Customizing the layout and appearance of a Web page.
  33. Working with ASP.NET intrinsic objects.
  34. Implementing globalization and accessibility.
  35. Implementing business objects and utility classes.
  36. Implementing session state, view state, control state, cookies, cache, or application state.
  37. Handling events and control page flow.
  38. Implementing the Generic Handler.

Download link: http://www.ucertify.com/exams/Microsoft/70-562-CSHARP.html>

TwitterDeliciousDiggYahoo MailGoogle BookmarksShare

Things to practice for Microsoft test 70-562-C#

Published by admin on August 8th, 2009 - in .NET, 70-562-C#, MCAD, MCPD, MCSD, MCTS, Microsoft

The Microsoft test 70-562 is designed to measure an individual’s ability to develop ASP.NET Web applications using Microsoft .NET Framework 3.5. Before taking the 70-562 test, you should practice the following:

  1. Configure providers.
  2. Configure authentication, authorization, and impersonation.
  3. Configure projects, solutions, and reference assemblies.
  4. Configure session state using Microsoft SQL Server, State Server, or InProc.
  5. Publish Web applications.
  6. Configure application pools.
  7. Compile an application using Visual Studio or command-line tools.
  8. Implement data-bound controls.
  9. Load user controls dynamically.
  10. Create and consume custom controls.
  11. Implement client-side validation and server-side validation.
  12. Consume standard controls.
  13. Read and write XML data.
  14. Manipulate data using DataSet and DataReader objects.
  15. Call a Windows Communication Foundation (WCF) service or a Web service from an ASP.NET Web page.
  16. Implement a DataSource control.
  17. Bind controls to data using data binding syntax.
  18. Configure debugging and custom errors.
  19. Set up an environment to perform remote debugging.
  20. Debug unhandled exceptions when using ASP.NET AJAX.
  21. Implement tracing of a Web application.
  22. Debug deployment issues.
  23. Monitor Web applications.
  24. Implement Web Forms using ASP.NET AJAX.
  25. Interact with the ASP.NET AJAX client-side library.
  26. Consume services from client scripts.
  27. Create and registering client script.
  28. Access device capabilities.
  29. Control device-specific rendering.
  30. Add mobile Web controls to a Web page.
  31. Implement control adapters.
  32. Customize the layout and appearance of a Web page.
  33. Work with ASP.NET intrinsic objects.
  34. Implement globalization and accessibility.
  35. Implement business objects and utility classes.
  36. Implement session state, view state, control state, cookies, cache, or application state.
  37. Handle events and control page flow.
  38. Implement the Generic Handler.

Download link: http://www.ucertify.com/exams/Microsoft/70-562-CSHARP.html>

TwitterDeliciousDiggYahoo MailGoogle BookmarksShare
© Exam Directory
CyberChimps WordPress Themes