Posts

Cricket • India national cricket team • ICC Cricket World Cup • One Day#virat_kohali,#mahendra_singh_dhoni

Image
  Cricket  •   India national cricket team  •   ICC Cricket World Cup  •   One Da India National Cricket Team : The India national cricket team, also known as the "Men in Blue," represents India in international cricket. It is governed by the Board of Control for Cricket in India (BCCI). The team competes in various formats of the game, including Test matches, One Day Internationals (ODIs), and Twenty20 Internationals (T20Is). ICC Cricket World Cup : The ICC Cricket World Cup is one of the most prestigious events in international cricket. It is held every four years and features the world's top cricketing nations competing for the title of world champions. The tournament typically includes both group-stage matches and knockout rounds leading up to the final. One Day Internationals (ODIs) : One Day Internationals are a format of limited-overs cricket where each team gets to bat and bowl for a fixed number of overs, usually 50 overs per side. ODIs have b...

Al Nassr

Image
  Al Nassr, also known as Al Nassr FC, is a professional football (soccer) club based in Riyadh, Saudi Arabia. The club is one of the most successful and popular football teams in Saudi Arabia and the broader Middle East region. Here's a description of Al Nassr: History: Al Nassr was founded in 1955, making it one of the oldest football clubs in Saudi Arabia. The club has a rich history and has achieved significant success domestically and in regional competitions. Home Stadium: Al Nassr plays its home matches at the King Fahd Stadium, a large and iconic stadium located in Riyadh. The stadium has a seating capacity of over 67,000 spectators, making it one of the largest football stadiums in Saudi Arabia. Achievements: Al Nassr has a strong track record of success in Saudi Arabian football. The club has won numerous domestic league titles, Saudi Crown Prince Cup titles, and King Cup of Champions titles. They have also participated in continental competitions, such as the AFC Champio...

write a program count the number of characture (without space) in the given string #python_language?

Image
  write a program count the number of characture (without space) in the given string? st='hyderabad tech hall' x=0 for i in st:         if i !=' ':                 x=x+1 print(x)

WAP ENTER ANY CHARATURE/NAME AND COUNT THE CHARATURE?#python_program

Image
 #WAP ENTER ANY CHARATURE/NAME AND COUNT THE CHARATURE? ''' name=input( 'enter any name: ') print('The total characture in{} is {}'.format(name,len(name)))      ''' #wap to check the values is even or odd numbr? ''' x=eval(input('enter any number: ')) if x%2==0:     print('{} is a even number'.format(x)) else:     print('{} is odd number'.format(x)) print('thank you')     ''' #WAP TO CHECK WHETHER STUDENT PASSED IN EXAM OE NOT? ''' marks=eval(input('enter your mark: ')) if marks >=35:     print('congratulations you passed the exam') else:     print('you failed the exam betterluck next time')  ''' #wap to check wether the citizen is eligible for vote or not? ''' Name=input('enter your name: ').lower() if type(Name) is str:     age=eval(input('enter your age: '))     if age >=18:         print('Hello {} you a...

Q-1-What is difference between drop and delete command? Q-2-what is difference between drop and truncate commands? Q-3-Why truncate is DDL command? Q-4- What is select commands?

Image
 Q-1- What is difference between drop and delete command?   Drop command Delete command 1-Drop command belong to DDL. 2- Drop commands delete both header and table permanently. 3-Drop commands does not support where conditions.   Syntax: Drop table<Table_Name>;   1-Delete command belongs to DML 2-Delete commands delete the data / body part of the table. 3-Delete support where conditions. Syntax: Delete from<table_name> where <conditions>;       Q-2- what is difference between drop and truncate commands? Drop commands Truncate commands 1-Drop command belong to DDL. 2- Drop commands delete both header and table permanently. 3-Drop commands does not support where conditions.   Syntax: Drop table<Table_Name>;   1-Truncate commands belong to DDL. 2-Truncate command will delete both header and body of the table and re-create the header. 3-Truncate does not support where conditions.   Syntax: Truncate table<Table_name...

what is difference between alter and update command?

Image
  what is difference between alter and update command? Alter command Update command 1-Alter command belongs to DDL. 2-Alter command is used to modify existing table header. Example- i-Adding new column. ii-Dropping Exiting column. iii-Renaming the exiting column. iv-Change the data type and size. 3-Alter command does not support where conditions. 1-Update command belong from DML. 2-Update command is used to modify the Existing table body.  Example- i-change the values. ii-Rename exiting values.   3-Update commands supports where conditions.

What is difference between Create and insert commands?

Image
  What is difference between Create and insert commands?   Create command Insert commands 1-Create command belongs to DDL. 2- Create command is used to create header of the table. 3-It is also used to create data bases. 1-Insert command belongs to DML. 2-Insert command is used to create bo d y of the table. 3-  Insert command is used to insert new records in a table.