Introduction to Online Analytical Processing and Data Mart

Introduction to Online Analytical Processing and Data Mart

Introduction to Online Analytical Processing and Data Mart Online Analytical Processing OLAP is computer processing that enables a user to easily and selectively extract and view data from different point of view. OLAP is best known technology that allows a user to slice and dice data or drill-down into data. OLAP is technology that uses … Read more

Basic C Programming Concept and Programs: hello world, Adding two integers, Area of Square and Circle using VS Code

Basic C Programming Concept and Programs C Programming C is a general-purpose programming language. It was initially developed by Dennis Ritchie in the year 1972. It was mainly developed as a system programming language to write an operating system. The main features of the C language include low-level memory access, a simple set of keywords, … Read more

What is Graphics Software and Examples

What is Graphics Software and Examples

What is Graphics Software and Examples Graphics Software In computer graphic, graphic software or image editing software is program or collection of programs that enable a person to manipulate visual images on a computer. Computer graphic can be classified into two distinct categories:- Raster Graphics and, Vector graphics Many Graphics programs exclusively on either vector … Read more

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 … Read more

What is an expert system? Application, Characteristics and need of Expert System.

 

What is an expert system? Application, Characteristics and need of Expert System.
What is an expert system? Application, Characteristics and need of Expert System.

What is an expert system? Application, Characteristics and need of Expert System.

Expert System

 
Expert Systems are computer programs that are derived from a branch of computer science research called Artificial Intelligence (AI). Expert System is an information system that is capable of mimicking human thinking and making considerations during the process of decision-making.
 
AI programs that achieve expert-level competence in solving problems in task areas by bringing to bear a body of knowledge about specific tasks are called Expert Systems.

Read more