Posts

Showing posts with the label CS

MMS - Multimedia Messaging Service

Image
Multimedia Messaging Services (MMS) - Sometimes called Multimedia Messaging System - is a communications technology developed by 3GPP (Third Generation Partnership Project) that allows users to exchange multimedia communications between capable mobile phones and other devices. An extension to the Short Message Service (SMS) protocol, MMS defines a way to send and receive, almost instantaneously, wireless messages that include images, audio, and video clips in addition to text. When the technology has been fully developed, it will support the addition to text. When the technology has been fully developed, it will support the transmission of streaming video. A common current application of MMS messaging is picture messaging (the use of camera phones to take photos for immediate delivery to a mobile recipient). Other possibilities include animations and graphic presentations of stock quotes, sports news, and weather reports.

Radial Basis Function Networks

Radial Basis Function Networks : Introduction Neural Network Click the above link to share the pdf - Reference - John A. Bullinaria, 2012 **** ATCAPH.com ****

Trojan Horse

TROJAN HORSE.ppt Click the above link to share the ppt -

Mobile Computing

Mobile Computing - Main Information You can shared this pdf by clicking the link -  Mobile Computing Reference - R.K Ghosh, CSE 100, April 2005

Operations Research with GNU Linear Programming Kit

Operations Research with GNU Linear Programming Kit. pdf   click the above link to Download the pdf Reference or Source - Operations Research with GNU Linear Programming Kit by Tommi Sittinen ( http://lipas.uwasa.fi/~tsottine/orms1020/ )

Definition of Artificial Intelligence

The term Artificial Intelligence ( AI ) was coined by John McCarthy in 1955, defined it as "the science and engineering of making intelligent machines". The various definitions have been proposed since then by scientist and researchers. It is the science and engineering of making intelligent machines, especially intelligent computer programs. It is related to the similar task of using computers to understand human intelligence, but AI does not have to confine itself to methods that are biologically observable. [ John McCarthy ] The goal of work in artificial intelligence is to build machines that perform tasks normally requiring human intelligence. [ Nilsson. Nils J. ]

Artificial Intelligence - An Introduction to Prolog Programming

Image
 Introduction to Prolog Programming The Basics Prolog (Programming in logic) is one of the most widely used programming languages in artificial intelligence research. As opposed to imperative languages such as C or java (the latter of which also happens to be object-oriented) it is a declarative programming language. That means, when implementing the solution to a problem, instead of specifying how to achieve a certain goal in a certain situation, we specify what is situation (rules and facts) and the goals (query) are and let the prolog interpreter derive the solution for us. Prolog is very useful in some problem areas, such as artificial intelligence, natural language processing, database,.... but pretty useless in others, such as graphics or numerical algorithms. Basic Features of Prolog Features of Prolog are:- Facts Terms Queries Logical Variables Shared Variables Data Types in Prolog Rules