CBSE COMPUTER SCIENCE
Open in Telegram
QUESTION BANK, REFERENCE BOOK, LAB MANUAL , WORKSHEET ETC., PYTHON TEXT BOOK AND REFERENCE BOOKS, 01. ASK QUESTIONS AT https://t.me/joinchat/FJ1noGs-64I0OWI1
Show more549
Subscribers
No data24 hours
No data7 days
No data30 days
Posts Archive
CREATE DATABASE ORG;
SHOW DATABASES;
USE ORG;
CREATE TABLE Worker (
WORKER_ID INT NOT NULL PRIMARY KEY AUTO_INCREMENT,
FIRST_NAME CHAR(25),
LAST_NAME CHAR(25),
SALARY INT(15),
JOINING_DATE DATETIME,
DEPARTMENT CHAR(25)
);
Write python programs for the following
Fahrenheit to Celsius using C=F-32 * 5/9
Sum of Series : S=1+4+9+16+…upto N terms.
Calculate simple interest using function [Note : Simple_interest=PNR/100]
Sum of the digits of a number using a function with return
Factorial of a Number using recursion
