What would you like to do?
What is handshake in computer language?

What is a handshake?
A gesture where two people clasp each others' hands. They do not need to shake anything. Some people think that a handshake is a Freemasonic weapon for taking over the world.…
What is handshake?
when two hands come togther , shake

What are computer languages?
Computer languages fall into one of three categories: machine language, low-level language and high-level language. Machine language, or machine code, is the native language… of all computers and is the only language actually understood by the computer itself. Every architecture has its own "dialect" of machine code, as determined by the instructions it is capable of, how many bits-per-instruction there are, and how memory is accessed (32-bit or 64-bit in today's systems). The first bit sequence maps directly to an instruction code and one or two operands if any are required by that instruction. The next instruction immediately follows the first, unless the previous instruction is a jump instruction which causes execution to jump to another bit sequence elsewhere in the code sequence. There are very few instructions and each does very little actual work, such as moving an operand into a CPU register, comparing registers, performing simple arithmetic (such as adding or subtracting), or jumping to another code sequence. Although each instruction does very little, they are executed with such speed that complex operations that may require thousands of individual instructions can be accomplished in just a few seconds. Coding in machine code is a laborious process and prone to error. Any one program can basically be reduced to a long sequence of 1s and 0s that form an extremely large binary number. This number is not only difficult to read but it is extremely difficult to spot any errors in the sequence. Low-level languages address this problem by replacing instruction codes with easy-to-remember mnemonics and symbols. All assembler languages are low-level languages and are often called symbolic languages. As with machine code, every architecture has its own version of assembler and each requires a machine coded assembler to interpret the symbolic language into its corresponding machine code. Low-level languages are so called because there is very little abstraction between the low-level language and the resultant machine code. And although it is much easier to write low-level code than machine code, it is still quite difficult to read and programs must still be written in minute detail. High-level languages make it much easier for programmers to write code using keywords written in a human language (English being the most dominant language). They are high-level because there is a high level of abstraction between the language and the resultant machine code. However, the abstraction means the programmer can concentrate on producing functional code more quickly rather than worrying about how to produce the required machine code for a particular architecture. High-level languages can be broken into two main categories: compiled languages and interpreted languages. A compiled language produces machine code when compiled, while an interpreted language must be converted and executed one line at a time by another machine code program, the interpreter. As a result of this interpretation, interpreted languages are extremely slow. Java is an interpreted language, however it is initially compiled to byte code which can then be interpreted by any Java virtual machine (a machine code interpreter). As such, Java programs need only be compiled once and run on any platform that has a Java virtual machine whereas languages that compile to machine code must be compiled separately for each supported platform. While this makes them less portable than Java, compiled languages often include low-level features with much less abstraction between the language and the underlying hardware, thus permitting the benefits of high-level coding to be combined with the efficiency of low-level coding. C and C++ are typical examples of compiled languages with low-level features.
What is a handshake in computer language?
a thing used in the www.
What is a computer language?
There are several answers to this question. Internally a computer uses 1 and 0 as its means of storing information and commands. Special patterns of 1 and 0 form commands …(CPU instructions) An assembler language generates these patterns However assembler is difficult for humans to work with so we work in an easier computer languages such as 'Fortran', 'C++', 'Python', 'Java' etc and these get compiled into assembler and turned into the CPU's command patterns. -------------------------------------------------------------------------------------- Low level language

What is a 'handshake'?
Answer-- A 'hand shake' is a form of greeting someone. Men for centuries have shook hands and sometimes business deals were just a simple hand shake and no contract involved… (that was many years ago.) Often men could tell from the hand shake they received if the man was honest, weak, or a good businessman. Men usually never shook hands with women (because it was more masculine that feminine.) Up until the 1960's if a man was introduced to a woman she would be acknowledged by a nod and a smile and 'Very nice to meet you.' In earlier years men of stature would gently hold the woman's hand he was introduced to and kiss the top of her hand. Today many women have careers and slid into 'the man's world' so now shaking hands with a woman is acceptable. In I.T. : A hand shake is a term used when creating a virtual connection between hosts. An example of this is with the TCP protocol's 3-way handshake in which a connection must be established for communication... 1. The client sends a SYN (Sync) packet to the remote host when it needs to negotiate a connection, which includes an initial sequence number. This indicates to the other computer that the client wants to negotiate a connection. 2. When the remote host receives the packet, it records the sequence number and replies with an acknowledgement (ACK), which is the initial sequence number which the client sent +1 (a way of verifying receipt by saying, 'i received your sequence number and i am expecting the same number +1 next'). It also sends its own sequence number so the client can do the same in the next step... 3. The client receives the remote hosts own sequence number +1 in the ACK packet which confirms it is communicating with the desired computer and responds with its own ACK of the remote hosts sequence number +1. This confirms the connection and the hosts can now begin communication. Every packet sent afterwards carries on using sequencing numbers so each end knows where the data came from and in what order it is to be assembled.
What is a handshake in computer terms?
i neeed help and this answer is not helping me at all
What is computer language?
Aprogramming language is a formal constructed language designed to communicate instructions to a machine, particularly a computer . Programming languages can be used to c…reateprograms to control the behavior of a machine or to expressalgorithms..
What is a handshake in computers?
what is a handshake on a computer

What does a handshake mean when talking about computers?
It means they are comparing protocols so the two computers can communicate.
What is a handshake in terms of computers?
\nHandshake : When you dial in to modem (those who use internet other than broadband connection), u will hear an dial tone..this shows that your configuration is correct. Hear…ing of dial tone is nothing but "handshake"....Hope this is in readable language :-)

What is the language of computers?
There are several answers to this question. Internally a computer uses 1 and 0 as its means of storing information and commands. Special patterns of 1 and 0 form commands …(CPU instructions) An assembler language generates these patterns However assembler is difficult for humans to work with so we work in an easier computer languages such as 'Fortran', 'C++', 'Python', 'Java' etc and these get compiled into assembler and turned into the CPU's command patterns. -------------------------------------------------------------------------------------- There are many different computer 'languages', but ultimately all of them must be translated to 'machine language' before the computer can actually understand it. That task is performed by special programs called compilers which convert the source code (Cobol, C, Fortran, etc.) which a human can understand into a string of 1s and 0s. ------------------------------------------------------------------------------------- Every computer only can understand the machine language i.e. the language of 0's and 1's, humans are not comfortable to understand such language easily, so that's why a high level language is used ( easily understood by humans) in order to interact with the system (machine).But as already mentioned that machine can only understand the language of 0's and 1's, an interpreted or compiler is used to convert the human understandable code to machine understandable code. ---------------------------------------------------------------------------------------------------------
Answered
In Computers
What does the computer term handshake mean?
In simple terms, it is the establishment of communication between computers. People can establish communication through a handshake, so the term is based on that. For comput…ers to communicate they first must establish a connection with each other. It is like when you make a phone call and the other person answers, at which point communication has been established. One computer sends a message to the other and the other responds, opening a connection between them and that is what we call a handshake.
Answered
In Computers
What is the application of computer language in computer?
Hey, guessing you want to design a computer program, Well Ok, First just a bit of advice, it will take alot time for anything other than a number guessing game, So.. 1. Cho…ose which language, C++, C#, C or JAVA, Python etc, Loads out there 2. Read there tutorials 3.Find a "Compiler" and good text editor with color coding etc, 4. Write your code and Last of all ... Give me a free copy if its anything good, lol just kidding Good luck
Answered
Is a computer language a language?
Well in its most basis element yes. Language is a vehicle in which people use to communicate. Binary, which I assume you are referring to, is a very basic "language" that a us…er or other computers use to "communicate" with each other.
Answered
What is computer is computer language?
codes. HTML, java, binary, source to name a few. needs more detail.
Answered
In Computers
What is the computer terminology of a handshake?
A computer handshake is the verified connection between twoelectronic devices (either physical or virtual). Each deviceverifies a successful connection with the other and ackn…owledgesreadiness for whatever reason the two devices connected. It issimilar to a human handshake that signifies mutual agreement.