❖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 Virtual Machine and Command Line Arguments
- Get link
- X
- Other Apps
Java Virtual Machine
All language compiler translate source code into machine code for a specific computer .Java compiler also does the same thing ,Then how does java archive architecture neutrality ? The answer is that the java compiler produces an intermedia code known an bytecode for a machine that does not exits , This is a machine is called the java virtual machine and it exits only inside the computer memory , It is a simulated computer within the computer and does all major machine of a real computer, illustrates the process of compiling a java program into byte code which is also referred to as virtual machine code
The virtual ma chine code is not machine specific code (known as machine code) is generated by the code interpreter by acting as an intermediary between the virtual machine and the real machine as shown in Remember that the interpreter is different for different machines.
Bytecode
Virtual Machine
Java
Interpreter
Machine
Code
Illustrate hoe java work on a typical computer , The java object framework (Java API) acts as the intermediate between the user the virtual machine which in turn acts the intermediary between the operating system and the java object framework
.Command Line Arguments
There may be occasions when we may like our program to acts in a particular way depending on the input provided at the time of in the executions . This is archived in java program by using what are the known as command line argument , command line argument are para meter that are supplied to the application program at the time of invoking it of execution , It may be recalled that program was for invoked execution of the command line
.Here, we have not supplied any command line argument. Even if we supply argument, the program does not know what to do with them.
We can write Java programs that can receive and use the argument provided in the command line. Recall the signature of the main ( ) method used in our earlier example programs:
As pointed out earlier, is declared as any array of string known as string objects .Any argument provided in the command line at the time of execution are passed to the array its elements , We can simply access the array element and use them in the program as we wish .
- 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