Ask questions which are clear, concise and easy to understand.
Ask QuestionPosted by Sakshi Hello 4 years ago
- 1 answers
Posted by Sakshi Hello 4 years ago
- 1 answers
Posted by Vaibhav Thakur 27 4 years ago
- 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.
Posted by Ashish Sharma 4 years, 1 month ago
- 2 answers
Nidhi M 3 years, 9 months ago
Nidhi M 3 years, 9 months ago
Posted by Avilash Sharma 4 years, 1 month ago
- 2 answers
Posted by Satish Kumar 4 years, 1 month ago
- 1 answers
Posted by Dhruv Dahiya 4 years, 1 month ago
- 1 answers
Kartick Chauhaan 3 years, 11 months ago
Posted by Sree Lakshmi 3 years, 6 months ago
- 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.
Posted by Gunjan Verma 4 years, 1 month ago
- 0 answers
Posted by Aman Badhwar 3 years, 5 months ago
- 1 answers
Sia ? 3 years, 5 months ago
Posted by Aman Badhwar 4 years, 1 month ago
- 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.
Posted by Aman Badhwar 4 years, 1 month ago
- 1 answers
Posted by Aman Badhwar 4 years, 1 month ago
- 0 answers
Posted by Aman Badhwar 4 years, 1 month ago
- 0 answers
Posted by Aman Badhwar 4 years, 1 month ago
- 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.
Posted by Aman Badhwar 4 years, 1 month ago
- 0 answers
Posted by Aman Badhwar 4 years, 1 month ago
- 1 answers
Sia ? 3 years, 6 months ago
Posted by Aman Badhwar 3 years, 6 months ago
- 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.
Posted by Aman Badhwar 4 years, 1 month ago
- 0 answers
Posted by Aman Badhwar 4 years, 1 month ago
- 1 answers
Avilash Sharma 4 years, 1 month ago
Posted by Sree Lakshmi 4 years, 1 month ago
- 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.
Posted by Indiadigital Solutions 4 years, 1 month ago
- 0 answers
Posted by Account Deleted 4 years, 2 months ago
- 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
Trusted by 1 Crore+ Students
Test Generator
Create papers online. It's FREE.
CUET Mock Tests
75,000+ questions to practice only on myCBSEguide app
Nidhi M 3 years, 9 months ago
0Thank You