How do you use inheritance in unity?
No Answer is Posted For this Question
Be the First to Post Answer
You have one base class virtual function how will call that function from derived class?
What is multiple inheritance? Give Example
What is the point of oop?
Given two strings like x=?hello? and y=?open?, remove any character from string x which is also used in string y, thus making the result x=?hll?.
how to find the largest of given numbers in an array
Why do we need oop?
diff between Abstract class Interfaces?
what is ltti
Can private class be inherited?
Question: Implement a base class Appointment and derived classes Onetime, Daily, Weekly, and Monthly. An appointment has a description (for example, “see the dentist”) and a date and time. Write a virtual function occurs_on(int year, int month, int day) that checks whether the appointment occurs on that date. For example, for a monthly appointment, you must check whether the day of the month matches. Then fill a vector of Appointment* with a mixture of appointments. Have the user enter a date and print out all appointments that happen on that date.
what is graphics
What are the types of abstraction?