HTML is a very basic markup language and requires memorization of a few dozen HTML commands that structure the look and layout of a web page. Before writing <span>any HTML code or designing your first web page, you must decide on an HTML editor or text editor, such as Notepad or Word Pad.</span>
        
                    
             
        
        
        
Answer:
A). Using a flowchart, show the algorithm for the car collision avoidance system.
Explanation:
 
        
             
        
        
        
Answer:
the main window if that`s not correct sorry
Explanation:
 
        
             
        
        
        
Answer:
The quicksort pivot is an arbitrary element within the collection that is being sorted.  Using the pivot point, the collection of elements is partitioned into two smaller lists of elements.  Using some logic, the smaller elements are placed left of the pivot point, and larger elements are placed to the right of the pivot point.  Ideally, you would prefer you pivot point to be a median of your dataset to optimize the creation of the two sublists into a balanced state.
Cheers.