answersLogoWhite

0


Best Answer

The Osteichthyes endoskeleton is composed of chiefly 'bones'. hence they are called as bony fishes

User Avatar

Wiki User

13y ago
This answer is:
User Avatar
More answers
User Avatar

AnswerBot

6mo ago

Members of the class Osteichthyes, which includes bony fish, have an endoskeleton made primarily of bone. This type of skeleton provides structural support and protection for the internal organs. It also allows for flexibility and movement in water.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What type of skeleton do members of the class Osteichthyes have?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What type of skeleton does red snapper have?

A bony skeleton. Snappers are a member of the taxonomic group Osteichthyes (bony fish), as opposed to cartilaginous fishes (like sharks) or boneless fishes (like hagfish).


What type of body do osteichthyes have?

scales


What type of reproduction do Osteichthyes have?

The reproduction among organisms in Osteichthyes varies greatly, but is all sexual reproduction with separate sexes.


What type of jobs did members of the middle class have?

none


Is hydrostatic skeleton a form or type of skeleton?

A hydrostatic skeleton is a type of skeleton many animals in the animal kingdom have.


Why cannot initialize data member within class?

A class is a type. Classes don't do anything except define the type. You have to instantiate an object of the type in order to actually do anything, including initialising data members. However, the class can define how a data member is initialised. The most efficient method of initialising class members if via the class constructor initialisation list.


Does a slug worm or jellyfish have a skeleton?

They have a type of skeleton called a hydrostatic skeleton. This type of skeleton is a fluid filled sac which is surrounded by muscles.


What type of skeleton do aves have?

Internal Skeleton


What type of skeleton is a sponge?

a sponge skeleton


What type of skeleton has a hummingbird?

internal skeleton


What type of skeleton does a squid?

it doesn't have a skeleton


What is public derivation in object-oriented programming?

Public derivation or public inheritance means that all the public members of the base calls are declared public in the derived class while the protected members remain protected. Protected inheritance means all the public members of the base class are declared protected in the derived class, as are the protected members. Private inheritance means all the public and protected members of the base class are declared private in the derived class. Private members of the base class are never inherited and are therefore unaffected by inheritance. Note that regardless of the type of inheritance specified, individual non-private members of the base class can be inherited with public or protected access as required of the derived class. The type of inheritance can be therefore be thought of as being the default inheritance for all base class members which can (optionally) be overridden for specific members where required.