To what it seems like, it’s d
        
             
        
        
        
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:
Mathpix Snip, Socratic, Microsoft Math Solver....etc.
Explanation:
Hope this helps! :)
 
        
                    
             
        
        
        
Answer is A. The data has been filtered
The funnel in Excel lets you know that there is a filter in place on the columns. It is a filter icon. By default, any filtered column in Excel gets a little funnel icon on the top row as shown in the image attached. Once this funnel symbols is clicked, it gives you options to filter using several criteria.
 
        
             
        
        
        
Answer:
In a STAR TOPOLOGY network, each device on the network is attached to a central router. If the router fails, then the other devices will be unable to communicate, but if only one connected device fails, then all other devices will still be able to communicate.
Explanation:
In this type of topology all the computers are connected to a single router through a cable. This router is the central node and all others nodes are connected to the central node.