“Set the activity content to an explicit view. This view is placed directly into the activity’s view hierarchy. It can itself be a complex view hierarchy.” This can be done by calling method: A. findViewById B. setContentView C. setActionBar D.…

Which statement is most true about layout_constraintLeft_toRightOf and layout_constraintStart_toEndOf constraints ? A. layout_constraintLeft_toRightOf is equal to layout_constraintStart_toEndOf in any case B. layout_constraintLeft_toRightOf is equal to layout_constraintStart_toEndOf in case if user choose a language that uses right-to-left (RTL) scripts, such as…

Relative positioning is one of the basic building blocks of creating layouts in ConstraintLayout. Constraints allow you to position a given widget relative to another one. What constraints do not exist? A. layout_constraintBottom_toBottomOf B. layout_constraintBaseline_toBaselineOf C. layout_constraintBaseline_toStartOf D. layout_constraintStart_toEndOf

Select a correct statement about PagedList. A. PagedList is content-mutable. This means that new content can be loaded into an instance of PagedList and the loaded items themselves can change once loaded. B. PagedList is content-immutable. This means that, although…