
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
Found 26504 Articles for Server Side Programming

434 Views
Jupyter Notebook Extension in Visual Studio Code: Introduction A well-known web-based interactive environment for data analysis and scientific computing is Jupyter Notebook. It enables users to create and distribute documents with narrative text, live code, mathematics, and visualization. Python, R, and Julia are just a few of the programming languages supported by Jupyter Notebook. Jupyter Notebook offers a wide range of functionality, such as data visualization tools, scientific computing libraries, and data manipulation tools, to help users with data analysis. The web-based environment of Jupyter Notebook can be constrictive in terms of performance and user experience, despite the fact ... Read More

500 Views
Julia Fractal in Python: Introduction Fractals are intriguing mathematical entities that display complex and repetitive patterns. The Julia fractal, which bears the name of French mathematician Gaston Julia, is one such fascinating fractal. Iterating a straightforward mathematical function over complex integers creates the Julia fractal. In the fields of mathematics and computer graphics, it has been a topic of research and investigation. We will explore the world of Julia fractals and discover how to make them using Python in this article. Julia Fractal in Python Definition An intricate iterative function serves as the formula for the Julia fractal. It is ... Read More

156 Views
Joke App in python using Bottle Framework: Introduction With the introduction of joke applications, humour and amusement have taken on a new shape in the current digital era. Users of these applications can access a huge library of jokes, puns, and humorous stories to add humour and happiness to their life. Python, a powerful programming language, provides a number of frameworks for creating web applications, with the Bottle framework being a well-liked option. In this article, we'll look at how to make a comedy app using the Python Bottle framework. We'll discuss the framework's description, syntax, explanation of syntax, a ... Read More

638 Views
Inventory Management with JSON : Introduction Any firm that handles and tracks items or products needs to have effective inventory management. In order to guarantee that there is a sufficient supply of goods for clients and avoid overstocking or stockouts, it entails the process of monitoring and controlling the input and outflow of commodities. We'll look at using JSON for inventory management in Python in this tutorial. Inventory Management with JSON Definition JSON, or JavaScript Object Notation, is a simple data exchange format that is simple for both humans and robots to read and write. For data sharing between ... Read More

288 Views
Introduction to Evolution in Python: Unleashing the Power of Genetic Algorithms Python is a flexible programming language that has become extremely popular among developers because of its ease of use and adaptability. It offers a variety of frameworks and tools that make it easier to create sophisticated algorithms and solutions. Python particularly shines in the domain of evolutionary computation. Natural selection and genetics are used in evolutionary computation to address challenging optimisation issues. Developers can quickly implement genetic algorithms, a subset of evolutionary computation, to identify the best solutions for a variety of issues thanks to Python's vast ecosystem of ... Read More

552 Views
Introduction to Support Vector Machines (SVM) Support Vector Machines (SVM) is a potent technique in the field of machine learning that can be applied to both classification and regression analysis. It is widely utilized in many areas, including bioinformatics, text classification, and picture classification. The capacity of SVM to handle high-dimensional datasets and non-linear classification issues is its main benefit. The idea of SVM will be introduced in this article, along with a description of how to use it in Python. Support Vector Machines (SVM) Definition A machine learning algorithm called Support Vector Machines (SVM) identifies the ideal hyperplane ... Read More

246 Views
Tensor with Tensorflow : Introduction Machine learning has recently gained popularity in the tech sector. It ultimately comes down to creating models and algorithms that can learn from data and forecast or take actions based on that data. Tensors, multidimensional arrays that can store numerical data, are one of the core ideas in machine learning. Google created the open-source machine learning framework known as TensorFlow. It is intended to streamline the creation of machine learning models and increase developers' and researchers' access to them. Working with tensors is one of TensorFlow's primary functionalities. Tensors will be introduced, ... Read More

485 Views
Introduction The k-Nearest Neighbor is a powerful and straightforward technique to solve problems related to classification and regression. It makes the prediction on the input samples and checks for how similar the samples are to one another. In this present article we will explain k-NN technique and implementation of python, with two different types of approaches . To ensure a clear comprehension of this well-known technique, we will offer step-by-step explanations replete with executable code and results. k-Nearest Neighbor Algorithm A supervised machine learning ( ML) technique used for classification and regression problems is called the k-Nearest ... Read More

473 Views
Introduction Clustering, which groups similar bits of data based on shared characteristics, is a prominent technique in unsupervised machine learning. K-Means clustering is a popular clustering algorithm. Data is divided into K clusters using the iterative K-Means technique, where K is a predetermined number. The process minimizes the sum of squared distances between the cluster centroids and the data points. In this post, we will look at how to use the Python Scikit-Learn package to conduct K-Means clustering on handwritten digits data. Definition A straightforward and efficient unsupervised learning approach called K-Means clustering seeks to separate a dataset into K ... Read More

2K+ Views
Introduction The fit() and fit generator() methods in Keras make it incredibly easy to train deep neural networks in Python. The fit() method makes it possible to efficiently process and train on batches of data, making it particularly useful for smaller datasets that can be loaded into memory. On the other hand, the fit generator() method, which enables dynamic loading and processing of batches, is better suited for larger datasets that cannot be loaded into memory all at once. Basics of Keras Today, technology has improved in every way possible. So, in this advanced environment of technology and future, Keras ... Read More