❖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 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 Constants, Variables, and Data Types
Constants Constants in java refer to fixed values do not change during the execution of a program , Java support several types of constants as illustrated. .Integer Constants An integer constant refer to a sequence of digits , There are three types integers .namely decimal imager octal integers and hexadecimals integers . Decimal integers consist of a set of thing preceded by an optional minus sign Valid of decimals integer constant .Variables A variable is an identifier that denotes a storage location seed to store a data value unlike constant that remain unchanged during the execution of a program , a variable may take different values at different times during the execution of the program ,we had used several variable for instance , we used variables length and breath to store the values o...
What is Diploma Engineering and How to Diploma engineering free course
What is diploma in engineering is a 3 year course .All India It is designed to students with practical skills and knowledge in a engineering. After completing the diploma, students further education through into a bachelor's degree program or enter the diploma in engineering course 1.School Level (Class 10 ) .Focus on Math Science Physics and Chemistry - MSPC . After class 10, you will have to take science stream. 2 .11th-12th Science Stream (MSPC Group) .Physics, Chemistry, Mathematics (PCM) are compulsory subjects. .You should prepare for entrance exams like JEE, MAHT-SET, VIT, BITSAT. .You have to clear these exams after class 12. 3.Duration: 4 years .Popular branches: . Diploma in computer Science (CSE) . Diploma in m echanical . Diploma in civil . Diploma in electrical . Diploma in Electronics & Communication . Diploma in...

Comments
Post a Comment