Microsoft 070-559 Exam Overview:
| Certification Vendor: | Microsoft |
|---|---|
| Exam Name: | UPGRADE: MCAD Skills to MCTS Web Apps Using MS.NET Framework |
| Exam Number: | 70-559 |
| Certificate Validity Period: | Legacy certification (retired; validity subject to Microsoft's certification policies in effect at the time) |
| Related Certifications: | Microsoft Certified Technology Specialist (MCTS): .NET Framework 3.5 Web Applications |
| Available Languages: | English |
| Exam Format: | Multiple Choice, Multiple Response, Case Study, Scenario-based Questions |
| Sample Questions: | Microsoft 070-559 Sample Questions |
| Exam Way: | Microsoft Authorized Testing Center (legacy onsite delivery; this retired exam was not originally offered through modern online proctoring). |
| Pre Condition: | Intended for candidates holding MCAD skills who were upgrading to MCTS Web Applications credentials; no formal prerequisite exam requirement publicly specified beyond the upgrade path. |
| Official Syllabus URL: | https://learn.microsoft.com/en-us/credentials/ |
Microsoft 070-559 Exam Syllabus Topics:
| Section | Objectives |
|---|---|
| Topic 1: Security | - Implementing application security
|
| Topic 2: User Interface and Presentation | - Creating rich user interfaces
|
| Topic 3: Configuration and Deployment | - Managing application deployment
|
| Topic 4: Data Access and Integration | - Working with application data
|
| Topic 5: Debugging and Diagnostics | - Testing and troubleshooting
|
| Topic 6: Developing ASP.NET Web Applications | - Building and configuring ASP.NET pages
|
Microsoft UPGRADE: MCAD Skills to MCTS Web Apps Using MS.NET Framework Sample Questions:
You work as the developer in an IT company. Recently your company has a big customer. The customer runs a large supermarket chain. You're appointed to provide technical support for the customer. The customer needs to compress an array of bytes. So you are writing a method to compress bytes. The bytes are passed to the method in a parameter named document. The contents of the incoming parameter have to be compressed. Which code segment should you use?
- A. MemoryStream inStream = new MemoryStream(document);GZipStream zipStream = new GZipStream(inStream, CompressionMode.Compress); MemoryStream outStream = new MemoryStream();int b;while ((b = zipStream.ReadByte()) != -1) { outStream.WriteByte((byte)b);} return outStream.ToArray();
- B. MemoryStream outStream = new MemoryStream();GZipStream zipStream = new GZipStream(outStream, CompressionMode.Compress);zipStream.Write(document, 0, document.Length);zipStream.Close();return outStream.ToArray();
- C. MemoryStream inStream = new MemoryStream(document);GZipStream zipStream = new GZipStream(inStream, CompressionMode.Compress); byte[] result = new byte[document.Length];zipStream.Write(result, 0, result.Length); return result;
- D. MemoryStream stream = new MemoryStream(document);GZipStream zipStream = new GZipStream(stream, CompressionMode.Compress);zipStream.Write(document, 0, document.Length);zipStream.Close();return stream.ToArray();
Correct Answer: B 🗳️
You have just graduated from college, now you are serving the internship as the software developer in an international company. According to the requirements of the company CIO, you create a mobile Web Form which contains a mobile Calendar control named calDate. The customers want you to capture the date that users choose from the Calendar control. What action should you perform?
- A. Create an event handler for the OnSelectionChanged event of the calDate control. In the
event handler, read the Calendars SelectionDate property. - B. Create an event handler for the OnSelectionChanged event of the calDate control. In the event handler, read the Calendars VisibleDate property.
- C. Create an event handler for the OnInit event of the calDate control. In the event handler, read the Calendars SelectionDate property.
- D. Create an event handler for the OnInit event of the calDate control. In the event handler, read the Calendars VisibleDate property.
Correct Answer: A 🗳️
You work as the developer in an IT company. Recently your company has a big customer. The customer runs a large supermarket chain. You're appointed to provide technical support for the customer. Now according to the requirement of the customer, you create an application for its business partners to submit purchase orders. Its partners send XML documents to your customer. The application you create deserializes these XML documents into instances of an object named PurchaseOrder. You must make sure that if the deserialization process encounters any XML content that fails to map to public members of the PurchaseOrder object, the application collects details. So you have to modify the application. What should you do?
- A. You should define and implement an event handler for the XmlSerializer.UnknownNode event.
- B. You should apply an XmlInclude attribute to the PurchaseOrder class definition.
- C. You should apply an XmlIgnore attribute to the PurchaseOrder class definition.
- D. You should define a class that inherits from XmlSerializer and overrides the XmlSerialize.FromMappings method.
Correct Answer: A 🗳️
You work as the developer in an IT company. Recently your company has a big customer.
The customer runs a large supermarket chain. You're appointed to provide technical support for the customer. The customer needs to compress an array of bytes. So you are writing a method. The array is passed to the method in a parameter named document. You need to compress the incoming array of bytes and return the result as an array of bytes.
Which code segment should you use?
- A. MemoryStream strm = new MemoryStream();DeflateStream deflate = new DeflateStream(strm, CompressionMode.Compress);deflate.Write(document, 0, document.Length);deflate.Close();return strm.ToArray();
- B. MemoryStream inStream = new MemoryStream(document);DeflateStream deflate = new DeflateStream(inStream, CompressionMode.Compress); MemoryStream outStream = new MemoryStream();int b;while ((b = deflate.ReadByte()) != -1) { outStream.WriteByte((byte)b);} return outStream.ToArray();
- C. MemoryStream strm = new MemoryStream(document);DeflateStream deflate = new DeflateStream(strm, CompressionMode.Compress);deflate.Write(document, 0, document.Length);deflate.Close();return strm.ToArray();
- D. MemoryStream strm = new MemoryStream(document);DeflateStream deflate = new DeflateStream(strm, CompressionMode.Compress); byte[] result = new byte[document.Length];deflate.Write(result, 0, result.Length); return result;
Correct Answer: A 🗳️
You work as the developer in an IT company. Recently your company has a big customer. The customer runs a large supermarket chain. You're appointed to provide technical support for the customer. Now according to the customer requirement, you create a Web Form which is for members only. The behavior of the Web site varies according to the role of the user. The Web site creates user accounts by using the ASP.NET Membership control. You have to identify whether a user is a member of a particular role. What should you do?
- A. You should pass the user names to Membership.GetUser.
- B. You should pass the role names to User.IsInRole.
- C. You should pass the user names and passwords to Membership.ValidateUser.
- D. You should pass the role names to Roles.RoleExists.
Correct Answer: B 🗳️
We're so confident of our products that we provide no hassle product exchange.


By Stev

