On modern network cards, this should just work.
It is advisable to give each laptop its own fixed IP address, such as 192.168.1.1 and 192.168.1.2 (with a netmask of 255.255.255.0)
However, you need to define what you expect to work. The first thing to try is ping <em>the other</em> machine from the command prompt, e.g.:
C:\> ping 192.168.1.2
Then, you can try to access shared network drives if you have enabled that. In the file explorer, try typing: \\192.168.1.2
<span>Intangible system is that system whose services are not visible</span>
Answer:
that is so long i just want points
Explanation:
Answer:
Description: Write a MASM 32bit program with a loop and indexed addressing that calculates the sum of all thegaps between successive array elements. The array elements are doublewords, sequenced in nondecreasing order.
;Include Irvine32.inc file used with link library for 32 bit applications
.386
.model flat,stdcall
.stack 4096
ExitProcess proto,dwExitCode:dword
INCLUDE Irvine32.inc
.data
myArray DWORD 0,2,5,9,10
arrSize = ($-myArray)/TYPE myArray
gapArr DWORD arrSize-1 DUP(?)
sum DWORD ?
.code
main PROC
;Call the procedure
call Clrscr
;Initialize ESI pointer
mov esi, 0
mov ecx, arrSize
dec ecx
L1:
mov eax, myArray[esi+4]
sub eax, myArray[esi]
mov gapArr[esi], eax
inc esi
loop L1
;Calculate the sum of gaps between array elements
mov sum, 0
mov esi, 0
mov ecx, arrSize
dec ecx
; move gapArr[esi] to a temporary register and then add that register value to sum
L2:
mov edx, gapArr[esi]
add sum, edx
inc esi
loop L2
INVOKE ExitProcess,0
main ENDP
END main
Explanation:
Answer:
Examine the sources cited by the website
Explanation:
Due to the ability for everyone to create a website, and that there are no governing standards on the quality of information given on websites, it is important when conducting research to ensure that the sources on the web are up to date, accurate, and provide an objective view
Therefore, it is important to go through and examine the website critically using the the following criteria
1) The website coverage
2) The currency of the website's information
3) Weather the website is objective or not
4) The identity of the author of the website and the ability to contact the author
5) The accuracy of the information contained in the website