Skip to main content

20 proverbe in english

 Certainly! Here are 20 short proverbs:



1. A bird in the hand is worth two in the bush.

2. Actions speak louder than words.

3. Don't count your chickens before they hatch.

4. You can't have your cake and eat it too.

5. Two wrongs don't make a right.

6. When in Rome, do as the Romans do.

7. Better late than never.

8. Every cloud has a silver lining.

9. Haste makes waste.

10. A stitch in time saves nine.

11. Where there's smoke, there's fire.

12. Don't put all your eggs in one basket.

13. The early bird catches the worm.

14. Two heads are better than one.

15. You reap what you sow.

16. When the going gets tough, the tough get going.

17. Don't bite the hand that feeds you.

18. All that glitters is not gold.

19. The grass is always greener on the other side.

20. Necessity is the mother of invention.


            Thank you 

Comments

Popular posts from this blog

java lab 2nd semester

SYED AMMAL ARTS AND SCIENCE COLLEGE   (Affiliated to Alagappa University - Karaikudi) NAAC Accredited with “B” Grade Koottampuli, Ramanathapuram - 623513     DEPARTMENT OF INFORMATION TECHNOLOGY                   Reg. No :     Name     :         Academic Year     2024 – 2025     SYED AMMAL ARTS AND SCIENCE COLLEGE   (Affiliated to Alagappa University - Karaikudi) NAAC Accredited with “B” Grade DEPARTMENT OF INFORMATION TECHNOLOGY       Certified a Bonafide record of practical work done on 23BIT2P1-JAVA PROGRAMMING LAB by _______________________________ Reg.No. __________________ of B.Sc. (Information Technology) – I year during II Semester APRIL, 2025.                      ...

DBMS LAB

AIM: To write a sql program in ddl commands. PROGRAM: SQL> create table student(stid number, stname varchar(15), staddr varchar(15), stmob number(15)); Table created. SQL> desc student; Name Null? Type ----------------------------- -------- ------------------------ STID NUMBER STNAME VARCHAR2(15) STADDR VARCHAR2(15) STMOB NUMBER(15) SQL> alter table student add stmark number; Table altered. SQL> desc student; Name Null? Type --------------------------------- -------- -------------------- STID NUMBER STNAME VARCHAR2(15) STADDR VARCHAR2(15) STMOB NUMBER(15) STMARK NUMBER SQL> alter table student rename to student_info; Table altered. SQL> desc student; ERROR: ORA-04043: object student does not exist SQL> desc student_info; Name Null? Type -------------------------------- -------- ---------------- STID NUMBER STNAME VARCHAR2(15) STADDR VARCHAR2(15) STMOB NUMBER(15) STMARK NUMBER SQL> drop table student_info; Table dropped. SQL> desc student_info; ERROR: ORA-04...

Iwd only 8 pdf 😉(👈 click seiyavum)

 demonstrate the calculator program. Program : <html> <body> <script> const operator = prompt('Enter operator to perfome the calculation(either+,-,* or/):');  const number1 = parseFloat(prompt('Enter the first number:'));  const number2 = parseFloat(prompt('Enter the second number:'));  let result;  if(operator =='+') { result = number1+number2; } else if(operator =='-') { result = number1-number2; } else if(operator =='*') { result = number1*number2; } else { result=number1/number2; } window.alert("Result is"+result); </script> </body> </html> OUTPUT : Result : The given program is executed successfully. Ex no : 2 Date : FACTORIAL Aim: To demonstrate the factorial program. Program : <html> <body style="text align:center;font-size:20px;"> <h1>welcome to department of BCA</h1> <h1>FACTORIAL NUMBER</h1> enter the num...