Question:Which of the following code snippets are serializable? 

A public class Order { public System.Xml.XmlElement OrderDescription; public int Quantity; public String Name; } 

B public class Order { [XmlAnyAttribute] public System.Xml.XmlAttribute[] anyAttributes; public System.Xml.XmlElement OrderDescription; public int Quantity; public String Name; } 

C public class Order { [XmlAnyElement] public System.Xml.XmlElement[] extraElements; public System.Xml.XmlElement OrderDescription; public int Quantity; public String Name; } 

D All of these 

+ Answer
+ Explanation
+ Report
Total Preview: 485

Copyright © 2024. Powered by Intellect Software Ltd