Answer:
cyber-extortion
Explanation:
Ashley Baker has been the webmaster for Berryhill Finance only ten days when she received an e-mail that threatened to shut down Berryhill's website unless Ashley wired payment to an overseas account. Ashley was concerned that Berryhill Finance would suffer huge losses if its website went down, so she wired money to the appropriate account. The author of the e-mail successfully committed cyber-extortion.
 
        
             
        
        
        
Answer:
oid changeCase (char char_array[], int array_size ) {
__asm{
    mov eax, char_array;     
    mov edi, 0;
readArray:
    cmp edi, array_size;
    jge exit;
    mov ebx, edi;           
    shl ebx, 2;
    mov cl, [eax + ebx];    
check:
    //working on it
    cmp cl, 0x41;      
    jl next_indx;
    cmp cl, 0x7A;       
    jg next_indx;
    cmp cl, 'a';
    jl convert_down;
    jge convert_up;
convert_down:
    or cl, 0x20;        //make it lowercase
    jmp write;
convert_up:
    and cl, 0x20;      
    jmp write;
write:
    mov byte ptr [eax + ebx], cl    
next_indx:
    inc edi;
exit:
    cmp edi, array_size;
    jl readArray;
mov char_array, eax;
}
}
Explanation:
- Move char_array to eax as it is base image
.
 - Use ebx as offset
.
 - Use ecx as the storage register
.
 - check if cl is <= than ASCII value 65 (A)
.
 
 
        
             
        
        
        
Answer: Highlight the text you want to copy. Use the shortcut key combination Ctrl + C on a PC or Command + C on a Mac to copy the text. Move the text cursor to where you want to paste the text. Press Ctrl + V on a PC or Command + V on a Mac to paste the text
Explanation:
just copy and past by highlighting the text you want and clicking ctrl and c at the same time then ctrl and v to put it on word
 
        
             
        
        
        
1. True
2. Usually true, but it depends on the search engine you're using.  For example, Google lets you search for several words without commas.