No products in the cart.

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

Ask Question
  • 1 answers

Yogita Ingle 4 years ago

  • Primary memory is also called internal memory whereas Secondary memory is also known as a Backup memory or Auxiliary memory.
  • Primary memory can be accessed by the data bus whereas Secondary memory is accessed by I/O channels.
  • Primary memory data is directly accessed by the processing unit whereas Secondary memory data cannot be accessed directly by the processor.
  • Primary memory is costlier than secondary memory whereas Secondary memory is cheaper compared to primary memory.
  • Primary memory is both volatile & nonvolatile whereas Secondary memory is always a non-volatile memory.
  • 2 answers

Nidhi M 3 years, 9 months ago

print ("Deleting another column using POP function:") df.pop('two') print df

Nidhi M 3 years, 9 months ago

print ("Adding a new column by passing as Series:") df['three']=pd.Series([10,20,30],index=['a','b','c']) print df
  • 2 answers

Naitik Agrawal 3 years, 11 months ago

Sorry it's "Guido Van Rossum"

Naitik Agrawal 3 years, 11 months ago

Guido Can Rossum
  • 1 answers

Naitik Agrawal 3 years, 11 months ago

Go to sultan Chand website!
  • 1 answers

Kartick Chauhaan 3 years, 11 months ago

SELECT COUNT(*) FROM CONTACTS;  ☝️ This statement gives one type of output. This is because the function Count(*) counts total number of records in the table. It also includes the NaN values as records. BUT THE STATEMENT SELECT COUNT(HOBBY) FROM CONTACTS; Gives another output. This is because this statement is applied over a column and so it does not includes the NaN values.
  • 1 answers

Sia ? 3 years, 6 months ago

You can generate random numbers in Python by using random module. Python offers random module that can generate random numbers. These are pseudo-random number as the sequence of number generated depends on the seed. If the seeding value is same, the sequence will be the same.

  • 1 answers

Sia ? 3 years, 5 months ago

With sum, you take a certain number of values and perform a sum to get the total. Cumsum is the cumulative sum of differences between the values. So for each row, you'll get the cumulative total up until that point.
  • 1 answers

Sia ? 3 years, 6 months ago

The first quartile (Q1) is defined as the middle number between the smallest number (minimum) and the median of the data set. It is also known as the lower or 25th empirical quartile, as 25% of the data is below this point.

  • 1 answers

Naitik Agrawal 3 years, 11 months ago

It's deleted from the syllabus bro
  • 1 answers

Sia ? 3 years, 6 months ago

pandas is a software library written for the Python programming language for data manipulation and analysis. In particular, it offers data structures and operations for manipulating numerical tables and time series. It is free software released under the three-clause BSD license.

  • 1 answers

Sia ? 3 years, 6 months ago

The main difference between WHERE and HAVING clause comes when used together with GROUP BY clause, In that case WHERE is used to filter rows before grouping and HAVING is used to exclude records after grouping. This is the most important difference and if you remember this, it will help you write better SQL queries.
  • 1 answers

Sia ? 3 years, 6 months ago

A function is a binary relation between two sets that associates to each element of the first set exactly one element of the second set. Typical examples are functions from integers to integers, or from the real numbers to real numbers.

  • 1 answers

Avilash Sharma 4 years, 1 month ago

First of all write the correct word. Ok... Not mid it is a mod. Come to your question.. Sign is not a numeric python
  • 1 answers

Meghna Thapar 4 years, 1 month ago

A library is a set of modules which makes sense to be together and that can be used in a program or another library. A package is a unit of distribution that can contain a library or an executable or both. It's a way to share your code with the community. Module is a file which contains python functions , global variables etc. It is nothing but .py file which has python executable code / statement. Package is namespace which contains multiple package/modules. Library It is collection of various packages.

  • 0 answers
  • 1 answers

Yogita Ingle 4 years, 2 months ago

CHAR and VARCHAR are both ASCII character data types and almost same but they are different at the stage of storing and retrieving the data from the database. Following are some important differences between CHAR and VARCHAR in MySQL −

CHAR Data Type

VARCHAR Data Type

Its full name is CHARACTER Its full name is VARIABLE CHARACTER
It stores values in fixed lengths and are padded with space characters to match the specified length VARCHAR stores values in variable length along with 1-byte or 2-byte length prefix and are not padded with any characters
It can hold a maximum of 255 characters. It can hold a maximum of 65,535 characters.
It uses static memory allocation. <pre> mysql>create table emp(name CHAR(20)); Query OK, 0 rows affected (0.25</pre> It uses dynamic memory allocation. <pre> mysql>create table emp1(name VARCHAR(20)); Query OK, 0 rows affected (0.21</pre>

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