Posts

KARNATAKA SECOND PUC COMPUTER SCIENCE STUDY MATERIAL

Image
NEW NCERT BASED SYLLABUS 2025 - 2026  Dear Teachers, Students, and Enthusiasts, We would like to inform you that the   Karnataka Shikshaka  Android  app will now receive   regular updates and corrections   to its content. Please note that the previously released PDF documents are   no longer maintained   and will not be updated or corrected. We encourage you to support the app by using it, so you can access the most   accurate and up-to-date material   for your teaching and learning needs. Thank you for your continued support. Warm regards, Developer,  Karnataka Shikshaka Click here to Download the Karnataka Shikshaka App ______________________

PYTHON: Tips and Tricks

Image
 PYTHON: TIPS AND TRICKS UPDATED ON: 04 JANUARY 2025 ONLINE PURCHASE LINKS: CPC BOOKS ONLINE FLIPKART ______________________________________________ WHY LIST IS NOT AN ARRAY? USER-DEFINED FUNCTIONS PASSING AN INTEGER TO A FUNCTION BY REFERENCE

Karnataka I PUC Computer Science 2024 Study Material | SECOND PUC HANDBOOK EXAM 2025

Image
UPDATED ON JANUARY 04, 2025 ONLINE PURCHASE LINKS: CPC BOOKS ONLINE FLIPKART _____________________________________________ SECOND PUC COMPUTER SCIENCE  2025 EXAM BASED ON LATEST BLUEPRINT PLAN PRICE  ₹35/- ( MRP. ₹70/-) FOR BULK ORDERS, PLEASE CALL  98440 99258 _______________________________________ ALL MY ENHANCED STUDY PACKAGE FOR  I PUC COMPUTER SCIENCE 2024 NOW, IN A PRINTED BOOK...!  PROMOTIONAL PRICE ₹110/- ( MRP. ₹220/-)  | 336 PAGES   TO GET 50% PROMOTIONAL OFFER, ORDER ONLINE For Bulk orders, please call 98440 99258 ONLINE PURCHASE LINKS: AMAZON  FLIPKART SNAPDEAL.COM (NCERT SYLLABUS)   ALL VIDEOS LIKE THIS AT: VISUALISING PYTHON CODE EXECUTION, STEP BY STEP PRESENTATIONS CHAPTER 1: COMPUTER SYSTEM CHAPTER 2: ENCODING SCHEMES AND NUMBER SYSTEM CHAPTER 3: EMERGING TRENDS CHAPTER 4: PROBLEM SOLVING CHAPTER 5: GETTING STARTED WITH PYTHON CHAPTER 6: FLOW OF CONTROL CHAPTER 7: FUNCTIONS CHAPTER 8: STRINGS CHAPTER 9: LISTS CHAPTER 10: TUP...

Solutions for the Spreadsheet Exercises

  Salesman

I PU Computer Science Text Book

  Prescribed Text Book for I PU Computer Science: I PU Computer Science

SQL: Employee Salary

/* Exercise NO 21 Generate the employee details and compute the salary based on the department.*/ -- creating database employee and opening it for use. create database employee ; use employee ; -- create employee table in employee database create table emp_table ( emp_id int ( 4 ), Dpt_id int ( 4 ), emp_name varchar ( 20 ), salary decimal ( 7 , 2 ) ); -- create department table create table dpt_table ( dpt_id int ( 5 ), dpt_name varchar ( 20 ), supervisor varchar ( 20 ) ); -- Insert record into the employee table. INSERT INTO EMP_table ( emp_id , Dpt_id , emp_name , salary ) VALUES ( 101 , 01 , 'ARUN' , 15000 ); INSERT INTO EMP_table ( emp_id , Dpt_id , emp_name , salary ) VALUES ( 102 , 02 , 'ARUNachalam' , 25000 ); INSERT INTO EMP_table ( emp_id , Dpt_id , emp_name , salary ) VALUES ( 103 , 03 , 'Blesson' , 15000 ); INSERT INTO EMP_table ( emp_id , Dpt_id , emp_name , salary ) VALUES ( 104 , 04 , ...