+91 88606 33966            edu_sales@siriam.in                   Job Opening : On-site Functional Trainer/Instructor | Supply Chain Management (SCM)
Author : Mausomi Paul

HTML5 GEO-LOCATION API

API (Application Programming Interfaces) Application Programming Interfaces Stand in HTML5. It is a set of routines, protocols, and tools for building software applications. An API is a collection of pre-built components, that can be used with JavaScript It is a set of programming codes that enables data transmission between one software application, website, and another. […]

INSTALL REDIS ON WINDOWS

Redis, developed in 2009, is a flexible, open-source (BSD licensed), in-memory data structure store, used as a database, cache, and message broker. Following in the footsteps of other NoSQL databases, such as Cassandra, CouchDB, and MongoDB, Redis allows the user to store vast amounts of data without the limits of a relational database.It supports various […]

JAVA OOPS CONCEPTS

In this article, we will learn about the basics of OOPs. Object-Oriented Programming is a paradigm that provides many concepts, such as inheritance, data binding, polymorphism, etc. Object means a real-world entity such as a pen, chair, table, computer, watch, etc. Object-Oriented Programming is a methodology to design a program using classes and objects. It […]

JAVA VARIABLES

A variable is a container which holds the value while the Java Program is executed. A variable is assigned with a data type. Variable is a name of memory location. There are three types of variables in java: local, instance and static. There are two types of data types in java: primitive and non-primitive. TYPES […]

PYTHON OOPS CONCEPTS

Python is an object-oriented Language and it is a powerful paradigm that can help you write modular and organized code. In Python, everything is an object. Major Principles of Object-Oriented Programming are- CLASS A class is a blueprint or template for creating objects. Objects are instances of classes. You can define a class using the […]

NAMESPACES IN PYTHON

The namespaces in Python is a container that holds identifiers (names of variables, functions, classes, etc.) and maps them to their corresponding objects. It acts as a boundary, ensuring that names are unique and avoiding naming conflicts. Python provides multiple types of namespaces: 2. Enclosing Namespace:Enclosing namespaces come into play when you have nested functions, […]

BASIC WORKFLOW OF GIT

Introduction Git is a version control system used for tracking changes in computer files. It is generally used for source code management in software development. 1. The most basic building block of version control is a “repository”. Think of a repository as a kind of database where your VCS stores all the versions and metadata […]

TYPES OF JENKINS PIPELINE

A pipeline refers to a set of automated processes and tools that enable the continuous integration (CI) and continuous delivery (CD) of software applications. Jenkins pipeline can be defined using two different scripts- Declarative and Scripted. The Declarative Pipeline offers a simpler and more human-friendly approach by using a Domain-Specific Language (DSL) to define stages, […]

7 C’s of DevOps

CONTINUOUS DEVELOPMENT In Continuous Development code is written in small, continuous bits rather than all at once, Continuous Development is important in DevOps because this improves efficiency every time a piece of code is created, it is tested, built, and deployed into production. Continuous Development raises the standard of the code and streamlines the process […]

Scroll to top