Logcat based Android interview questions and answers
What is logging (Logcat)?
A) The logging (Logcat) system provides a mechanism for collecting and viewing system debug output.
How many different logcat types are there?
A) 5
What are the names of the specific logcats?
A) Verbose, Debug, Info, Warn and Error
Logging methods require two strings, what does each string represent?
A) The first string (Tag) identifies where the log is coming from and the second is the specific log message.
Comments
Post a Comment