Java 2022 Solution || BIM STUDY Notes

// Q.N0 11) TO FIND THE SECOND HIGHEST VALUE IN AN ARRAY

// Q.N0 12)

// Q.N0 13) implementing thread using Runnable class

Q.NO 15)

 

Continue Reading

2020 makeup Java solutions || BIM STUDY NOTES

Q.no 11

  Q.no 12

Q.no 13

  Q.no 14

Q.no 15

Continue Reading

java solution 2016 Batch pre board Answers

 2016 Batch Asian 2.Write a program passing parameter in applet.Write complete HTML file to include applet.

3.Explain two key swing features. Swing offers two key features: Swing components are lightweight and don’t rely on peers. Swing supports a pluggable look and feel. The three PLAFs available to all users are Metal (default), Windows, and Motif. 4.Write a swing program […]

Continue Reading

JAVA 2016 Old Papers Solutions

Year 2016   Q.no 11

Q.no 12 Create two classes ThreadA and ThreadB which implement Runnable interface. ThreadA displays all even numbers from 50 to 100 and ThreadB displays all odd numbers from 100 to 200. Define a main class which creates the objects of both the classes and displays the numbers as per […]

Continue Reading

Unit 8 : Inheritance

Inheritance It is the process by which object of one class can acquire the properties of object of another class.  The class, from which properties are inherited, is known as super class.  The class, to which properties are inherited, is known as sub class. A sub class inherits all of the variables and methods defined by the […]

Continue Reading

Unit 6 & 7 java programming

Class and object A class is a user defined data type which binds data and function into a single unit and objects are the instance of a class. A class is declared by use of the class keyword. The general form of a class definition is shown here:

The data, or variables, defined within a […]

Continue Reading