Blog

SCANNER Class in Java – Part(i)

The Scanner class is mainly used to get the user input, and it belongs to the java.util package. In order to use the Scanner class, you can create an object of the class and use any of the Scanner class methods. SCANNER CLASS METHODS : nextBoolean – reads a boolean value from the user nextByte() […]

Read More

Java Difference between – Interview Questions

Below are the top 45 Java Difference between – Interview Questions asked. We can firmly say, one who prepares these questions elaborately – has almost nothing else to prepare for a Java Developer Interview. 1) Difference between =, == operator2) Difference between ==, equals() method3) Difference between Abstract class and final class4) Difference between abstract […]

Read More

Thali Kattu, Arathi Edu in English

Do you ever think about – How to say “Thali Kattu” or “Arathi Edu” in English? This tutorial contains the details for the same. “Thali Kattu” or “Arathi Edu” are traditional in Indian or Tamil Marriages. Thali is referred as ‘Mangal Sutra’ in few other Indian languages. But, How should we say exactly in English? […]

Read More

Tamil Stories for English Translation

கதை #1: அது ஒரு அடர்ந்த காடு. அங்கு ஒரு நரியும் கழுதையும் வாழ்ந்தன. அவை இரண்டும் ஒரு உடன்படிக்கை செய்து கொண்டன. அந்த உடன்படிக்கையில் இரண்டு கருத்துகள் இருந்தன. 1) இருவரும் ஒன்றாகவே சேர்ந்து இரைதேடச் செல்ல வேண்டும்2) ஆபத்து வந்தால் சேர்ந்து போராடுவது இவைதாம் அந்தக் கருத்துகள். ஒருநாள் நரி நடக்கத் தொடங்கியது. அது கழுதையின் இருப்பிடத்தை நோக்கி நடந்தது. கொஞ்ச தூரம் நரி நடந்தது. அப்போது தான் நரி ஒரு சிங்கத்தைப் பார்த்தது. […]

Read More

Static Binding and Dynamic Binding

Learn the Static binding and Dynamic binding in Java:- Connecting a method call to the method body is known as binding. Binding as Two types Static Binding (also known as Early Binding).Dynamic Binding (also known as Late Binding). Static Binding: When type of the object is determined at compiled time(by the compiler), it is known […]

Read More

Java – protected keyword – Assignment

Learn the significance of ‘protected’ keyword in Java by doing the below Assignment. Step #I1) Create a package ‘India’2) In this package, create a public class ‘Parent’3) Have below ‘default’ variables and methodsString name=”abcd”;int age = 60;void attendFunctions(){}void goToShop(){} Step #II1) In the same package ‘India’, create a public class ‘Sibling’. Make this class as […]

Read More

What is an Array in Python

Learn this blog what is an array in python, how to calculate elements, length of the elements, Add elements in an array, How to Remove elements in array What is an Array in Python An array is a special variable, which can hold more than one value at a time. If you have a list […]

Read More

Python Recursion

Learn with this blog how to work On Python Recursion Function and Examples. Python Recursion: A function is said to be a recursive if it calls itself. For example,  lets say we have a function abc() and in the body of abc() there is a call to the abc(). Python Recursion Example: In this example we are defining a user-defined function factorial(). This function […]

Read More

How to Create Free WordPress Site or Blog – Part 1

This blog Explain about How to create Free WordPress Site or Blog Create Free WordPress Site or Blog – Part 1 Step 1 : Visit the WordPress.com Site. https://wordpress.com/ You go to Get Started or Start Your Website Click. You see the this Page in to View . Enter the E – mail address, choose […]

Read More

File Handling Functions in Python

File Handling Functions in Python : This blog Explains File Handling Functions in Python and Examples in Here. Python File Handling: Create, Open, Append, Read, Write  Python provides an inbuilt function for creating, writing, and reading files. File Handling : The key function for working with files in Python is the open() function. The open() function takes two parameters; filename, […]

Read More