Showing posts with label OOPJava. Show all posts
Showing posts with label OOPJava. Show all posts

Introduction to UML

Introduction of Microsoft Visio.            Microsoft Visio is a part of the Microsoft Office Suite of products which consists of Microsoft Word, Microsoft Excel, Microsoft Visio, Microsoft Access and Microsoft Project. Microsoft Visio is a diagramming tool that can be used to visually communicate technical...

Diffrence between c & C++ with Constructor & Destructor

Give the difference between C & C++.             C C++ 1. Procedure oriented language 1. Object oriented language 2. Standard library include is <stdio.h> 2. Standard library include is <iostream.h> 3. Scanf and...

Concepts of OOP with features

1. W hat is OOP? Object-oriented programming (OOP) is a programming paradigm that uses "objects" – data structures consisting of data fields and methods together with their interactions – to design applications and computer programs. Programming techniques may include features such as data abstraction, encapsulation, modularity, polymorphism,...

Write a program to input the no. dynamically and sort the array.

class Sorting {             int temp=0,i,j;             int a[]=new int[15];             void process()             {                        ...

Write a program to display prime no. between given two no.

public class Prime {             public static void main(String arg[])             {                         int n,i,c=0;                        ...

Write a program to make calculator using switch case.

public class Calculator {     public static void main(String arg[])    {             int n1 =Integer.parseInt(arg[0]);             int n2 =Integer.parseInt(arg[1]);            ...

Write a program to calculate average of three subject marks and print the grade.

public class Avg  {     public static void main(String args[])      {                  int avg=0;                  int mrk1=Integer.parseInt(args[0]);            ...