Logcat
What is a model?
A model is an arbitrary object (custom object).
What is a RecyclerView?
An efficient way for displaying scrolling list data.
The location of stored shapes, icons, and images.
Drawables folder
Eliminates the use of hardcoded strings and used for apps with multi-language features.
What were the past android versions based on?
Desserts
What is wrong with the code?
Intent intent = new Intent(MainActivity.this, EditActivity.this);
startActivity(intent);
Second parameter should be EditActivity.class
What is context?
Refers to what Activity you are in
What are the three override methods required for an adapter?
onCreateViewHolder(), onBindViewHolder(), and getItemCount().
The location to change the app name in the ActionBar.
AndroidManifest.xml (or strings.xml is acceptable)
What do we do with the secrets.xml file to hide our API keys from GitHub?
We add it to the .gitignore file so it does not get pushed to GitHub and become public.
What companies did Lance work for? (Must name all to get points)
Paypal and Nissan
Difference between VISIBLE.GONE, VISIBLE.INVISIBLE, VISIBLE.VISIBLE.
VISIBLE.INVISIBLE: view is invisible but it still takes up space for layout purposes.
VISIBLE.VISIBLE: view is visible (shown).
What does it mean when the method is striked out? Is it okay to still use? (Must have both correct)
Deprecated and yes, it is still okay to use.
Where is all the data being populated in each viewholder?
in the bind() method
How to instruct AndroidStudio to re-generate its classes and sync it’s libraries.
Build -> "re-build project"
How do you make the landscape layout?
New -> Layout Resource File -> set orientation qualifier to landscape
What date did FBU start on?
6/22
What are the best ways to fix your project if code starts to give errors for no reason.
File -> Invalidate Caches/Restart
Build -> Clean Project
Build -> Rebuild Project
What the difference between an Actionbar and a Toolbar?
Toolbars are more customizable than actionbars.
True or False: You can add view binding to an adapter.
TRUE
Where might you find files that are hidden?
Project View mode
How do you center the YouTube play button (ImageView) in the poster image (ImageView)?
Wrap both ImageViews within a container (ex. another layout) and set the attribute to the YouTube button: android:layout_centerInParent="true"
Name all the TAs, Lead TAs, and Instructors
Lance, Ellen, Juan, Caston, Tejen, Mark, Rey, Eric, Aldo, Nafis, Matthew, Josephine, Anthony
What is the error? 
Too many API call requests to the Twitter API.
What is the difference between an Activity and a Fragment
An Activity is an application component that provides a screen, with which users can interact in order to do something.
A Fragment represents a behavior or a portion of a user interface in an Activity.
True or False: You can only have one RecyclerView and one Adapter per mobile application.
FALSE
Where to change/update your Android version?
SDK Manager
How do you handle an on-click event for the logout menu item and the compose menu item?

Override the onOptionsItemSelected, check the given MenuItem id and handle the event corresponding to the menu item.

What hat was Tejen wearing during spirit week (funny hats day) and what was his background?
Chef hat with Gordon Ramsey in his kitchen.