Answer:
001101000111 is the bcd no for 347
 
        
             
        
        
        
Answer:
let cookieNumber = Math.floor(Math.random() * 10)
 switch (cookieNumber) {
   case 1:
    document.write('Fortune 1')
    break;
   case 2:
    document.write('Fortune 2')
    break;
    case 3:
    document.write('Fortune 3')
    break;
   case 4:
    document.write('Fortune 4')
    break;
   case 5:
    document.write('Fortune 5')
    break;
   case 6:
    document.write('Fortune 6')
    break;
   case 7:
    document.write('Fortune 7')
    break;
   case 8:
    document.write('Fortune 8')
    break;
   case 9:
    document.write('Fortune 9')
    break;
   case 10:
    document.write('Fortune 10')
Explanation:
The cookieNumber is generated using Math.random(), which is rounded to a whole number using Math.floor(). Then, a switch block is used to display a different fortune depending on the value of cookieNumber. 
 
        
             
        
        
        
Answer:
Jumbo frames
Explanation:
Ethernet frames having a payload size above 1500 bytes are called Jumbo frames. The maximum MTU value set by the IEEE 802.3 is 1500 bytes, but jumbo frames have sizes up to a maximum of 9000 bytes, hence they do not meet the standards of IEEE 802.3. They are used in local area networks that can transmit data at high rates of 1 gigabits per second. 
 
        
             
        
        
        
Answer:
The C's malloc and free functions and the C++'s new and delete operators execute similar operations but in different ways and return results.
Explanation:
- The new and delete operators return a fully typed pointer while the malloc and free functions return a void pointer.
-The new and delete operators do not return a null value on failure but the malloc/free functions do.
- The new/delete operator memory is allocated from free store while the malloc/free functions allocate from heap.
- The new/delete operators can add a new memory allocator to help with low memory but the malloc/free functions can't.
- The compiler calculates the size of the new/delete operator array while the malloc/free functions manually calculate array size as specified.
 
        
             
        
        
        
If your social media accounts are public, college admissions representatives can look at your social media activity when deciding whether or not to accept you at their school.
<h3>What is a public social media account?</h3>
Public social media account is also known as the open account, in which any people can check the person's post and like and share the post. Basically, famous people like to keep their account public to gain more publicity.
Thus, option D is correct.
For more details about Public social media account, click here:
brainly.com/question/23378133
#SPJ1