Free Associate Android Developer Exam Braindumps

When your code execution reaches the breakpoint, Android Studio pauses execution of your app. You can then use the tools in the Debugger tab to identify the state of the app. With Step Over you can

  1. examine the object tree for a variable; expand it in the Variables view.
  2. evaluate an expression at the current execution point
  3. advance to the next line in the code (without entering a method)
  4. advance to the first line inside a method call
  5. advance to the next line outside the current method
  6. continue running the app normally

Answer(s): C



When your code execution reaches the breakpoint, Android Studio pauses execution of your app. You can then use the tools in the Debugger tab to identify the state of the app. With Step Out you can

  1. examine the object tree for a variable; expand it in the Variables view. If the Variables view is not visible
  2. evaluate an expression at the current execution point
  3. advance to the next line in the code (without entering a method)
  4. advance to the first line inside a method call
  5. advance to the next line outside the current method
  6. continue running the app normally

Answer(s): E



The Log class allows you to create log messages that appear in logcat. Generally, you could use the following log methods: (Choose five.)

  1. Log.e(String, String) (error)
  2. Log.a(String, String) (all outputs)
  3. Log.w(String, String) (warning)
  4. Log.i(String, String) (information)
  5. Log.q(String, String) (questions)
  6. Log.d(String, String) (debug)
  7. Log.v(String, String) (verbose)

Answer(s): A,C,D,F,G



Filter logcat messages. If in the filter menu, a filter option “Show only selected application”? means:

  1. Display the messages produced by the app code only (the default). Logcat filters the log messages using the PID of the active app.
  2. Apply no filters. Logcat displays all log messages from the device, regardless of which process you selected.
  3. Create or modify a custom filter. For example, you could create a filter to view log messages from two apps at the same time.

Answer(s): A






Post your Comments and Discuss Google Associate Android Developer exam with other Community members:

Associate Android Developer Discussions & Posts