the answer is false bc digutal is easeir
 
        
                    
             
        
        
        
Answer: statistician automotive engineer customer service specialist data modeler broadcast technician video systems technician
Explanation:
 
        
             
        
        
        
The unique reason why assembler language is preferred to high level language is that  It is said to be memory efficient and it is one that requires less memory.
<h3>Why is assembly language better than other kinds of high level?</h3>
It implies means that the programs that one uses to write via the use of high-level languages can be run easily on any processor that is known to be independent of its type.
Note that it is one that has a lot of  better accuracy and an assembly language is one that carries out a lot of better functions than any high-level language, in all.
Note also that the advantages of assembly language over high-level language is in terms of its Performance and accuracy as it is better than high-level language. 
Hence, The unique reason why assembler language is preferred to high level language is that  It is said to be memory efficient and it is one that requires less memory.
Learn more about  assembler language  from
brainly.com/question/13171889
#SPJ1
 
        
             
        
        
        
Answer:
// here is code in C++.
#include <bits/stdc++.h>
using namespace std;
// main function
int main()
{
    // variables
int n;
double average,sum=0,x;
cout<<"enter the Value of N:";
// read the value of N
cin>>n;
cout<<"enter "<<n<<" Numbers:";
// read n Numbers
for(int a=0;a<n;a++)
{
    cin>>x;
    // calculate total sum of all numbers
    sum=sum+x;
}
// calculate average 
average=sum/n;
// print average
cout<<"average of "<<n<<" Numbers is: "<<average<<endl;
return 0;
}
Explanation:
Read the total number from user i.e "n".Then read "n" numbers from user with for loop and sum them all.Find there average by dividing the sum with n.And print the average.
Output:
enter the Value of N:5
enter 5 Numbers:20.5 19.7 21.3 18.6 22.1
average of 5 Numbers is: 20.44