Answer:
1. Classes and objects
2. Inheritance
3. Polymorphism
4. Data hiding/ encapsulation
5. Interfaces.
Explanation:
Classes and objects depict the major component of the OOP (object oriented programming). It explains the object like a ball in a soccer game development.
The inheritance is like the subclass of the object. Data hiding is a stage in oop where the codes or data are hidden from another users.
In the polymorphism stage, the object is given the ability to change to a sub-object, while in the interface stage a function or method signature is defined without implementing it.
Answer:
Documents: For composing letters, flyers, essays, and other text-based files (similar to Microsoft Word documents)
google sheets logo Spreadsheets: For storing and organizing information (similar to Microsoft Excel workbooks)
google slides logo Presentations: For creating slideshows (similar to Microsoft PowerPoint presentations)
google forms logo Forms: For collecting and organizing data
google drawings logo Drawings: For creating simple vector graphics or diagrams
Explanation:
Renting means you sign a contract or a lease to live their owning means you bought the house and pay mortgage <span />
Answer: Oakland, and also a city they feel is the safest + best for there family
Explanation:
Answer:
String date = "21/05/2020";
String dayStr = date.substring(0,2);
int day = Integer.parseInt(dayStr);
System.out.println(day);
Explanation:
Create a variable called <em>date</em> which holds the current date
Create a variable called <em>dayStr</em>. Initialize it to the day part of the <em>date</em> using the substring method
Create a variable called <em>day</em>. Parse the <em>dayStr</em> and assign it to the <em>day</em>
Print the <em>day</em>