Employability Skills Unit 1: Communication Skills Introduction to Communication QUE. Answer the following questions: 1. What is meant by sender in communication? 2. What is feedback in communication? 3. Explain the communication cycle with diagram. 4. Describe the importance of effective communication in daily life. 5. Explain verbal communication and its types with examples. 6. ...
GRADE XII - MYSQL CONNECTIVITY WITH PYTHON SOURCE CODE : #ADD TO DATABASE import mysql.connector mydb = mysql.connector.connect( host="localhost", user="root", passwd="root", database="school" ) mycursor=mydb.cursor() v1=input("enter GROCERY ID:") v2=input("enter GROCERY NAME:") v3=int(input("enter PRICE:")) v4=int(input("enter QUANTITY:")) sql='insert into GRO values("%s","%s","%d","%d")'%(v1,v2,v3,v4) #print(sql) mycursor.execute(sql) mydb.commit() print("*********Grocery Added To Database Successfully*****") #TO VIEW DATA sql="select * from gro" mycursor.execute(sql) res=mycursor.fetchall() print("The AVAILABLE GROCERY details are as follows : ") print("G_ID NAME PRICE QUANTITY") print("\n##*************************************** ************ ##") for x in res: print(x) print("\n##**...