❖Communication practices: Principle 1 Listen: •Try to focus on the speaker‘s words, rather than formulating your response to those words. •Ask for clarification if something is unclear, but avoid constant interruptions. •Never become contentious in your words or actions (e.g., rolling your eyes or shaking your head) as a person is talking. Principle 2 Prepare before you communicate: •Spend the time to understand the problem before you meet with others. If necessary, perform some research to understand business domain. •If you have responsibility for conducting a meeting, prepare an agenda in advance of the meeting. Principle 3 someone should facilitate the activity: •Every communication meeting should have a leader (a facilitator) 1)To keep the conversation moving in a productive direction, 2)To mediate any conflict that does occur, and 3)To ensure that other principles are followed. Principle 4 Face-to-face communication is best: •It usually works better when some other represen...
What is Java Environment and Java Development Kit
- Get link
- X
- Other Apps
Java Environment
Java environment includes a large number of development tools and hundreds of class and methods. The development tools are part of the system known as java development kit (JDK) and the classes and methods are part of the java standard library (JSL) also known as the Application Programming Interface (API).
.Java Development Kit
The java Development kit comes with a collection of tools that are used for developing and running java program . They include:
. Applet Viewer (for viewing java applets)
. Java c (Java compiler )
. Java (java interpreter)
. Java p (java disassembler)
. Java h (for c header files )
. Javadoc (for creating HTML documents )
. JDB (java debugger )
The way these tools are applied to build and run applications program is illustrated into create a java program we need to create a source code files using a text editor . The source code is than compiled using the java compiler java c and executed using the java interpreter java a. The java debugger JDB is used to find if any in the source code. A compiled java program can be converted into a source code with the the help of java disassembler java p. We learn more about these tools as we work through the books
Application Programming Interface
The java Standard library (API) includes hundred classes and method grouped into several functional packages (see Appendix G) most commonly used packages.
1. Language Support Package: A collection of classes and method in required for implementing basic features of java
2.Utilities Packages: A collection of classes toprovide utility function f such as date and time function
3. Input/Output Package: A collection of classes required for input /output manipulation
4. Networking Packages: A collection of classes for communication with other computer via Internet
5. AWT Package: The abstract window Tool Kit package contains class that implement platform independent graphical use interface.
6. Applet Package: This include a set of classes that allow us to class java applets. The use of these library classes will become evident when we start developing java program
Java Runtime Environment
The java runtime environment (JRE) facilitates the execution of program developed in java . It primarily comprises of the following
1. Java virtual machine (JVM): It is a program that interprets the intermediate java byte code and generates the desired output. It is because of byte code JVM concept that program written in java.
2. Runtime class libraries: These are a set of core class libraries that are required for the execution of java program
3. User interface toolkit: AWT and Swing are example of toolkit that support varied input method for the user to interact with the application program .
4. Deployment technologies : JRE comprises the following key deployment technologies
< Java plug-in : Enable the execution of a java applet on the browser.
< Java Web Start: Enables remote-deployment of an application with web start user can launch an application directly from the web in the browser without going the installation procedure.
- Get link
- X
- Other Apps
Popular posts from this blog
What is Relational structure, Table, Attributes, Rows Record, Domain, Super key, Composite key, Candidate key, Primary key, Foreign key
Table:- The table in a database has it unique name in the relational in table consisting Horizontal rows that is also called as Tuple s fore the Vertical columns also called as attributes. Each table row represent a single entity Occurrence withing the entity set. Attributes:- In the above table column represent data stored in it such column is called as attributes. Ex-Name id (column name) every cans a table must have at least one column. The squle standard does not be specify in in only maximum number of column in a table. Rows Record:- In a single row in a relational table which contain all information about. A single entity each horizantal row of student table represent the student record and in the and table there are multiple row. Domain:- The every column in a table has set of data values that are allowed for that column that is called as domain. In a relational table a domain can have a single value or null values .Type...
What is Computer engineering, complete information
Computer Engineering Computer Engineering is an engineering branch that is a combination of Computer Science and Electronics Engineering. Digital logic in design computer organization and architecture microprocessor in the system and interfacing computer networks and operating system. In this you learn the design, development and maintenance of both hardware (physical parts of the computer) and software (programs, applications, operating systems). 1.Scope of Computer Engineering . Computer Engineering students are taught these things: . Computer Hardware Design :-CPU circuit boards microcontrollers, embedded systems. ...
What is DDL --Data Definition language and DML -Data manipulation language
DDL --Data Definition language DML -Data manipulation language DDL --Data Definition language:- To create alter drop the table in or database we use data Definition language. The DDL command is used to built or modify the structure of a database or a object in that for the database object are any data that store and create in database For-tables, Rows and View 1.Create Command 2.Alter Command 3.Drop Command 4.Rename Command 1.Create Command:- To create database objects like table or modify database we used create command, The create statement is use to the create any types of objects. Syntax-Create table table name (column 1 data type (size), Column 2 datatype (size) ). Create table students (Id int , name varchar (255)); To view the create structure we use describe command " describe the table name. 2.Alter Command:- One there table or database create we required to change a structure of the database or class object we use into the alter comm...

Comments
Post a Comment