Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

1. In Playland example project, there is: myImage.Source = myBitmapImage; myImag

ID: 3856953 • Letter: 1

Question

1. In Playland example project, there is:

myImage.Source = myBitmapImage;

myImage.Source property is System.Windows.Media.ImageSource type. ImageSource class is an abstract class, and abstract class cannot be instantiated. So this line of code is incorrect.

2. mutex cannot be released once it's acquired by one thread.

3. To initialize a BitmapImage created using constructor public BitmapImage (), you must perform property initialization between BeginInit and EndInit calls.

4. In public Thread(ThreadStart start), ThreadStart is:

5. Once a thread is aborted, it cannot be restarted.

6. Child elements of a Canvas are positioned at their designated coordinates, are not resizable.

7. Which Canvas property is used to get the rendered width of the Canvas?

8. Using multiple threads can

Two of these

True

Explanation / Answer

1.Answer:True

2.Answer:True

3.Answer:True

4.Answer: a delegate

5.Answer:True

6.Answer:True

7.Answer:Rendered width

8.Answer:improve UI Responsiveness

Reason multithreading is used in projects to increase the perfomance.