Answer:
Image 1: B. Insurance agent
Image 2: A. Credit checker
Image 3: B. assets and liabilities
Image 4: B. Insurance underwriter
Explanation:
Insurance agent actually helps their clients in order to make certain decisions in choosing insurance policies that suits their needs. They give them advice on insurance plans that they can go for in order to insure their lives and properties in case of emergency.
A Credit checker is one of the finance careers that actually requires the lowest level of schooling. The basic requirement is for the individual to possess a high school diploma.
Actually, most careers in finance deal with assets and liabilities. Such career people usually work in certain professional environments such as commercial banking, investment banking, insurance, financial planning, money managing and real state.
Insurance underwriters are known to be professionals who actually evaluate and analyze the risk factors that are involved in insuring people and assets.
Answer:
double a;
double b;
double distance = Math.sqrt( (Math.pow(a, 2) + Math.pow(b, 2));
System.out.println("The distance is: " + distance);
Explanation:
The code snippet is written in Java.
First, variable a is declared as a type of double and variable b is also declared as a type of double.
The given formula for the distance is:
√(a² + b²)
So we use the inbuilt function of Java to calculate the power and the square root.
Math.sqrt is to find the square root and it returns a value of type double.
Math.pow is use to calculate the value of a² and b².
a² = Math.pow(a, 2)
b² = Math.pow(b, 2)
Then Math.sqrt is applied to the sum of Math.pow(a, 2) and Math.pow(b, 2), the value is assigned to distance of type double.
The value of distance is now displayed to the user:
System.out.println("The distance is: " + distance);
Answer:
2,520
Explanation:
The word ALGEBRA has 7 letters with the letter A repeated twice.
Hence we permute all 7 letters with A repeated twice
₇P₇ / 2! = 7!/ [ (2!) ( 7-7)!]
= 2,520
Answer:
actually you can pick any of those
Explanation: