Skip to main content

Posts

File Handling in JAVA

1. InputStream & OutputStream File Input and Output in JAVA. 2. InputStream & FileOutputStream File Input and Output in JAVA. 3. OutputStream & FileInputStream File Input and Output in JAVA. 4. Create New File In JAVA and All Method of File in JAVA. 5. Create New Folder In JAVA and All Method of File in JAVA. 6. FileOutputStream & FileInputStream in JAVA. 7. FileWriter & FileReader in JAVA. 8. DataOutputStream & DataInputStream in File Handling in JAVA. 9. ObjectOutputStream and ObjectInputStream in File Handling in JAVA.

JAVA SCRIPT

J AVA SCRIPT PROGRAMS FOR BCA SEM-2 SYLLABUS OF GUJARAT UNIVERSITY J AVA SCRIPT TUTORIAL NUMBERS,NUMBER PROPERTIES & NUMBER METHODS in JAVA SCRIPT. STRINGS,STRINGS METHODS & STRINGS HTML WRAPPER METHODS in JAVA SCRIPT. COMPARISON & LOGICAL OPERATORS in JAVA SCRIPT. MATH OBJECT PROPERTIES & MATH OBJECT METHODS in JAVA SCRIPT. ARRAY OBJECT,ARRAY PROPERTIES & ARRAY METHODS in JAVA SCRIPT. BOOLEAN PROPERTIES & BOOLEAN METHODS in JAVA SCRIPT. Writing into the browser console, using console.log() in JAVA SCRIPT. Different types of Popup Boxes in JAVA SCRIPT. How Change Anchor tag href link in JAVA SCRIPT. window.pageYOffset and Sticky Navigation in JAVA SCRIPT. J S FUNCTION JavaScript Closures.(Count Local Variable in function). Arguments Object in JAVA SCRIPT. Function Call it Self in JAVA SCRIPT. J S HTML DOM(Document Object Model) DOM DOCUMENT,DOM ELEMENTS & DOM METHODS HTML DOM document.write() Method in JAVA SCRIPT. HTML DOM tagName Property in

ANDROID

Android App Basics Introduction of ANDROID. What is ANDROID. History of ANDROID Version. Architecture of ANDROID. Application Fundamentals of ANDROID. Application Components of ANDROID. Requirement of Create Android Application for Your Computer. Run your app in ANDROID STUDIO. Hello World first example in ANDROID.

Basic Bank Application or Software in JAVA

To Create Basic logic of Bank Software or Application .Here in this program admin create bank customers.Password and user name of admin is 123 and fill the details and show account details .The account holder can  simple deposit and withdrawal and transfer money to another existing account. CODING: import java.util.Scanner; public class BankMain1{  public static void main(String[] args){ cust[] c=new cust[1000]; admin a=new admin(); int ch,l=0,flag=0; String temp; Scanner s=new Scanner(System.in); do{ System.out.println("\n1.Admin\n2.Custome\n0.Exit\nchoice "); ch=s.nextInt(); switch(ch){ case 0:break; case 1: System.out.print("\tUser Name "); if(a.checkAdName().equals(s.next())){ System.out.print("\tPassword "); if(a.checkAdPwd().equals( s.next() ) ){ do{     System.out.print("\n1.ADD\n2.Details\n0.Exit\nChoice:"); ch=s.nextInt(); switch(ch){

JAVA SCRIPT PROGRAMS FOR BCA SEM-2 SYLLABUS OF GUJARAT UNIVERSITY

1. Write a JavaScript to display hello world. 2 Write a JavaScript program that display the use of multiline Comment. 3 Write JavaScript to demonstrate the use of different dialogue boxes. For example: write massages good morning, good bye etc, take value from alert, confirmation for any operation. 4 Write a JavaScript program to calculate area of circle.(3.14*r*r) 5 Write a JavaScript program to convert Celsius to Fahrenheit.((x*1.8)+32) 6 Write a JavaScript program to find factorial of a number. 7 Write a JavaScript program to find square and cube of number using function. 8 Write a JavaScript program to calculate multiplication table. 9 Write a JavaScript program to calculate simple Interest(p*r*n/100). 10 Write a JavaScript program to find prime number . 11 Write a JavaScript program to validate a form which consist of name, Age, address, email id, hobby(checkbox), gender(radio button), country (dropdown) 12 Create one form in which username must be 10 characte

Packages, Multithreading, Applets and Graphics in JAVA

1. Calculate the area by using an interface in JAVA by Using Child Class Object OR Using Interface Object. 2. How to create User-Defined Packages & Use of the Import Statement in JAVA. 3. Finds Sum & Average using Interface in JAVA. 4. start() Method & join() Method in Multithreading in JAVA.(Three threads should calculate the sum of 1 to 5, 6 to 10 and 11 to 15) 5. Throw custom exception RangeException and handle it in JAVA. 6. Threads using Runnable interface & java.lang.Thread.sleep method.(Calculate the sum of 1 to 5, 6 to 10 and 11 to 15) 7. Draws a circle & Radius of the circle should be passed as a parameter and filled with random color using applet in JAVA. 8. Applet that take three numbers as parameters and displays their sum and average in JAVA. 9. Circle divided in 4 equal part in JAVA Applet. 10. Circle divided in 6 equal parts in JAVA Applet. 11. Circle divided in 8 equal part,each part is 45 degree in JAVA Applet. 12. Different Types of Des

Menu,Input Dialog,Message Dialog,Procedures,Functions and Arrays in VB.NET

1. Subroutine of function(Avg.,Max,Min) in VB.NET. 2. Function in VB.NET | Returning from a Function in VB.NET.(function adds to find addition of numbers selected using radiobuttons) 3. Click on first picture it will hide itself and shows second one picture in VB.NET. 4. Sub routine Check odd or Even and Function of Factorial of number in VB.NET. 5. Prime Number or not using function in VB.NET. 6. Write a Program to Implement a MDI application. It should have File menu with option New, Close, Close All and Exit. It should also have window menu to arrange the child forms like Tile Horizontal, Tile Vertical, Cascade and Arrange Icons in VB.NET. 7. Text Editor in VB.NET.(Create a text editor application. It should perform operation like cut, copy, paste and change in font, color of the selected text.) 8. Sort Int Array and String Array using Function in VB.NET. 9. Find minimum and maximum Number in Array using Function in VB.NET.