No products in the cart.

Ask questions which are clear, concise and easy to understand.

Ask Question
CSV
  • 1 answers

Rajveer Chauhan 3 years, 10 months ago

It's full form is comma separated value It is delimited text file that uses comma to separate the value
  • 1 answers

Anirban Gorai 3 years, 10 months ago

A program’s control flow is the order in which the program’s code executes. The control flow of a Python program is regulated by conditional statements, loops, and function calls. This section covers the if statement and for and while loops; functions are covered later in this chapter. Raising and handling exceptions also affects control flow.
  • 1 answers

Ankur Sinsinwar 3 years, 10 months ago

Networking is the exchange of information and ideas among people with a common profession or special interest, usually in an informal social setting. Networking often begins with a single point of common ground. Networking is used by professionals to expand their circles of acquaintances, to find out about job opportunities in their fields, and to increase their awareness of news and trends in their fields or in the greater world. (The term computer networking refers to linking multiple devices so that they can readily share information and software resources.)
  • 1 answers

Tushar Bhardwaj 3 years, 10 months ago

Keywords Assignment Punctuator Operator Literals
  • 3 answers

Swati Pranh 3 years, 10 months ago

Python is programming language and it is very simple than c++

Jhalak Agrawal 3 years, 10 months ago

Python is a programming language which was developed by Guido Van Rossum in 1991.

Ankur Sinsinwar 3 years, 10 months ago

A programming language
  • 1 answers

Tushar Bhardwaj 3 years, 10 months ago

for I in range (15,21): cube=I**3 print(cube)
  • 3 answers

Abhijeet Pratap Singh 3 years, 8 months ago

Thanks yrr

Abhijeet Pratap Singh 3 years, 10 months ago

Thanks for given ans??

Tannu Rao 3 years, 10 months ago

Python libraries are like inbuilt facilities which provide us various pre defined codes and functions in the form of various modules which can be directly used by a programmer if required and hence make coding easier
  • 2 answers

Abhijeet Pratap Singh 3 years, 10 months ago

Modem is do work also modulated or demodulation of signal Or Convert signal digital to analog,lightbeem

Yogita Ingle 3 years, 10 months ago

  1. Computer store digital data, while telephone lines can only transfer analog data. If a computer is to be connected to internet through telephone, then it must convert digital data to analog data before transmitting the computer signals.
  2. Converting one signal form to another form is called modulation and reconverting it to original form is called as demodulation.
  3. Modern is modulator/demodulator. Modem is used to connect computer to internet. Modems convert digital data to analog data and vice-a-versa.
     
  • 1 answers

Tushar Bhardwaj 3 years, 10 months ago

f=open("Story.txt","r") def func() for line in f: c=0 w=line.split(" ") c=c+len(w) print("No of words present in the file:"+c)
  • 2 answers

Jhalak Agrawal 3 years, 10 months ago

Yes, it's pydroid 3.

Shreya Suman 3 years, 10 months ago

Its pyorid
  • 1 answers

Jatin Verma 3 years, 10 months ago

No, there is no charges for changing subject in any class.
  • 3 answers

Gaurav Seth 3 years, 10 months ago

def calcresult(): 
    i = 9 
    while i > 1: 
    if (i % 2 == 0): 
        x = i % 2 
        i = i - 1 
    else: 
        i = i - 2 
        x = i 
    print x * *2 

Ans:

Output:

<pre> 49 25 9 1 </pre>

Aastha Singh 3 years, 10 months ago

The indentation is not correct it is missing some spaces but as a python programmer you can understand

Aastha Singh 3 years, 10 months ago

Please find the output it is very important
  • 1 answers

Abhijeet Pratap Singh 3 years, 10 months ago

Phython is object oriented language because it is the property of phython
  • 1 answers

Gaurav Seth 3 years, 10 months ago

<th>Free CBSE Last Year Papers</th> <th>Link</th>
Computer Science Question Paper 2019 (Set-1) <a href="https://mycbseguide.com/downloads/getcontentfile/15505/">Download</a>
Computer Science Question Paper 2018 <a href="https://mycbseguide.com/downloads/getcontentfile/14007/">Download</a>
CBSE Class 12 Computer Science Outside Delhi 2017 <a href="https://mycbseguide.com/downloads/getcontentfile/8651/">Download</a>
CBSE Class 12 Computer Science Delhi 2017 <a href="https://mycbseguide.com/downloads/getcontentfile/8652/">Download</a>
Question paper Comp. 2017 outside delhi CBSE Class 12 COMPUTER SCIENCE <a href="https://mycbseguide.com/downloads/getcontentfile/8425/">Download</a>
Question Paper 2016 Delhi (Set 1) <a href="https://mycbseguide.com/downloads/getcontentfile/3878/">Download</a>

 

For more click on the given links:

<a href="https://www.careerindia.com/cbse-class-12-computer-science-question-papers-sq92.html">https://www.careerindia.com/cbse-class-12-computer-science-question-papers-sq92.html</a>

<a href="https://www.learncbse.in/cbse-previous-year-question-papers-class-12-computer-science/">https://www.learncbse.in/cbse-previous-year-question-papers-class-12-computer-science/</a>

<a href="https://mycbseguide.com/downloads/cbse-class-12-computer-science/1851/cbse-last-year-papers/3/">https://mycbseguide.com/downloads/cbse-class-12-computer-science/1851/cbse-last-year-papers/3/</a>

  • 1 answers

Palak Thora 3 years, 10 months ago

Computer science with Python publisher sumita arora..
  • 1 answers

Harshit Vijay 3 years, 10 months ago

Import csv file=open('name of file','mode') obj=csv.reader(file) for I in obj: print (I)
  • 0 answers
  • 1 answers

Rajveer Chauhan 3 years, 10 months ago

11110100101
  • 1 answers

Pranav Maurya 3 years, 10 months ago

You visit on pathwala website . It provides you questions and answers
  • 1 answers

Yogita Ingle 3 years, 11 months ago

A loop is a statement that repeats over and over, while a certain condition is true. Or, to state it another way, it runs until a condition is false. A condition is the value or state you are testing. For example, if you want to repeat the same math program 50,000 times, you can write a loop that runs until it has processed 50,000 times.

Loops in PHP are used to execute the same block of code a specified number of times. PHP supports following four loop types.

  • for − loops through a block of code a specified number of times.

  • while − loops through a block of code if and as long as a specified condition is true.

  • do...while − loops through a block of code once, and then repeats the loop as long as a special condition is true.

  • foreach − loops through a block of code for each element in an array.

myCBSEguide App

myCBSEguide

Trusted by 1 Crore+ Students

Test Generator

Test Generator

Create papers online. It's FREE.

CUET Mock Tests

CUET Mock Tests

75,000+ questions to practice only on myCBSEguide app

Download myCBSEguide App