exam questions

Exam 70-483 All Questions

View all questions & answers for the 70-483 exam

Exam 70-483 topic 2 question 136 discussion

Actual exam question from Microsoft's 70-483
Question #: 136
Topic #: 2
[All 70-483 Questions]

HOTSPOT -
You have the following code:

For each of the following statements, select Yes if the statement is true. Otherwise, select No.
Hot Area:

Show Suggested Answer Hide Answer
Suggested Answer:

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
dosper
Highly Voted 5 years, 10 months ago
correct answer should be NO, NO, YES. https://docs.microsoft.com/en-us/dotnet/standard/serialization/serialization-guidelines
upvoted 42 times
sscooter1010
5 years, 4 months ago
Yes, from the documentation, it shows that a class must be marked as [Serializable] in order to be serialized. Tested in code - I got an exception on .Serialize() when the data class was missing [Serializable]
upvoted 3 times
...
...
Igris
Most Recent 5 years, 5 months ago
Binary serialization in .NET Core .NET Core supports binary serialization with a subset of types. You can see the list of supported types in the Serializable types section. The defined set of types are guaranteed to be serializable between .NET Framework 4.5.1 and later versions and .NET Core 2.0 and later versions. Other .NET implementations, such as Mono, aren't officially supported but should also be working. I guess you cant binary serialize any class you want
upvoted 2 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...