java variables

Java Variable-: A variable is a set of characters that can be associated with a value. It has a type. The set of values that can be assigned to it are restricted to a certain interval group of values or must follow a certain form defined by that type.In Java, there are three types of variables.… Read More »

java features

Java Features-: The primary objective of Java programming language creation was to make it portable, simple and secure programming language.Java borrowed most of its syntax from a programming language called C++, which has a syntax based on the C language. The main features of java is .. High level and general purpose: Rather than being created… Read More »

installing java

Installing Java-: Before we install java in our system there are some criteria for installing java.To start learning Java we need a few things installed on our computer. These are the … Java support on our computer (kinda’ mandatory). An integrated development environment (IDE)  It is basically an application in which we write our code… Read More »

java version

Java Version-: We know that the java developed in 1990 by the American company. Java was developed Sun Micro-systems .The first stable Java version released by Sun Microsystems could be downloaded from the website as an archive named JDK 1.0.2. JDK is an acronym for Java Development Kit. This is the software development environment used for developing… Read More »

java introduction

Java Introduction-: Java is currently one of the most influential programming languages. It was started in 1990  when an American company that was leading the revolution in the computer industry decided to gather its best engineers together to design and develop a product that would allow them to become an important player in the new emerging… Read More »

python mysql connector

Connecting to MySQL in Python-: For creating Creating a connection using the mysql.connector.connect() function gives access to all connection-related features. There are several way for connection to MySQL here are some … The mysql.connector.connect() function: This is the most flexible connection method. It provides a uniform way of creating connections using the C Extension or enabling the… Read More »

python mysql

Python MySQL -: For connecting a database we are using My SQL in python programming.For creating a  applications connecting with the databases is the necessity for the programming languages. Python allows us to connect our application to the databases like MySQL, SQLite, MongoDB, and many others. We can download a free MySQL database at click here … Read More »

python inheritance

Python Inheritance-: Inheritance is an important feature of the object-oriented programming. Inheritance provides code reuse ability to the program because we can use an existing class to create a new class instead of creating it from scratch. For a example there are many birds and  every bird has a special species. In another words we can… Read More »

class method in python

Class method in python– This is the advance feature of object oriented programming.Python has a class method. there are two type class method are available in python..  Static class method  Class Method Static methods-:  Like any other languages as Java we can invoke static methods even though no instance of that class has been created, although… Read More »

defining class in python

Defining class in python-:  This is the advance python language features . A class in Python is effectively a data type. All the data types built into Python All classes and Python gives us a powerful tools to manipulate every aspect of a class’s behaviour. we can  define a class with the class statement. class… Read More »