answersLogoWhite

0

All mammals give live birth except the platypus and echidna which lay eggs.

User Avatar

Wiki User

8y ago

What else can I help you with?

Related Questions

Is any bird a mammal?

No, there are no birds that are mammals. These are two completely different classes of the animal kingdom. Birds are class aves, mammals are class Mammalia.


What are two organisms in the same class but in different orders?

There are several organisms that are in the same class but different orders. For example, wolves and mice are both in the class Mammalia. However, the wolf is in the order Carnivora, and the mouse is in the order rodentia.


What combination forms a salt two nonmetals two metal a metal and nonmetal or a nonmetal and a noble gas?

A metal and a nonmetal; but exceptions exist.


What class are whales in?

The belugaor white whale, Delphinapterus leucas, is an Arctic and sub-Arctic cetacean. It is one of two members of the family Monodontidae, along with the narwhal.


Describe the JAVA throwable class hierarchy and types of exceptions?

In Java there are two main types of Exceptions. * Checked Exceptions - The ones that can be checked & handled in our code. Ex: I/O Exception, SQL Exception etc. In most cases, the compiler itself forces us to catch & handle these exceptions * Un-checked Exceptions - The ones that we cannot & should not handle in our code. Ex. Null Pointer Exception The java.lang.Throwable is the super class of all errors and exceptions in Java. Only objects of this class can be thrown & caught and handled by try-catch blocks. Ex: try { ..... ..... } catch (Exception e){ ... } finally { ... }


Which are the two key features of members of the class Mammalia?

Mammals are characterized by having hair or fur on their bodies and producing milk to feed their young. These are two key features that distinguish mammals from other animal classes.


Two organisms in the same class but different orders?

An example of two organisms in the same class but different orders is a lion (order: Carnivora) and a horse (order: Perissodactyla). Both belong to the class Mammalia, but they are classified under different orders based on their biological characteristics and evolutionary history.


What is the least inclusive taxonomic category you share with dogs?

Humans and Canines share, Kingdom: Animalia, Phylum: Chordata, Class: Mammalia. Both are mammals, and that's the least inclusive category the two share. Humans then belong to the Primate order, while canines belong to order Carnivora.


What are the types of exception in java?

Exceptions are of two types: checked exceptions and unchecked exceptions.


What is the top most class in Exceptions?

All exception types are sub classes of the built-in class Throwable. so at the top most position it is Throwable --- under this comes two branches Exception and Error.


What are the classes of mammals?

Examples of animals in the mammalia class include placental mammals, such as cats, dogs, rabbits, gerbils, guinea pigs, horses, hippopotamuses, giraffes, dolphins, whales etc. The mammals class also includes the marsupials, which means kangaroos, koalas, wombats, Tasmanian devils, quolls, quokkas, etc. It also includes the two monotremes, or egg-laying animals, which are the platypus and the echidna. All members of the Mammalia class feed their young on mothers' milk. They are the only animals in the animal kingdom to do so.


Is it possible to have a method in the super class and sub class with same name but different signature?

Yes, it is perfectly possible. If two methods have a different signature, they can exist together irrespective of where they are present, either in the same class or in a super class, sub class situation. If two methods have the same signature and one exists in the super class and one in the sub class it is called method overriding.