answersLogoWhite

0


Best Answer

genes

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Which structures code information for the inheritance of traits?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is a chemical code that gives information about traits?

That sounds like kind of a description of chromosomes with DNA etc.


What is a use inheritance?

Code Re-use is one of the biggest uses of Inheritance


What is change in the genetic information code?

Genes-the units of inheritance, which transmit information from parents to offspring.


Can structures be inherited?

Structured programming is not at all related to inheritance. Structured programming is a paradigm that allows, amongst many other things, one to write code in a manner that nests decisions and processing in a logical, "structured" way. Inheritance, on the other hand, is an aspect of Object Oriented Design and Programming.


How do a UK citizen get a tax code to get my inheritance from an uncle in US?

You don't need a UK tax code to receive overseas inheritance. The only time you need a UK tax code - is if you're liable to pay tax.


What could be the main advantage of inheritance concept of object orientation?

Code Reuse and avoiding redundancy is the main advantage of inheritance concept. Using inheritance, instead of rewriting a piece of code again in a class, we inherit the features from the parent class and use it instead


Why you need to use inheritance?

Inheritance is an object oriented programming concept that helps us with the following benefits:You can reuse existing code instead of having to write them againredundancy of code is avoidedrework and maintenance is easy


Where can you find information on inheritance laws in Venezuela?

You can find information on inheritance laws in Venezuela by consulting with a local lawyer specialized in family law or by researching the Civil Code of Venezuela. Additionally, you can contact the Public Registry Office in Venezuela for specific information on inheritance procedures and regulations.


Using console application show the use of inheritance in your program?

inheritance is purpose of deriving one class from other class and it is reusabilty of code..


What is public inheritance in java?

Inheritance is a Java feature by which we can reuse code and programming logic from one class in another class. We implement Inheritance using the extends keyword.Ex: public class Ferrari extends Car {…}Here the Ferrari Class will extend features from the Car Class.This is Inheritance. The different types of Inheritance are:Single InheritanceMulti-Level InheritanceMultiple Inheritance (Java supports only Partial Multiple Inheritance) andHybrid Inheritance


How can a four letter code provide information that determines many different traits?

hii boo uh idk the answer this this shiz okai? okai. maybe okai will be our always;)


How does inheritance promote code reuse?

One of the earliest motivations for using inheritance was the re-use of code which already existed in another class. This practice is usually called implementation inheritance.In most quarters, class inheritance for the sole purpose of code re-use has fallen out of favor.The primary concern is that implementation inheritance does not provide any assurance of polymorphic substitutability-an instance of the re-using class cannot necessarily be substituted for an instance of the inherited class. An alternative technique, delegation, requires more programming effort but avoids the substitutability issue. In C++ private inheritance can be used as form of implementation inheritance without substitutability. Whereas public inheritance represents an "is-a" relationship and delegation represents a "has-a" relationship, private (and protected) inheritance can be thought of as an "is implemented in terms of" relationship.