A short description of the Microsoft 70-680 exam

Q. What is the 70-680: TS: Windows 7, Configuring exam?
A. Microsoft’s 70-680 test validates your skills and knowledge to efficiently install, configure and manage the Microsoft Windows 7 desktop operating system in an enterprise environment. Candidates are expected to have at least one year of experience in the IT field, as well as experience implementing and administering any Windows client operating system in a networked environment. The TS: Windows 7, Configuring (70-680) exam provides credit towards MCTS: Windows 7, Configuration.

Q. What are the prerequisites for the 70-680 exam?
A. There is no prerequisite for appearing the exam.

 

For more information about this exam, please visit the following link:

https://www.ucertify.com/blog/everything-you-want-to-know-about-the-70-680-exam.html

Everything you want to know about the 70-680 exam?

Q. What is the 70-680: TS: Windows 7, Configuring exam?
A. Microsoft’s 70-680 test validates your skills and knowledge to efficiently install, configure and manage the Microsoft Windows 7 desktop operating system in an enterprise environment. Candidates are expected to have at least one year of experience in the IT field, as well as experience implementing and administering any Windows client operating system in a networked environment. The TS: Windows 7, Configuring (70-680) exam provides credit towards MCTS: Windows 7, Configuration.

Q. What are the prerequisites for the 70-680 exam?
A. There is no prerequisite for appearing the exam.

Q. What are the benefits of the MCTS: Windows 7, Configuration certification?
A. Microsoft’s MCTS: Windows 7, Configuration (Microsoft Certified Technology Specialist) certification is a latest certification on the Windows 7 technology. The MCTS: Windows 7, Configuration certification has been designed for professionals who have a thorough knowledge in installing, managing and configuring Windows 7 including new features such as security, network, and applications. This certification validates a candidates ability to understand the functions and features of Windows 7 and to troubleshoot network-connectivity and applications issues.

Q. What credit does the 70-680 exam provide?
A. Exam 70-680: TS: Windows 7, Configuring: counts as credit toward the following certification(s):

  • MCITP: Enterprise Administrator
  • MCITP: Enterprise Desktop Administrator 7
  • MCITP: Enterprise Desktop Support Technician 7

Q. What certificate does it provide?
A. Passing just one mandatory Core test (i.e. <a href="/exams/Microsoft/70-680.html”>70-680) will fetch you MCTS: Windows 7, Configuration certification.

Q. How many questions are asked in the test?
A. Approximately 42

Q. What is the duration of the test?
A. 120 Minutes

Q. Which type of the test is it? (Adaptive/Linear)
A. Linear

Q. What is the passing score?
A. Approximately 700 out of possible 1000.

Q. What is the test retake policy?
A. If you do not pass test 70-680 the first time, you may retake it at any time. If you do not achieve a passing score the second time, you must wait at least 14 days to retake the test a third time. A 14-day waiting period will be imposed for all subsequent exam retakes. If you have passed an exam, you cannot take it again.

Q. Is the 70-680 exam right for me?
A. This exam is intended for candidates that operate in computing environments that use Microsoft Windows 7 as a desktop operating system in an enterprise environment. If you wish to excel as a support technician, or as a network administrator, this exam is right for you. According to Microsoft, candidates should be able to configure pre-installation and post-installation system settings, Windows security features, network connectivity applications included with Windows 7, and mobile computing.

Q. What to expect in the 70-680 exam?
A. Multiple-choice, scenario-based, hot-spot types, and simulation questions are asked on the following topics:

  • Installing, Upgrading, and Migrating to Windows 7
  • Deploying Windows 7
  • Configuring Hardware and Applications
  • Configuring Network Connectivity
  • Configuring Access to Resources
  • Configuring Mobile Computing
  • Monitoring and Maintaining Systems that Run Windows 7

Q. What are the code languages available for the exam?
A. English

Q. Where to take the test?
A. Microsoft certification exams are provided through Prometric.

Q. How to locate a testing center?
A. Visit the Prometric site to locate a testing center.

Performing drag & drop operation in a Windows Forms app

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: https://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: https://www.ucertify.com/exams/Microsoft/70-526-VB.html

Everything you want to know about the 70-552 exam

Q. What is the 70-552 exam?

A. Microsoft’s 70-552 exam is designed to test your knowledge of the Microsoft .NET Framework 2.0 fundamentals, which includes developing applications, implementing service processes, application domains, embedding configuration, diagnostic, management, and installation features into a .NET Framework application. The 70-552 exam tests your knowledge and measures your ability to have in-depth skills and knowledge of Windows Forms technology and have expertise in data access in Microsoft Windows applications. The 70-552 exam also measures your skills that include developing and designing Web applications, designing and developing a user interface, designing and developing a component, designing and developing an application framework, deploying and supporting an application, and testing and stabilizing an application.

Continue reading “Everything you want to know about the 70-552 exam”

Know More About The Microsoft’s 70-642 Test

Microsoft’s 70-642 test is designed to measure your ability to accomplish the technical tasks of configuring and maintaining Windows 2008 network infrastructure. This exam is meant for IT professionals who are working or want to work in a typically complex computing environment of medium-to-large organizations. Before taking the test 70-642, you should practice the following:

    • Install Windows Server 2008 on two networked computers. During installation, through Setup, create a partition on the hard disks on which you should install Windows Server 2008 as a stand-alone server in a workgroup.
    • Configure IPv4 and IPv6 addressing.

Continue reading “Know More About The Microsoft’s 70-642 Test”