Skip to main content

Lesser known animals in the world

 Here are some of the lesser-known animals in the world:


Mammals

1. *Aye-Aye (Madagascar)*: A type of lemur with a long, thin middle finger.

2. *Quokka (Western Australia)*: A small wallaby known for its smile.

3. *Dik-dik (Eastern Africa)*: A small antelope that can live without water.

4. *Tarsier (Southeast Asia)*: A small, nocturnal primate with huge eyes.

5. *Okapi (Congo)*: A giraffe-like animal with striped legs.


Birds

1. *Kakapo (New Zealand)*: A large, flightless parrot.

2. *Quetzal (Central America)*: A colorful bird with a long, flowing tail.

3. *Shoebill (Africa)*: A large wading bird with a distinctive shoe-shaped bill.

4. *Cassowary (Australia)*: A large, flightless bird with a distinctive casque on its head.

5. *Tinamou (South America)*: A small, flightless bird with a distinctive crest.


Reptiles

1. *Axeolotl (Mexico)*: A type of salamander that can regrow its limbs.

2. *Geoduck (North America)*: A type of large, long-necked clam.

3. *Tegu (South America)*: A type of lizard that can live up to 20 years in captivity.

4. *Frill-necked Lizard (Australia)*: A type of lizard with a distinctive frill around its neck.

5. *Gila Monster (North America)*: A type of venomous lizard.


Amphibians

1. *Poison Dart Frog (Central and South America)*: A type of brightly colored frog with toxic secretions.

2. *Red-eyed Tree Frog (Central and South America)*: A type of brightly colored frog with distinctive red eyes.

3. *Caecilian (Africa and Asia)*: A type of legless amphibian.

4. *Hellbender (North America)*: A type of large, aquatic salamander.

5. *Axolotl (Mexico)*: A type of salamander that can regrow its limbs.


Fish

1. *Vampire Squid (Deep-sea)*: A type of deep-sea squid with a distinctive pair of retractable, thread-like filaments.

2. *Anglerfish (Deep-sea)*: A type of deep-sea fish with a distinctive lure on its head.

3. *Blobfish (Deep-sea)*: A type of deep-sea fish with a soft, gelatinous body.

4. *Gulper Eel (Deep-sea)*: A type of deep-sea eel with a large, pelican-like mouth.

5. *Mola Mola (Ocean)*: A type of large, oceanic fish that can grow up to 3 meters in length.


Note: This is not an exhaustive list, and there are many more fascinating and lesser-known animals in the world.

Comments

Popular posts from this blog

Solve

Directions: In each Q1 to Q3 of the following questions, there are five letter groups or words in each question. Four of these letter groups or words are alike in some way, while one is different. Find the one which is different. Q.1.    (1) black    (2) red    (3) green    (4) paint    (5) yellow Answer:- (4) paint Q.2.    (1) BC    (2) MN    (3) PQ    (4) XZ    (5) ST Answer :-(4)XZ Q.3.    (1) Mango    (2)Apple    (3) Orange    (4) Guava    (5) Rose Answer :- (5) Rose Directions : In each of the following questions, there is a question mark in which only one of the five alternatives given under the question satisfies the same relationship as is found between the two terms to the left of the sign :: given in the question. Find the correct answer ...

Solved practical slips of 12th Computer Science journal

Program 1:- Write a function in C++ that exchanges data (passing by references )using swap function to interchange the given two numbers.*/ # include<iostream.h> # include<conio.h> void swap(float &x ,float &y) { float t=x; x=y; y=t; } void main() { void swap(float &,float &); float a,b; cin>>a>>b; cout<<” a := ” << a <<” b := ”<< b<< endl; swap(a,b); cout<< ”a:= ”<< a<< ” b := ”<< b<< endl; } Output : 2 4 a := 2 b:= 4 a:= 4 b: =2   Program 2:- Write a program in C++ with a ratio class using member functions like assign () function to initialize its member data integer numerator and denominator ,convert() function to convert the ratio into double, invert() to get the inverse of the ratio and print() function to print the ratio and its reciprocal.*/ ...

SOLVE QUESTION ANSWERS ON OPERATING SYSTEM .

1.One can interface with operating system by means of ------- A) Operating system call in a program B) Operating system commands C) Operating system process D) Both by operating system call and operating system commands Answer :-  D) Both by operating system call and operating system commands 2. Which of the following is not type of processing ? A) Serial B) Network C) Batch D) Multiprogramming Answer :- B) Network 3. Kernel is _____ A) A part of operating system B) An operating system C) A hardware D) A register Answer :-  A) A part of operating system 4. UNIX operating system is based on ______ A) Language structure B) Kernel approach C) Virtual machine D) Time sharing Answer :-   B) Kernel approach 5. A transition between two memory resident process in a memory resident process in amultiprograming system is called ______ A) Process switch B) Mode switch C) Transition switch D) None of these Answer :-    A) Process ...