<u>The possible consequences of intentional virus setting:</u>
Virus is nothing but desktop or laptop or tablet OS has to do certain process as on its own which diverse other to different process such us stealing the data from desktop or laptop or tablet and making slow the performance of desktop and laptop and tablet.
To avoid or protect the computer there are two type of antivirus.
- On desktop or tablet or laptop. (It is called resident firewall).
- Internet gateway. (It is called firewall)
So company create virus and to rectify they make money of that process.
To protect our desktop or laptop or tablet from virus we are protected with law. In case due to virus attacked our laptop or desktop or tablet Is effected we can fine the or sent to jail by law.
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:
HTTP means Hyper Text Transfer Protocol underlying protocol used by the World Wide Web(www).
usa is the server name which is used address in the DNS record
.gov is the Domain names which are used to identify more then one IP addresses
Agencies/federal.shtml a directory is a collection of file resources also called the resource ID.
IsTeenager = ( ( kidAge >= 13 ) && ( kidAge <= 19 ) ) ? true : false;
Another way:
if( ( kidAge >= 13 ) && ( kidAge <= 19 ) )
isTeenager = true;
else
isTeenager = false;
Answer:
4
Explanation:
Relative Biological Effectiveness (RBE) =
Standard Radiation dose / Test Radiation dose
for achieving the same biological effect.
The absorbed radiation dose is measured in units of Gyt(Gray in tissue).
In the given scenario, Standard radiation dose of 250 KVp X-rays = 16 Gyt
Corresponding Test Radiation dose = 4 Gyt
Therefore, Relative Biological Effectiveness = 16/4 = 4