uz
Feedback
CBSE COMPUTER SCIENCE

CBSE COMPUTER SCIENCE

Kanalga Telegram’da o‘tish

QUESTION BANK, REFERENCE BOOK, LAB MANUAL , WORKSHEET ETC., PYTHON TEXT BOOK AND REFERENCE BOOKS, 01. ASK QUESTIONS AT https://t.me/joinchat/FJ1noGs-64I0OWI1

Ko'proq ko'rsatish
549
Obunachilar
Ma'lumot yo'q24 soatlar
Ma'lumot yo'q7 kunlar
Ma'lumot yo'q30 kunlar
Postlar arxiv
02-SQL_QUEST.pdf3.56 KB

01-SQL-Notes.pdf0.98 KB

photo content
+6

photo content
+9

photo content
+8

photo content
+3

photo content
+5

photo content
+3

photo content
+2

12CS-PRE-BOARD-VEDIC-03.pdf4.32 KB

Python Error Finding Practical Based QB.pdf8.93 KB

IMPORTANT MANY PAPERS for XII CS Python_CS_sample papers.pdf2.43 MB

photo content
+2

photo content
+2

photo content
+2

XII CS QUESTION BANK FOR BRIGHT STUDENTS CHAPTER WISE SET-II.pdf6.15 KB

MCQ Chapter Wise class 12 PYTHON.docx1.59 KB

SET-1 ['h', 'g'] [] SET-2 ['h', 'g', 'f'] [] SET-3 [] ['f', 'e', 'd'] SET-4 [] ['e', 'd'] SET-5 [] ['f', 'g'] SET-6 [] ['e', 'f', 'g'] SET-7 ['c', 'd', 'e'] [] SET-8 ['c', 'd'] [] >>>

l = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i'] #l="abcdefghi" print("SET-1") print(l[-2:-4:-1]) print(l[-4:-2:-1]) print("SET-2") print(l[-2:4:-1]) print(l[4:-2:-1]) print("SET-3") print(l[2:-4:-1]) print(l[-4:2:-1]) print("SET-4") print(l[2:4:-1]) print(l[4:2:-1]) print("SET-5") print(l[-2:-4:1]) print(l[-4:-2:1]) print("SET-6") print(l[-2:4:1]) print(l[4:-2:1]) print("SET-7") print(l[2:-4:1]) print(l[-4:2:1]) print("SET-8") print(l[2:4:1]) print(l[4:2:1])