POISONOUS ANIMALS : 1. The most poisonous fish: "STONEFISH" 2. The most poisonous snake: "INLAND TAIPAN" 3. The most poisonous spider: "BRAZILIAN WANDERING SPIDER" 4. The most poisonous scorpion: "FAT-TAIL SCORPION" 5. The most poisonous frog: "GOLDEN POISONOUS DART FROG" 6. The most poisonous octopus: "BLUE-RINGED OCTOPUS" 7. The most poisonous snail: "GEOGRAPHIC CONE SNAIL" 8. The most poisonous ant: "BULLDOG ANT"
ANIMAL SUPERSTAR: 1.DOLLY: Its the first mammal to be cloned successfully. 2.LAIKA: Its the world's first animal to orbit the earth on 3rd November ,1957 on Soviet Spacecraft Sputnik 2. 3.DAVID GREYBEARD: The world's first animal known for not only using tools but making them as well 4.ELSA: This animal became the first captive animal ever to be successfully freed into its natural environment 5.ECHO: This animal used all its knowledge and experience to keep its family alive in the dangerous world of lions, hunters and drought. bonus FIRST WORLD ANIMAL DAY, HELD ON: 4th OCTOBER,1931
7TH COMPUTER REVISION- ANSWER KEY: 1. Name the different types of conditional statements in Python. ans) If, elif, else 2. Define looping statements in Python. Give any two types of looping statements. ans) This statement is used to execute a set of instructions multiple times. Eg: while loop, for loop. 3. List the different types of arithmetic operators in Python. ans)Addition(+) , Subtraction(-) , Multiplication(*) , Division(/). 4. Write a program in Python to print the first 5 multiples of 3 using range function. ans) 5. Write a program in Python to display whether the number is positive or negative. ans) 6. Analyse the given code and write the output: n=1 while n<=10: print(n) n=n+1 ans) 7. Differentiate between runtime error and syntax error in Python. ans) SYNTAX ERROR RUNTIME ERROR Syntax error occurs when certain rules are not followed. Eg: i)Missing parentheses , colon ,comma. ...
Comments
Post a Comment