Skip to main content

Posts

Object Oriented Programming in VB.NET

1. Create shape class as abstract class having area function.Create rectangle, triangle, square class based on this class in VB.NET. 2. Write a program to create class Person. Make at least five properties and one method “show detail” of this class. Now inherit class Student and Faculty from class Person and override method “show detail”. Create objects of Student and Faculty class and call show detail function for both objects to show details in appropriate text boxes. 3. Write a program to implement the class Employee. Show Constructor Overloading in VB.NET. 4. Write a program to implement the class Book and Show Method Overloading in VB.NET. 5. Create an Invoice application in which user enters the customer name, description, unit price and quantity for the item ordered, then clicks the add item button. The application calculates the order total by multiplying the unit price by the quantity. And calculates a discount based on the order total. The user can then add another item

GUJARAT UNIVERSITY BCA SEMESTER 5

આપણું કાર્યક્ષમ સમુદાય બનાવવા માટે, અમારી સાથે ટેલિગ્રામ જૂથમાં જોડાઓ અને તમારા અન્ય યુનિવર્સિટીના મિત્રો સાથે શેર કરો. યુનિવર્સિટી પેપર, પ્રશ્નો, વિચારો અને અન્ય મહત્વપૂર્ણ ફાઇલો શેર કરીને, આપણે એકબીજાને સરળતાથી મદદ કરી શકીએ છીએ.જો તમને કોઈપણ ફાઈલ ડાઉનલોડ કરવામાં સમસ્યા આવે તો તમે તેને ટેલિગ્રામ પર મેળવી શકો છો. For us to create an efficient community, join us in Telegram group and share with your other universities friends. By sharing University papers, questions, ideas and other important file, we can help each other easily.If you face problem to download any file, you can get it on telegram. GUJARAT UNIVERSITY BCA SEM 5 SYLLABUS GUJARAT UNIVERSITY EXAM PAPER 2018 2017 2016 2015 2014 DOWNLOAD ADVANCE VB.NET PROGRAM Object Oriented Programming in VB.NET(Unit-1) Advanced Controls in VB.NET(Unit-2) Basic Framework Classes in VB.NET(Unit-3) Basic Framework Classes in VB.NET(Unit-3)(PDF) ADO.NET in VB.NET(Unit-4)(PDF) DOWNLOAD SHELL SCRI

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){