The statement is false, technical skills are those that serve to perform a specific function and are also called hard skills.
Technical skills are skills that include knowledge in the mechanical, computer, mathematical or scientific area that will allow a good performance of specific tasks.
- A person with technical or hard skills is able to apply specific methods, procedures and techniques in a specialized field.
- Soft skills refers to the characteristics and personal competencies that show how a person copes with others, it is related to emotional intelligence.
Therefore, we can conclude that technical or hard skills are the practical knowledge necessary to perform specific tasks, while soft skills are those skills associated with the ability to interact effectively on a personal level.
Learn more about technical skills here: brainly.com/question/10976877
The components of an ERP system architecture is made up of the hardware, software and the Data.
<h3>What is an ERP system?</h3>
Enterprise resource planning (ERP) is known to be a kind of software that firms often use to handle or manage day-to-day business works such as accounting and others.
Note that The components of an ERP system architecture is made up of the hardware, software and the Data.
Learn more about ERP system from
brainly.com/question/14635097
#SPJ12
Ummmmmm... Dr. Boyd is a Psychologist that has nothing to do with computers and technology
Answer:
import java.util.Arrays;
import java.util.Scanner;
public class num1 {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Enter length of the array:");
int len = in.nextInt();
double [] temps = new double[len];
double avgTem;
int k =0;
double total = 0;
for( k=0; k<temps.length; k++){
System.out.println("Enter values for the array");
temps[k]=in.nextDouble();
}
System.out.println("The Arrays contains the following values");
System.out.println(Arrays.toString(temps));
// Computing the average of the values
for(k=0; k<temps.length; k++){
total = total+temps[k];
}
avgTem = total/(temps.length);
System.out.println("The average Temperature is: "+avgTem);
}
}
Explanation:
- Using Java programming language
- Import the Scanner class to receive user input
- Prompt User for the length of the Array, receive and store in a variable len;
- Declare a new double array of size len double [] temps = new double[len];
- Using a for loop, continually prompt user to enter values into the array
- Display the values of the array using Java's Arrays.toString method
- Use another for loop to add up all the elements in the arraay and store in the variable called total
- Outside the second for loop calculate the average avgTem = total/(temps.length);
- Display the average temp.