Answer:
Press release tools on websites
Explanation:
There are several tools on websites that provide quick press release. It is possible to directly select the style from several choices. Each style has own fonts and colors however, it is possible to change them.
Step by step;
Angela may enter the website that provides press release
Then can select a theme with fonts and colors
Then she can put her work
It is ready to publish
Answer:
Here is my answer in Javascript
num = 0; // Use to calcate the even numbers
loop = 10; // Use for the highest even number that will be calcated for
index = loop/2; // Calcate the size of the array based upon how many loops their
let arr = [index]; //Create array to store the even numbers
let i = 0; // Use to keep track of which on what number in the while loop we are on
let total = 0; //Used to add up all of the even numbers
let mean = 0; //Used to calcate the mean of all even numbers
do {
i = i + 1; //Keep track of what loop we are on
num = num + 2; //Used to calcate the even number
arr.push(num); //Push the num into a array
total = total + arr[i]; //Calcate the total of the array
mean = total / i; //Calcate the mean
}
while (num != loop);
//Output the result
console.log(mean);
Answer:
I believe the answer would be B) Expert tasks?
Explanation:
Might be wrong but trust your gut!!
I believe this because.. wasn't that what most AI was made for/programmed to do....?? Carry out tasks that others couldn't do so easily? Ask yourself............
Have a wonderful weekend and good luck!!!
Answer:
qwerty is the main way people sort out there keyboard as you can see on the left side of the keyboard there is W,A,S,D
Explanation:
Answer:
using System;
class CheckDigit
{
public static void Main (string[] args)
{ //Accepting value from user
Console.WriteLine ("Enter a four-digit account number");
int acc = Convert.ToInt32(Console.ReadLine());
int d=acc%10; //extracting the last digit
acc=acc/10; //having the first three digit
if(acc % 7 == d) //checking and displaying
Console.WriteLine ("Valid Account Number");
else
Console.WriteLine ("Invalid Account Number");
}
}
Explanation: