Categories
Archives
Blog Stats
- 482,657 hits
-
Join 489 other subscribers
You can like us at
Meta
Author Archives: Anuroop D
Sample Applet program in Java
Applets are the small applications programmed in Java and embedded in html code. Usually applets are delivered to user as byte-code.Every page in a website contains applet code and is executed within a JavaVirtualMachine(JVM).We can distinguish a general java program … Continue reading
Posted in Java
Tagged applet coding in java, applet in java ppt, applet in java tutoria, applet in java with example, applet program in java with example, applet programming in java, applet programming in java sample program, basic applet program in java, creation of applets in java, how to create applet in java, how to run a simple applet program in java, how to run applet in java, java applet example code, java applet tutorial, java sample program, sample applet code, sample applet program, sample applet program code in java, sample applet program in java, sample java applet, simple applet program in java, simple applet program in java source code, simple java applet program code
Leave a comment
Appending data to the existing data in java
In real life we may encounter a situation in which may need to write the new data in a file without loosing old data.This is called as appending of data.We can make this using many classes present in the Java … Continue reading
Copying data from one file to other file using java
Before to this post we have learnt about writing data to a File and reading data from the File.In our today’s post we shall learn about copying the data from one File to the other File.This is pretty easy and … Continue reading
Posted in Java
Tagged code copy file trong java, java copy contents of one file to another, java copy file example code, java file transfer program, java program to copy a file content to another file, java program to copy a file from source to destination, java program to copy a file to another folder, java program to copy the content of file to another, program to copy contents of one file to another
Leave a comment
Java Program to read the data from the File
In our last post we learned about writing data into a file,in this tutorial we shall learn how to read the data from the file.To read the data from the file we need to use the object of the class … Continue reading
Posted in Java
Tagged fileoutputstream java example, how to read file java, how to read txt files in java, java code to read and write a text file, java load text file, java open and read file, java open file, java program to read a text file and print, java program to read a text file character by character java program to read a text file line by line, java read file one line at a time, java read from text file, open text file java, read and write text file in java, read data from text file in java
1 Comment
Creating and Writing Excel file in Java
In our earlier post we have learned about creating and writing data to a .txt file in Java.In this tutorial we shall learn about creating and writing data to a excel file.There are two ways in creating an Excel file … Continue reading
Posted in Java
Leave a comment
Java program to write data into a file
Files are the most complicated concept in any programming language.In this tutorial we shall make it simpler by learning some basic techniques in File.There are two types of operation done on files.First, we can write the data into the file.The … Continue reading
How to set up a colors XML file
Originally posted on ProgramThat;:
It is essential to have a colors XML file in every android project you create. To be used the same color multiple times and hardcode it is not good programming practise. It is easy to forget…
Posted in Android Programming
Leave a comment
Prime Number Program in C
In today’s tutorial we are going to learn about writing prime number program using C.A number is said to be prime number if and only if it is divisible by 2 otherwise it is not a prime number. The meaning … Continue reading
Palindrome Number Program in C
A number is said to be palindrome if it satisfy’s a condition,the reverse of the number should be same as the original number.For finding the reverse of the given number we need to get the individual digits of given number … Continue reading
Posted in C
Tagged c program to check palindrome number, c program to check palindrome without using functions, palindrome number program in c, palindrome program in c, palindrome program in c with explanation, palindrome program in c without using string functions, palindrome program in c++ using while loop, palindrome program in java, simple palindrome program in c language
1 Comment
Sum of digits of a Number in C
In this tutorial we are going to learn about adding digits present in a given number.The main concept of this problem is…..If the input is 225 then the output should be 9 i.e is addition 2+2+5.The logic behind it is … Continue reading
Posted in C
Tagged c program to add digits of a number, c program to calculate sum of digits of a given number, c program to find sum of digits of a number, c program to print sum of digits of a number, program to find sum of digits of a number in c, sum of digits of a number in c using while loop, write a c program to find sum of digits of a number
1 Comment
Fibonacci Series program in C
Fibonacci series starts with 0 and 1.The third element of fibonacci series in obtained by adding the first,two elements of the series.If we need to find an element of the series we add the two numbers which are just behind … Continue reading
Posted in C
Tagged c, c program to find fibonacci series using for loop, definition of fibonacci, fibonacci, fibonacci code in c, fibonacci logic in c, fibonacci series, fibonacci series in c example, fibonacci series in c language, fibonacci series in c with output, fibonacci series in c++ using for loop, fibonacci series program in c, fibonacci series program in c using for loop, fibonacci using c, wap to print fibonacci series in c using for loop
Leave a comment
Switch case in C
In one of earlier post we introduced to decision making statements in c.Today we shall learn about one of the decision making statement in C “switch statement“.The switch statement allows you for checking a equality among the options available and … Continue reading
Posted in C
Tagged c program using switch statement, program using switch case in c, switch case example in c, switch case in c example, switch case in c language, switch case in c programming examples, switch case in c syntax, switch case statement in c, what are condition of switch case in c programming, write a switch program in c
Leave a comment
Java program for Inserting rows using preparedstatement
In our earlier post we have learned about making connection from a Java program to the databases.But the drawback of just using createStatement() and excuteuery(),is that we can request for run time values and then insert it into the database. … Continue reading
Connecting Java to Mysql Database
In our earlier post we learned about Connecting Java to Microsoft Access.In today’s post we shall learn about connecting Java to Mysql database.For connecting Java to Mysql we need to install Mysql odbc drivers.You can get the drivers from their … Continue reading
Connecting Java to Microsoft Access DataBase
Database plays a very important role in maintaining a web site or a organization details.It will be exciting if we are able to use the data present in Database in our program.One of the important features of Java is that … Continue reading
Posted in Java
Tagged how to connect database in java using ms access, how to connect java with ms access database with an example, how to connect jdbc odbc in java, how to connect ms access database in java, java code to connect to ms access database, java ms access connectivity code, jdbc connection code for ms access in java, jdbc connection in java using ms access, jdbc connection in java with ms access, jdbc microsoft access, ms access jdbc connection, ms access jdbc driver
2 Comments
Binary Search Program in C…!!!
As one of the basic searching technique we learned about Linear Search.Today we shall learn about Binary Search technique.In linear searching method we compared each element of the array with given key.The main drawback of the linear search is,”if the … Continue reading
Posted in C
Tagged binary search code in c, binary search in c example, binary search program in c language, binary search programme in c, c program code for binary search, c program to search an element in an array using binary search, simple binary search program in c++, write a c program to implement binary search, write a c program to implement binary search algorithm, write a c program to implement binary search with out recursion, write a c program to search an element using binary search
Leave a comment
Control Structures in C…!!!(Iteration or Looping)
In our earlier post we presented you about Decision Making Statements in C……..In this post we are going to learn about Looping statements or Iterative statements in C.The main advantage of loops is we can execute the same steps more … Continue reading
Linear Search Program in C
In this tutorial we shall try to make a program for Linear Search.Linear Search is the basic and easiest searching method and is for junior programmers.The steps involved in searching a number using Linear Search algorithm is: Method 1.Get the … Continue reading
Decision Making Statements in C
Have you ever thought of controlling the execution of the program…..!!!.Those which control the flow of the program are called as control Structure of a program.These control structures are common for all programming languages irrespective of their designing. Control Structures … Continue reading
C program to calculate area and perimeter of a Cirlce…!!!
In our earlier post we calculated the area and perimeter of a circle.In this post we are dealing with calculating the area and perimeter of a circle. The main input for calculating area and perimeter of a circle is radius … Continue reading