Answer the following statements true (T) or false (F)

1. A key benefit of WPF is that it provides a single platform to handle GUI, images, animation 2D and 3d graphics, audio and video.
2. WPF GUIs can be created by dragging predefined controls from the Toolbox onto the design surface.
3. Using XAML gives WPF the benefit of raster-based graphics.
4. WPF graphics are resolution-independent, meaning that they are designed to look similar on screens of different sizes.
5. A major benefit of using XAML is that GUI design can be done separately from programming.


1. True.
2. True.
3. False. XAML gives WPF the benefit of vector-based graphics.
4.True.
5. True.

Computer Science & Information Technology

You might also like to view...

Which of the statements below is false?

Consider the classes below, declared in the same file: ``` class A { int a; public A() { a = 7; } } class B : A { int b; public B() { b = 8; } } ``` a) Both variables a and b are instance variables. b) After the constructor for class B is executed, the variable a will have the value 7. c) After the constructor for class B is executed, the variable b will have the value 8. d) A reference to class A can be treated as a reference to class B.

Computer Science & Information Technology

Which of the following statements is false?

a) C# 6 also provides a null-conditional operator ?[] for arrays and for collections that support the [] indexing operator. b) The ?[] operator accesses the array or collection reference then returns null if the reference is null. c) Neither a) nor b) is false. d) Both a) and B are false.

Computer Science & Information Technology

What type of attack does a remote-access Trojan attempt to perpetrate?

A. worm B. back door C. remote denial of service D. composite attack

Computer Science & Information Technology

Laser printers require ________ to produce printed documents

A) ink cartridges B) toner ink C) toner powder D) liquid ink

Computer Science & Information Technology