Submitted by heartin on Tue, 05/26/2015 - 10:17
VoiceXML is a XML based markup language used to create voice applications. VXML is used along with ECMASCRIPT for performing various functions. ECMAScript is a standard scripting language based on JavaScript. In normal cases you will never find the difference, except in the name. The VXML language provides means for collecting character and/or spoken input, assigning the input results to document-defined request variables, and making decisions that affect the interpretation of documents written in the language.
Submitted by heartin on Thu, 05/21/2015 - 08:01
I have seen many people arguing that static methods are not inherited. That is one misconception many beginning programmers have. According to true object oriented principles, static methods should not have inherited, but with Java a class does inherit all members of parent class including static.
So what is the answer to the question of if static methods are inherited? A simple answer as per Java Language Specification would be "Yes" for classes and "No" for interfaces:
Submitted by heartin on Tue, 05/19/2015 - 21:26
Enterprise application integration (EAI) is the use of software and computer systems' architectural principles to integrate a set of enterprise computer applications like ERP systems, CRM systems, Databases and even legacy software systems.
Enterprise application integration can be considered as an integration framework composed of a collection of technologies and services which form a middleware to enable integration of systems and applications across an enterprise.
Submitted by heartin on Tue, 05/19/2015 - 21:04
Enterprise resource planning (ERP) is business management software or a software suite of integrated applications, that a company can use to collect, store, manage and interpret data from many business activities such as
Submitted by heartin on Sat, 05/16/2015 - 22:53
Implement a project with basic linked list operations in Java:
Steps:
-
Create a Node class with two elements:
-
int data
-
Node next
-
Create an interface MyList with three operations:
-
void add(int data) - Add a new node to the end of linked list.
-
void insert(int location, int data) - Add a new node to the given index location in a linked list.
-
void display() - Traverse and print data in every node in the linked.
Pages