The technological changes at the turn of the twentieth century that affected American life include the rise of the internet and mobile devices. The internet signaled the opportunity for immediate access of information. Paired with mobile technology, Americans were able to communicate almost instantly.
Answer:
The answer to this question is Extemporaneous Delivery.
Explanation:
You need to speak in a manner that uses unrehearsed word choice as well as smart preparation of ideas.
Extemporaneous method is delivering speech in a way that hold the interest of audience and to motivate them.
So according to me Extemporaneous method is best suited for delivering speech in most business settings.
Its c storing and charting data from surveys
Answer:
I did this in C# & Java
Explanation:
C#:
public static void Main(string[] args)
{
int input = Convert.ToInt32(Console.ReadLine());
Multiply(input);
}
public static int Multiply(int input)
{
int ans = 0;
for(int i =1; i<=10; i++)
{
ans = i*input;
Console.WriteLine(i + "*" + input + "=" + ans);
}
return ans;
}
Java:
public static void main(String[] args)
{
Scanner myObj = new Scanner(System.in);
int input = Integer.parseInt(myObj.nextLine());
Multiply(input);
}
public static int Multiply(int input)
{
int ans = 0;
for(int i =1; i<=10; i++)
{
ans = i*input;
System.out.println(i + "*" + input + "=" + ans);
}
return ans;
}