
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Jaisshree has Published 120 Articles

Jaisshree
599 Views
Natural Language Processing (NLP) allows computers to interpret and analyze human language. Finding the most identical word or sentence to a given input sentence is a prevalent NLP problem. In Python, there are various methods available to find identical sentences. Required Resources To get this done you ... Read More

Jaisshree
904 Views
Pandas Dataframe, a python open-source library, is used for storing, deleting, modifying, and updating data in tabular form. It is designed so that I can easily integrate with Python programs for data analysis. It provides various ways of data manipulation techniques and tools for processing data. The mathematical notion ... Read More

Jaisshree
1K+ Views
Python is an object-oriented, dynamically semantic, high-level, interpreted programming language. Rapid Application Development, as well as used as a scripting or glue language to- bring existing components together, find its high-level built-in data structures, coupled with dynamic type and dynamic binding, to be particularly appealing. PySpark Dataframe Data is ... Read More

Jaisshree
520 Views
NumPy, which offers high-performance data manipulation and analysis capabilities, is the foundation for the Python package Pandas. It introduces the Series and DataFrame data structures. Any sort of data can be stored in a series, which is a one-dimensional labeled array. It is comparable to a column in a database ... Read More

Jaisshree
1K+ Views
Developers can rapidly and simply design web apps using the high-level Python web framework Django. A complete collection of tools and libraries is provided for creating web applications, and it adheres to the Model-View-Controller (MVC) architectural paradigm. Why is Django used in Python? From modest personal endeavours to ... Read More

Jaisshree
270 Views
Sorting of lists help us in solving sort huge amount data and various mathematical and logical problems in a very less time. We can find a particular element in a sorted list easily with the help of Fibonacci search method. Here, we will create a Fibonacci Search Visualiser using a ... Read More

Jaisshree
355 Views
One of the most useful data structures in Pandas is the Pandas DataFrame which is a 2-Dimensional table-like structure that contains rows and columns to store data. It allows users to store and manipulate the data, very similar to a spreadsheet or SQL table. It also provides a ... Read More

Jaisshree
5K+ Views
Symmetric encoding is a cryptographic technique, where the same key is used for both encryption and decryption of messages from client to server. In order to ensure no sensitive information is leaked while passing the network packets through vulnerable servers, where hackers may use this message for malicious intent, encrypting ... Read More

Jaisshree
292 Views
PyTorch is an open-source Python library used for machine learning, computer vision and deep learning. It is an excellent library to build neural networks, conduct complex computations and optimise gradient differentiation. Developed by Facebook's Research Team (FAIR), it gained popularity due to its dynamic computing graphs, allowing it to ... Read More

Jaisshree
617 Views
In Python, String is a sequence of characters surrounded by either double quotes(" ") or single quotes (' '). Strings are used to represent text data in Python and it can contain letters, numbers, and symbols. String data type is immutable in Python, that is once a ... Read More