Smart phones and wireless devices
        
                    
             
        
        
        
Answer:
Mechanical pencils.
Clutch pencils.
Technical pens.
Rulers.
Compass.
Drawing boards.
Erasers.
Sharpeners.
Explanation:
'What makes a great Technical Drawing? ' Technically correct, accurate, complete, consistent and unambiguous. Check the brief (a lot – and at all stages of the drawing process).
 
        
             
        
        
        
Answer:
cubeVolume = toThePowerOf(cubeSide, 3)
Explanation:
The function toThePowerOf, receives two int arguments say, a and b, where a is the first argument and b is the second argument as follows:
toThePowerOf(a,b)
The function returns the first argument(a) raised to the power of the second argument (b) i.e a ^ b as follows:
toThePowerOf(a, b){
 return a^b
}
In the call to the function, the first argument a, is replaced with the variable cubeSide and the second argument b is replaced with the value 3. 
Hence, the returned result becomes cubeSide ^ 3 which is then stored in a variable cubeVolume as follows:
cubeVolume = toThePowerOf(cubeSide, 3) 
 
        
             
        
        
        
Answer:
Data modeling
Explanation:
Data modeling is a term used in computer or software engineering. It is a technique of creating a data model for an information system through unusual formal methods. It also involves the analysis of models during the development of an application. It is further divided into three places including:
1. Conceptual data
2. Logical data model
3. Physics data model
Hence, Data modeling is a model that involves the creation of data and process models during the development of an application
 
        
             
        
        
        
Answer:
The pop-up button is necessary to show acceptance of the terms
Explanation: