answersLogoWhite

0


Best Answer

it depends on who the child is and if you have hurt that child teased that child and things like that

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What will a parent of a child in your class say about you?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Can a parent class access the functions of child class?

no, Parent class can not access the members of child class ,but child class can access members of parent class


What is function overriding in Java?

Method overriding is similar to method overloading, with a small difference. In overriding, a method in a parent class is overridden in the child class. The method in the child class will have the same signature as that of the parent class. Since the method in the child class has the same signature & name as the method of its parent class, it is termed as overriding. In situations where you may have to explicitly call the parent class method you can use the "super" keyword and for explicitly calling the current objects method you can use the "this" keyword.


What is the use of reusability in inheritance?

Inheritance in Java refers to the feature wherein the code/functionality of one class can be used in another class that extends this class. Example: public class Parent { ... .. } public class Child extends Parent { ... .. . } Here the class Child extends the class Parent and hence the methods of Parent are available for Child to use. This way we are re-using the code in the parent class in the child class instead of re-writing the whole thing again.


What is a super class in terms of object oriented programming?

A superclass, also referred to as a parent class, is a class what which other classes are derived from. These derived classes are known as either subclasses or child classes.


Can additional methods of base class be hidden from the derived class in object oriented software?

Yes. During inheritance only the public members of the parent class are visible to the child class. If you declare a method or a variable as private, the child class cannot access it. In other words, the methods and variables are hidden from the derived class.

Related questions

Can a parent class access the functions of child class?

no, Parent class can not access the members of child class ,but child class can access members of parent class


What is function overriding in Java?

Method overriding is similar to method overloading, with a small difference. In overriding, a method in a parent class is overridden in the child class. The method in the child class will have the same signature as that of the parent class. Since the method in the child class has the same signature & name as the method of its parent class, it is termed as overriding. In situations where you may have to explicitly call the parent class method you can use the "super" keyword and for explicitly calling the current objects method you can use the "this" keyword.


What is the use of reusability in inheritance?

Inheritance in Java refers to the feature wherein the code/functionality of one class can be used in another class that extends this class. Example: public class Parent { ... .. } public class Child extends Parent { ... .. . } Here the class Child extends the class Parent and hence the methods of Parent are available for Child to use. This way we are re-using the code in the parent class in the child class instead of re-writing the whole thing again.


I am an uderaged parent and live with my parents do they have any say in the child's life?

If you are an underage parent that lives with your parents they have a say in your life as it affects your child. They do not have a say over your child directly.


Child emanispation from parent?

If a child is emancipated, the parent or guardian no longer has any say over the minor's life.


Difference between inheriting a method and overriding?

Inheriting a method means - a class is able to use a method that is declared in its parent class. Because of inheritance we need not re-declare the method in the child class again but still use it as it is. Overriding means re-declaring a method that is already available in the parent class in the child class to alter its features as per the requirement in the child class.


How you compare and contrast overloading and overriding methods in java?

Method overloading is when you have multiple methods in a class that have the same name but a different signature. Method overriding is similar to method overloading, with a small difference. In overriding, a method in a parent class is overridden in the child class. The method in the child class will have the same signature as that of the parent class. Since the method in the child class has the same signature & name as the method of its parent class, it is termed as overriding. In situations where you may have to explicitly call the parent class method you can use the "super" keyword and for explicitly calling the current objects method you can use the "this" keyword.


Can my child work out at a family fitness center without me?

A parent always needs to be at the family fitness center with the child. However, if the child is in a class, the parent can leave and come back to pick up their child afterwards.


At what age can a parent remove a child from work?

Until they reach the age of majority, a parent has the ability to say the child cannot work.


What should a notarized permission letter to take a child out of the country with one parent say?

What should a notarized permission letter to take a child out of the country with one parent say?


What are child abandonment laws in Maine?

In Maine, if the intention of child abandonment can be proven, it is prosecuted. They can be charged with a Class D crime or Class C crime.


What functions get executed when you inherit from a class with the same functions name?

In general, the child class's functions will be used in place of the parent.