Applications of Computer Graphics

Applications of Computer Graphics

Computer Graphics is used in a variety of field ranging from routine everyday activities to very specialized area in widely different fields, including business, industry and engineer, medicine, government work, education and Training, advertising research art and entertainment and communication in general. Some of the major application areas are listed below:- Applications of Computer Graphics … Read more

Advantages and disadvantages of java

Advantages and disadvantages of java programming language

Advantages and disadvantages of java Simple and Small Familiar Compiled and Interpreted Platform Independent Object-oriented Robust Portable Secure Multi-Threaded High performance 1. Simple and Small Java is small and simple language. Java is easier to code and simple to use. In java language constructs are easy to learn and use. Many features of C and … Read more

History of Java language. Byte Code, Internet and Java.

History and Evolution of Java language

History of Java language. Byte Code, Internet and Java. Java is an object-oriented programming language developed by “Sun micro-system” In 1991. Originally called “oak” by james gosling, one at the inventors of the language. Java was conceived by James gosling, Patrick naughton, chris warth. Ed franks and Mike sheridan at sun Micro in 1971. Firstly … Read more

Leap year program in C using if else

Leap year program in C using if else.

before creating program it is important to know what is leap year? Generally, a year has 365 days, but a leap year has 366 days which comes after every 4 year. following are the points related to leap year.

1. A leap year is year. which is different from another year because it has one extra day in the month of February.

2. A leap year comes once in a four year. in which February month has 29 days instead of 28 days.  

3. Some example of leap year are 2004, 2008, 2012 and 2016.

 

Below condition are apply to check following year is leap or not.

1. Year must be divisible by 4.

2. Year is divisible by 400 and not divisible by 100.

 

By putting these condition in your C program you can easily find the year is leap or not leap. These condition can be put with help of if-else or with && (and) and ||(or).

Below are the C program to find whether the year is leap or not

 

Read more

What is an expert system shell and its components?

What is an expert system shell and its components An expert system shell can be considered as a expert system with the knowledge removed. Therefore, all the user has to do is to add the knowledge in the form of rules and provide relevant data to solve a problem. The Expert System Shell is essentially a special … Read more