Home

Awesome

Android-Cheat-sheet

Cheat Sheet for Android Interviews

Topics

Common Coding Programs

Data Structure Coding Programs

Android Interview Questions

</br>

Java Interview Questions

</br>
class Person {
   String Title;
   String Name;
   Int Age;

   public Person(String title, String name, String age) {
      this.Title = title;
      this.Name = name;
      this.Age = age;
   }

}

class Employee {
   Int Salary;
   private Person person;

   public Employee(Person p, Int salary) {
       this.person = p;
       this.Salary = salary;
   }
}
</br> </br> </br> </br>

I will be adding more questions soon! If you would like to contribute to the Android Cheat Sheet, just make a pull request!