Skip to content
cs2study

cs2study

Computer Science C.B.S.E syllabus

  • Home
  • Python-Class XI
    • Videos
    • PDF/PPT
    • Programs
    • Papers
    • MCQ Quiz
    • Project/Practical File
    • Online Class-XI
  • Python-Class XII
    • Videos
      • File Handling
      • Python Functions
      • Stack
      • MySQL with Python
      • Videos-Networking
    • PDF/PPT
      • Function
      • Python Modules
      • File Handling
      • Stack and Queue
      • MySQL
      • Networking
    • Programs
      • Function Programs
      • File Handling
      • Stack and Queue
      • MySQL
      • MySQL Connectivity
    • Papers
      • Sample Papers
      • School Papers
      • Assignment/Test
    • MCQ
      • MCQ Quiz
      • MCQ Chapter-wise
    • Projects & Practical Files
    • Board Practical Exam
  • Python-Quick Revision
    • Notes
    • Errors and Outputs
    • Exam Revision Notes
    • Question Bank
  • C++
    • Notes
    • Programs/Questions
    • Project/Practical File
  • MySQL Software
  • Syllabus
  • Toggle search form

Month: February 2021

XII-Board Practical Exam 2020-21

Posted on By Pallavi S No Comments on XII-Board Practical Exam 2020-21
XII-Board Practical Exam 2020-21

VIVA Viva Based Questions for Board Practical Exam To revise more concepts for Viva SAMPLE -BOARD PRACTICAL EXAM QUESTIONS CBSE Board Practical Exam Questions XII 2020-21 SOLUTION OF ALL SETS OF PRACTICAL EXAM 2020-21          

Board Practical Exam, Class XII

Stack and Queue

Posted on By Pallavi S No Comments on Stack and Queue
Stack and Queue

A data structure in python can be defined as a structure which can holds related data. In other words we can say that data structure is a way of storing, organizing and fetching data in computer. There are four data structure in python : List Tuple Dictionary Set We will learn that how List can be implemented…

Read More “Stack and Queue” »

Class XII

Questions on Tuples

Posted on By Pallavi S No Comments on Questions on Tuples
Questions on Tuples

It is a sequence of immutable objects. It is just like list.  Difference  between  the  tuples  and  the  lists  is  that  the  tuples cannot be changed unlike lists. Lists uses square bracket where as tuples use parentheses. Questions on Tuples  

Class XI, Class XI, tuple, XI Videos

Networking -Full Forms

Posted on By Pallavi S No Comments on Networking -Full Forms
Networking -Full Forms

FULL FORMS OF THE FOLLOWING NETWORKING TERMS: SSL– Secure Sockets Layer IMAP– Internet Message Access Protocol FTP– File transfer protocol- WiFi– Wireless Fidelity HTTPs– Hyper Text Transfer Protocol Secure WAP– Wireless Application Protocol VoIP– Voice Over Internet Protocol SMTP– Simple Mail Transfer Protocol TDMA– Time Division Multiple Access CDMA– Code Division Multiple Access TCP/IP– Transmission…

Read More “Networking -Full Forms” »

Class XII, Networking

MySQL-Constraints

Posted on By Pallavi S No Comments on MySQL-Constraints
MySQL-Constraints

CONSTRAINTS: A Constraint is a condition or checks applicable on a field or set of fields. Constraints are also known as integrity constraints because they applied to maintain data integrity. Two types of constraints: Column constraints: Apply only to individual columns. Table constraints:    Apply to group of one or more columns. Syntax: CREATE TABLE…

Read More “MySQL-Constraints” »

MySQL Notes, MySQL with Python

LIST

Posted on By Pallavi S No Comments on LIST
LIST

LIST  An ordered collection of data items / elements  Built in data structure in which individual element can be accessed using its position i.e. index value  Represented using [] and elements are separated by comma  Mutable data structure  Index in the list starts from 0 for first element i.e. forward…

Read More “LIST” »

Class XI, Class XI

Dictionary

Posted on By Pallavi S No Comments on Dictionary
Dictionary

Dictionary Unordered collection of items / elements. Each item has two parts – key : value  A mapping between key and it’s value, separated by colon (:)  Items are enclosed in {} and separated by comma.  Are optimized to retrieve data using key. So key (values) should be unique. They can be…

Read More “Dictionary” »

Class XI, Class XI

MySQL Python Connectivity Commands

Posted on By Pallavi S No Comments on MySQL Python Connectivity Commands
MySQL Python Connectivity Commands

MySQL Python Connectivity Commands #CREATE DATABASE import mysql.connector mydb=mysql.connector.connect(host=”localhost”,user=”root”,passwd=”12345″) mycursor=mydb.cursor() mycursor.execute(“CREATE DATABASE SCHOOL”) # SHOW DATABASE import mysql.connector mydb=mysql.connector.connect(host=”localhost”,user=”root”,passwd=”12345″) mycursor=mydb.cursor() mycursor.execute(“SHOW DATABASE”) for x in mycursor:    print (x) # CREATE TABLE import mysql.connector mydb=mysql.connector.connect(host=”localhost”,user=”root”,passwd=”12345″,database=”student”) mycursor=mydb.cursor() mycursor.execute(“CREATE TABLE FEES (ROLLNO INTEGER(3),NAME VARCHAR(20),AMOUNT INTEGER(10));”) # SHOW TABLES import mysql.connector mydb=mysql.connector.connect(host=”localhost”,user=”root”,passwd=”12345″,database=”student”) mycursor=mydb.cursor() mycursor.execute(“SHOW TABLES”) for x in…

Read More “MySQL Python Connectivity Commands” »

MySQL with Python

LOOPS

Posted on By Pallavi S No Comments on LOOPS
LOOPS

Loop Types There may be a situation, when you need to execute a block of code several times. In general, statements are executed sequentially: The first statement in a function is executed first, followed by the second, and so on. Programming languages provide various control structures that allow for more complicated execution paths. A loop…

Read More “LOOPS” »

Class XI, Class XI

Function

Posted on By Pallavi S No Comments on Function
Function

FUNCTION– A function is a programming block of codes that is used to perform a single, related task. It only runs when it is called. We can pass data, known as parameters, into a function. A function can return data as a result. We have already used some python built-in functions like print(), etc. But…

Read More “Function” »

Function

Posts pagination

1 2 Next

Recent Posts

  • Tips-Networking Case-based Questions
  • XII-Board Practical Exam 2020-21
  • Stack and Queue
  • Questions on Tuples
  • Networking -Full Forms

Recent Comments

    Categories

    • About
    • C++
      • Notes
      • Programs/Questions
      • Project/Practical File
    • Class XI
      • MCQ
      • Online Class-XI
      • PDF/PPT
      • Project/Practical File
    • Class XII
      • Assignment/Test
      • Board Practical Exam
      • File Handling
      • File Handling
      • Function Programs
      • Notes
      • Projects and Practical Files
        • Stack
          • Stack and Queue
      • Quick Revision
        • Errors and Outputs
        • Exam Revision Notes
        • Question Bank
      • Stack and Queue
    • File Handling
    • Function
    • Home
    • MCQ Chapter-wise
    • MCQ Quiz
    • MCQ Quiz
    • MySQL
    • MySQL Software
    • Papers
    • Papers
    • PDF/PPT
      • MySQL
      • MySQL with Python
      • Networking
    • Practical/Project
    • Programs
    • Programs
      • MySQL Connectivity
    • Python Functions
    • Python Modules
    • Python_fundamentals
    • Sample Papers
    • School Papers
    • Syllabus
    • Videos
    • Videos
    • Videos-Networking

    Archives

    • March 2021
    • February 2021

    Categories

    • Assignment/Test paper
    • Board Practical Exam
    • Class XI
    • Class XI
    • Class XII
    • Function
    • MySQL Notes
    • MySQL with Python
    • Networking
    • tuple
    • XI Videos

    Copyright © 2025 cs2study.

    Powered by PressBook WordPress theme