Which of the following best describes what the LinearLayout control does?

a. Draws its child controls in a single horizontal row or a single vertical column
b. Justifies the text of its child controls
c. Displays each child control in cells within specific rows and columns
d. Adjusts the layout vertically when the orientation of the phone is changed


a. Draws its child controls in a single horizontal row or a single vertical column

Computer Science & Information Technology

You might also like to view...

Consider the following pair of functions. You are to assume that the ellipses (. . .) contain correct code sufficient that it with the code you can see will compile apart from the two variables named sam in the two functions.

``` void func1( ) { int sam; . . . } void func2( ) { int sam; . . . } int main( ) { func1(); func2(); . . . ``` a) This code will not compile because of the multiply defined variable sam. In the explanation give the compiler message you get on compiling. b) This code will compile just fine. c) This code will compile but will give a runtime error due to the multiply defined variable sam. In the explanation give the error message you get when this is run. d) This code compiles and runs without any error messages. Explain why in the explanations.

Computer Science & Information Technology

Describe what relationship types represent in an ER model and provide examples of unary, binary, ternary, and quaternary relationships.

What will be an ideal response?

Computer Science & Information Technology

The password is a common authentication factor based on something you know. Other authentication factors are what you have like smart card, what you are like biometric, and what you do like your hand-writing.

What will be an ideal response?

Computer Science & Information Technology

The deadline scheduler ________.

a) implements separate FIFO queues for read and write requests. b) ensures that read requests are serviced before their deadlines c) ensures that write requests are serviced before their deadlines d) all of the above

Computer Science & Information Technology