No products in the cart.

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

Ask Question
  • 3 answers
Thanks yrr

Abhijeet Pratap Singh 4 years, 2 months ago

Thanks for given ans??

Tannu Rao 4 years, 3 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 4 years, 3 months ago

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

Yogita Ingle 4 years, 3 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 4 years, 2 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 4 years, 2 months ago

Yes, it's pydroid 3.

Shreya Suman 4 years, 3 months ago

Its pyorid
  • 1 answers

Jatin Verma 4 years, 3 months ago

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

Gaurav Seth 4 years, 3 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 4 years, 3 months ago

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

Aastha Singh 4 years, 3 months ago

Please find the output it is very important
  • 1 answers

Abhijeet Pratap Singh 4 years, 3 months ago

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

Gaurav Seth 4 years, 3 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 4 years, 3 months ago

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

Harshit Vijay 4 years, 3 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 4 years, 2 months ago

11110100101
  • 1 answers

Pranav Maurya 4 years, 3 months ago

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

Yogita Ingle 4 years, 3 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.

  • 4 answers

Shreya Mansi 4 years, 2 months ago

8 is tye correct answer

Praveen Patel 4 years, 3 months ago

8 is the correct answer.

Game Must 4 years, 3 months ago

8 is the correct answer 2**3 means 2 the power 3 that's 8

Gaurav Seth 4 years, 3 months ago

def print_double(x): print(2 * x) print_double(3) ans: 6

  • 1 answers

Gaurav Seth 4 years, 3 months ago

In computer science, a library is a collection of non-volatile resources used by computer programs, often for software development. These may include configuration data, documentation, help data, message templates, pre-written code and subroutines, classes, values or type specifications.

In computer programming, a library refers to a collection of files, programs, routines, scripts, or functions that can be referenced in the programming code.

  • 1 answers

Gaurav Seth 4 years, 3 months ago

Python has the following standard or built-in data types:

Numeric

A numeric value is any representation of data which has a numeric value. Python identifies three types of numbers:

  • Integer: Positive or negative whole numbers (without a fractional part)
  • Float: Any real number with a floating point representation in which a fractional component is denoted by a decimal symbol or scientific notation
  • Complex number: A number with a real and imaginary component represented as x+yj. x and y are floats and j is -1(square root of -1 called an imaginary number)

Boolean

Data with one of two built-in values <code>True</code> or <code>False</code>. Notice that 'T' and 'F' are capital. <code>true</code> and <code>false</code> are not valid booleans and Python will throw an error for them.

Sequence Type

A sequence is an ordered collection of similar or different data types. Python has the following built-in sequence data types:

  • String: A string value is a collection of one or more characters put in single, double or triple quotes.
  • List : A list object is an ordered collection of one or more data items, not necessarily of the same type, put in square brackets.
  • Tuple: A Tuple object is an ordered collection of one or more data items, not necessarily of the same type, put in parentheses.

Dictionary

A dictionary object is an unordered collection of data in a key:value pair form. A collection of such pairs is enclosed in curly brackets. For example: <code>{1:"Steve", 2:"Bill", 3:"Ram", 4: "Farha"}</code>

type() function

Python has an in-built function type() to ascertain the data type of a certain value. For example, enter <code>type(1234)</code> in Python shell and it will return <code><class 'int'></code>, which means 1234 is an integer value. Try and verify the data type of different values in Python shell, as shown below.

  • 1 answers

Hemanth Chitturi 4 years, 3 months ago

Binary" files are any files where the format isn't made up of readable characters. Binary files can range from image files like JPEGs or GIFs, audio files like MP3s or binary document formats like Word or PDF. In Python, files are opened in text mode by default.

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