Choose the correct term to complete the sentence.

_____apps can be created using a mobile app creation tool.

O Linux
O windows
O smartphones
O desktop


Answers

Answer 1
Smartphones! Because they offer lots of new techniques and you can do much more with them
Answer 2

The correct term to complete the sentence is smartphones. The correct option is third.

Smartphones apps can be created using a mobile app creation tool.

What is smartphone?

Smartphone is the complete pack of technologies with entertainment access using the internet.

Smartphones offer lots of new techniques and also comes with the app creation tool.

So, Smartphones apps can be created using a mobile app creation tool.

Thus, the third option is correct.

Learn more about smartphone.

https://brainly.com/question/14774245

#SPJ2


Related Questions

In Python
1.9 LAB: Input: Mad Lib

Mad Libs are activities that have a person provide various words, which are then used to complete a short story in unexpected (and hopefully funny) ways.

Complete the program to read the needed values from input, that the existing output statement(s) can use to output a short story.

Ex: If the input is:

Eric
Chipotle
12
cars
Then the output is:

Eric went to Chipotle to buy 12 different types of cars

Answers

name = input("Enter a name: ")

place = input("Enter a place: ")

number = input("Enter a number: ")

noun = input("Enter a noun: ")

print("{} went to {} to buy {} different types of {}".format(name, place, number, noun))

I hope this helps!

Following are the Python program for input value and prints its value with the message.

Program Explanation:  

In the python code, four variables "na, l, nu, no" are declared that inputs value by using the input method. In this, except for the "nu" variable, all is used for the input string value. After input value, the print method has used that prints value with a message.

Program:

#defining variable that uses the input method to the input value

na = input()#defining na variable to input value

l = input()#defining l variable to input value

nu = int(input())#defining nu variable to input integer value

no = input()#defining no variable to input value

print(na, 'went to', l, 'to buy', str(nu), 'different types of', no)# printing input value and print value with message

Output:

Please find the attached file.

Learn more:

brainly.com/question/18752544

Change the screen resolution so you can view more information on your screen. Use the resolution that enables you to fit the most information on the screen while still being able to read the display.

Use the space below to indicate your screen resolution and to describe the steps you used to do this.

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

My laptop's current screen resolution is (1366 by 768 recommended). When you change your screen resolution, your pc automatically suggests the recommended screen resolution that helps you to view more information on your screen and enable you to fit the most information on the screen while still being able to read the display.

To change the screen resolution, you need to go through from the following steps:

Right-click on empty space of desktop.As you right-click, a list of options will open, select "display setting" among themA new setting window will get open, at the left of the window, among given option, click on the first option i.e "display"The content of the display setting gets open in the right area of the window. scroll down and find the "Scale and Layout"under scale and layout, you can change your screen resolution while selecting the different screen resolution. However, it is good to select the recommended screen resolution based on your screen size.

true or false.the highest size of a font (html) is 10.

Answers

Answer:

False.

Explanation:

It's not true.

I believe it is False

Java Eclipse homework. I need help coding this

Project 5A - Mixed Results

package: proj5A
class: MixedResults

Create a new project called MixedResults with a class called Tester. Within the main method of Tester you will eventually printout the result of the following problems. However, you should first calculate by hand what you expect the answers to be. For example, in the parenthesis of the first problem, you should realize that strictly integer arithmetic is taking place that results in a value of 0 for the parenthesis.

double d1 = 37.9; //Initialize these variables at the top of your program
double d2 = 1004.128;
int i1 = 12;
int i2 = 18;

Problem 1: 57.2 * (i1 / i2) +1
Problem 2: 57.2 * ( (double)i1 / i2 ) + 1
Problem 3: 15 – i1 * ( d1 * 3) + 4
Problem 4: 15 – i1 * (int)( d1 * 3) + 4
Problem 5: 15 – i1 * ( (int)d1 * 3) + 4

Your printout should look like the following:

Problem 1: 1.0
Problem 2: 39.13333333333333
Problem 3: -1345.39999999999
Problem 4: -1337
Problem 5: -1313

Answers

public class MixedResults {

   public static void main(String[] args) {

       Tester test = new Tester();

       test.tester_method();

   }

   

}

class Tester{

   double d1 = 37.9, d2 = 1004.128;

       int i1 = 12, i2 = 18;

   Tester(){  

       

   }

   void tester_method(){

       System.out.println(57.2*(i1/i2)+1);

       System.out.println(57.2*((double)i1/i2)+1);

       System.out.println(15 - i1 * ( d1 * 3) + 4);

       System.out.println(15 - i1 * (int)( d1 * 3) + 4);

       System.out.println(15 - i1 * ( (int)d1 * 3) + 4);

   }

}

I think this is what you're looking for. Best of luck.

To start slide show of a presentation from the first slide.

A. From Slide Show Tab choose from Beginning button

B. From Slide Show Tab choose View Show button

C. From Slide Show Tab choose Rehearse timing button

D. From Slide Show Tab choose Custom Slide Show button​

Answers

the answer is a




step by step explanation:

Answer:

a

Explanation:

hype or sway house and why

me hype bc they are funny to me

Answers

Hype house easy it’s way better

Compute the approximate acceleration of gravity for an object above the earth's surface, assigning accel gravity with the result. The expression for the acceleration of gravity is: (G * M) / (d 2), where G is the gravitational constant 6.673 x10-11, M is the mass of the earth 5.98 x 1024 (in kg), and d is the distance in meters from the Earth's center (stored in variable dist center).

Sample output with input: 6.3782e6 (100 m above the Earth's surface at the equator) Acceleration of gravity: 9.81

Answers

Answer:

Written in Python

G = 6.673 *pow(10,-11)

M = 5.98 *pow(10,24)

d = float(input("Distance: "))

g = (G * M)/(pow(d,2))

print("Acceleration of gravity: "+str(g))

Explanation:

This line initializes the gravititational constant

G = 6.673 *pow(10,-11)

This line initializes the mass of the earth

M = 5.98 *pow(10,24)

This line prompts user for object distance

d = float(input("Distance: "))

This line calculates the object's gravity

g = (G * M)/(pow(d,2))

This line prints the calculated gravity without approximating

print("Acceleration of gravity: "+str(g))

Answer:

G = 6.673e-11

M = 5.98e24

dist_center = 6.3782e6

accel_gravity = (G*M)/(dist_center * dist_center)

print(accel_gravity)

Explanation:

I want to use an external keyboard but my father is not allowing what should I do Can someone help me out with this I know this not related to subjects but i hope you all will answer

Answers

Answer:

payattention in class

Explanation:

A speaker says:
Can you please bring me some milk I mean coffee?
Which of the following is the most correct way to transcribe this according to our Style
Guide? Type A, B, C, or D in the box below.
A) Can you please bring me some coffee?
B) Can you please bring me some milk, I mean coffee?
C) Can you please bring me some milk-- I mean, coffee?
D) Can you please bring me some milk -- I mean coffee?

Answers

The correct answer to the question is D

#Write a function called grade_scantron. grade_scantron should
#take as input two lists: answers and key. Each list contain
#strings. Each string will be only one letter, a character
#from A to E. grade_scantron should return how many questions
#the student got "right", where a student gets a question
#right if their answer for a problem matches the answer key.
#
#In other words, if value of the first item in answers matches
#the value of the first item in key, the student gets a point.
#If it does not, the student does not get a point.
#
#If the lists do not have the same number of items, return
#-1 to indicate that the answer key did not belong to the
#same test as the student's answers.\
#
#Hint: in the past, lots of people have tried to do this using
#the index() method. That won't work! You'll need to track the
#index yourself.


#Write your function here!
def grade_scantron(answers,key):
count=0
result=-1
try:
if len(key) != len(answers):
result=-1
except:
result=count
for index, item in enumerate(answers):
if(key[index] == answers[index]):
count+=1

return(result)

#Below are some lines of code that will test your function.
#You can change the value of the variable(s) to test your
#function with different inputs.
#
#If your function works correctly, this will originally
#print: 7
answers = ["A", "B", "B", "A", "D", "E", "B", "A","D"]
key = ["A", "B", "B", "A", "D", "E", "B", "A", "D"]
print(grade_scantron(answers, key))

I keep getting -1 and I don't know why. No matter what I do, I can't get the code to print either -1 (if the lengths don't match) or the amount of correct answers ( if the lengths do match up).

Answers

En este ejemplo vemos que, por la información dada, no es posible que esta oración tenga coherencia o sentido. En este caso el nexo o conector que une ambas oraciones no debería haberse utilizado, puesto que ambas oraciones no tienen relación. Por ende corresponden a estructuras diferentes y no es posible que mantengan una coherencia. Varias oraciones sin coherencia, generan textos incoherentes.

what is wrong with my code???

using System;

namespace FavoriteNumber
{
class Program
{
static void Main(string[] args)
{

Console.Write("Enter your favorite number!: ");
int faveNumber = Console.ReadLine()
int number = Convert.ToInt32("string value")

Answers

Answer:

using System;

namespace FavoriteNumber  

{

class Program

{

static void Main(string[] args)  

{

Console.Write("Enter your favorite number!: ");  

int number = Convert.ToInt32(Console.ReadLine());  

}

}

}

. How to insert Section Break in Microsoft word 2016 ?

A. Insert Tab – pages group – Page Break button

B. View Tab – Document View group – Break button

C. Layout Tab – Page setup group – Breaks – Next page button.​

Answers

Answer:

C. Layout Tab – Page setup group – Breaks – Next page button.

in public speaking situation the sourse of the message is the person listening to the speech​

Answers

Answer:

The answer to this question is given below in the explanation section

Explanation:

This question is about terminologies or elements used in public speaking.

So generally, in public speaking, the source is the person who is giving the speech, the channel is the speaker's use of verbal and nonverbal communication, and the receivers are the audience members listening to the speech.

Why is forwarding messages useful?
O to pass along messages and attachments to those who should see them
* to return a message to the message sender and all other original recipients
O to courtesy copy someone with a reply message
O to move old messages into a message archive

Answers

A. To pass along messages and attachments to those who should see them.

Answer:

A. to pass along messages and attachments to those who should see them

Hope this helps :D

list four products that normally requires copyright protectio.​

Answers

The  four products that normally requires copyright protection are:​

Books and written literary works.Music compositions and sound recordings.Artistic creations such as paintings, sculptures, and photographs.Software programs and computer applications.

What is the copyright protection.

Books and written literary works need copyright protection to keep the original ideas and writings of authors safe. This stops people from copying, sharing, or making more copies without permission.

Copyright protection is important for music compositions and sound recordings to make sure that composers, songwriters, and performers have power over how their works are used, shared, and performed for the public.

Read more about copyright protection here:

https://brainly.com/question/27976194

#SPJ1

What is the main advantage of a bitmap image?

a
It is HTML-specific.function
b
It is Python-specific.
c
It includes minimal detail.
d
It includes a lot of detail.

Answers

The answer is d. Hope this helps

How did punch cards improve the weaving process?

Punch cards allowed a weaver to give instructions to the loom.

Punch cards made it easier for the weaver to put the string on the loom.

Punch cards allowed a weaver to choose the colors for the fibers used in a loom.

Punch cards allowed a weaver to get feedback from the loom.

Answers

Answer:

Punch cards allowed a weaver to give instructions to the loom.

Explanation:

Why the following code is giving error NAME="REHMAAN" PRINT ("hello') PRINT ("HI")

Answers

Answer:

corrected code:

NAME="REHMAAN"  

print ("hello")  

print ("HI")

Explanation:

In python, put every statement on its own line. Even indentation matters.PRINT should be in lowercase, i.e., printThe string quotes should be both " or both ', but not a mix like in "hello'

what is the name of the symbol that is used to classify and categorize information?​

Answers

Answer:

A Hashtag

Explanation:

Answer: it’s Hashtags#

Find the solution of the equation
4x+10/3=25?3-x ​

Answers

I’m going to assume the ? is dividing and if that’s the case X = 1

7. Ctrl + V is used to __________

A. Change the text direction

B. Chand page rotation to vertical (LandScape).

C. Copy and paste a selected text

D. Copy the selected text

E. Paste the selected text

F. Cut and paste a selected text

G. Both C and F​

Answers

Answer:

E=Paste

Explanation:

E= Paste the selected text

Answer:

e

Explanation:

because if you do Ctrl+c it copies and then you have to paste so you use Ctrl+v Therefore the answer is E

Place the steps in order to link and place text into the document outline, effectively creating a master document.
Click Insert
Click Show Document.
Click Open.
Select the document file.
Click Outline view.

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

This question is asked about placing or linking text in an outline view and what would be the correct steps of placing text in an outline view.

The correct order to link and place text into the document outline, effectively creating a master document is given below:

Click Outline viewClick Show DocumentClick InsertSelect the document fileClick open

Answer:

Click Outline view

Click Show Document

Click Insert

Select the document file

Click open

Explanation:

who you on
1. What type of web page is classified as flat or stationary?
A. Web 1.0 B. Web 2.0 C. Web 3.0 D. Web 4.0​

Answers

Answer:

Web 1.0

Explanation:

Web 1.0 was its terminology used during the World Wide Web to reference to the first period of growth that was characterised by basic static websites. Flat pages: Pages did not provide dynamic functionality that modified depending on the activities of website users. Websites were primarily informative at that time.

Web pages which lacks interactivity such that only contents which have been originally posted remains there and hence do not change characterize the earliest form of web pages called Web 1.0.

The name stationary or flat web was culled from how the the earliest form of web pages appear. They do not contain visuals or interactive capability.

In static web pages, contents remain as they are posted as editing cannot be made on the go as it is possible with dynamic web pages which characterizes more newer forms of web pages.

Therefore, the earliest form of web pages, Web 1.0 are referred to as being flat or stationary.

Learn more :https://brainly.com/question/9060926

Create a class named Console, and move all the methods that retrieve and validate user input to that class. These methods can remain static. Create a class named Game, and move all the methods that display messages and handle user guesses to that class. Adjust these methods so they aren't static, and use instance variables of the Game class to keep track of numbers, guesses, and so on. Update the application to use these classes and their methods. Make sure the application functions the same as it did before.

Answers

Answer:

Here is the Console class:

import java.util.Scanner;  // to accept input from user

public class Console {   // class name

public Console() {}   //class constructor

public int getInt(Scanner sc, String prompt) { //gets user's number  

int i = 0;   //initialize i to 0

boolean isValid = false;   // checks for valid input

while (!isValid) {   //loop iterates as long as input remains valid

System.out.print(prompt);   //displays prompt

if (sc.hasNextInt()) {   // checks for the next token (input number)

i = sc.nextInt();   // scans and reads the next number

isValid = true;   // checks if input is valid

} else {   //if input is not valid

System.out.println("Error! Invalid integer value. Try again.");  }  //displays error message

sc.nextLine(); // discard any other data entered on the line   }

return i;  }  //returns number

public int getIntWithinRange(Scanner sc, String prompt, //checks users guess if outside parameters or not  

int min, int max) {  

int i = 0;  

boolean isValid = false;   //sets isValid to false

while (!isValid) {   //keeps iterating and stops when isValid is false

i = getInt(sc, prompt);   //calls getInt method to get users number

if (i <= min) {   //if number is less than value of min

System.out.println("Error! Number must be greater than " + min);   //displays this message

} else if (i >= max) {   //if number is greater than that of max

System.out.println("Error! Number must be less than " + max);   //displays this message

} else {   //if guess is right

isValid = true;   } } //sets isValid to true

return i;  } //returns that number

public  String getRequiredString(Scanner sc, String prompt) { //Asks for user's string input  

String s = "";  

boolean isValid = false;   //sets isValid to false

while (!isValid) {      //keeps iterating and stops when isValid is false

System.out.print(prompt);    //displays prompt

s = sc.nextLine();   //reads next line (read next string input value)

if (s.equals("")) {   //if user enters nothing

System.out.println("Error! This entry is required. Try again.");   //display this message

} else {   //if user enters a string input

isValid = true;   }  }  //sets isValid to true

return s; }  //returns string

public  String getChoiceString(Scanner sc, String prompt, //Checks for users input for Y/y ignores caps  

String s1, String s2) {

String s = "";  

boolean isValid = false;   //sets isValid to false

while (!isValid) {   //iterates until isValid is false

s = getRequiredString(sc, prompt);   //calls method to get the input string

if (!s.equalsIgnoreCase(s1) && !s.equalsIgnoreCase(s2)) {  // checks users input for Y/y ignores caps  

System.out.println("Error! Entry must be '" + s1 + "' or '" + s2 + "'. Try again.");   // displays error message that entry must be y or Y

} else {   //if user enters y or Y

isValid = true;   } }   //sets isValid to true

return s;  } } //returns y or Y

Explanation:

Here is the Game class

public class Game {  // class name

public Game() {}   //class constructor

public void displayWelcomeMessage() { //displays message  

System.out.println("Welcome to the Guess the Number Game");  

System.out.println("++++++++++++++++++++++++++++++++++++");  

System.out.println(); }

public  void displayPleaseGuessMessage() { //displays message for user to guess from 1-100  

System.out.println("I'm thinking of a number from 1 to 100.");  

System.out.println("Try to guess it.");  

System.out.println();}

public  void displayCorrectGuessMessage(int counter) { //display user's current guess count

System.out.println("You got it in " + counter + " tries.");  

if (counter <= 3) {   //if user guesses the number in 3 or less tries

System.out.println("Great work! You are a mathematical wizard.\n");  

} else if (counter > 3 && counter <= 7) {   //if user guesses the number greater than 3 but less than or equals to 7 tries

System.out.println("Not too bad! You've got some potential.\n");  

} else {   //if user guesses the number after more than 7 tries

System.out.println("What took you so long? Maybe you should take some lessons.\n"); }}

public  void displayGuessAgainMessage(int number, int guessNumber) { //Asks user to guess again  

int difference = guessNumber - number;  

if (guessNumber > number) {   //if guessNumber is greater than number

if (difference > 10) {   //if difference between guessNumber and number is greater than 10

System.out.println("Way too high! Guess again.\n");   //guessed number is higher than correct one

} else {  

System.out.println("Too high! Guess again.\n");  }

} else {  

if (difference < -10) {   //if difference between guessNumber and number is less than -10

System.out.println("Way to low! Guess again.\n");   //guessed number is lower than correct one

} else {  

System.out.println("Too low! Guess again.\n");}}}}

The main program and explanation of these above programs are given in the attached document.

The output of the program is attached.

mention two hardware groups​

Answers

Answer:

input Devices, Processing Devices, Output Devices, Memory/Storage Devices

Explanation:

What are some elements commonly included in forms in Word? Check all that apply.

embedded charts
dates
text
macros
drop-down lists

Answers

Answer:

dates

text

drop-down lists

Answer:

B-dates

C-text

E-drop-down lists

Explanation: ;)

What declarations, inputs, processing, and outputs are needed to calculate the area of a rectangle?​

Answers

Answer:

Declaration: length, width, area

Inputs: length & width

Processing: length & width

Output: area

Explanation:

The area of a rectangle uses the formula: [tex]A=lw[/tex]. In your coding, you need to ask for user input for the length and width in order to calculate the area.

Your processing would simplify multiple the user's input together stored in some type of sum variable.

Now I don't know what program language you are using but I will give you an idea.

Code (Python)

#Define variables equal to user input.

length = int(input("Enter the length of the rectangle: "))

width = int(input("Enter the width of the rectangle: "))

area = length * width

Your output would be the area, but you can manipulate it if you want.

print("The area of the rectangle is", area)

So the program would run like this:

Enter the length of the rectangle: 3 <--you type a number

Enter the width of the rectangle: 5

The area of the rectangle is 15

Sidenotes: if you are using ints, the number MUST be a whole number or the program will throw an error. If you are using decimals, use a float.

What are the benefits of online notebooks? Check all that apply..

They allow users to store files.
They allow users to share files.
They give users a way to practice for tests.
They help users organize assignments.
They allow users to clip information from web pages.
They can serve as school calendars.

Answers

Answer:

its a They allow users to store files. b They allow users to share files. d They help users organize assignments and f They can serve as school calendars.

Explanation:

:))))

Answer:

abdf

Explanation:

Plz answer me will mark as brainliest​

Answers

First one I think RAM and second one is Barcode reader

Question # 5 Dropdown What is the output for the following code? >>> phrase = "help23" >>> phrase.isalnum() h​

Answers

The output is True because the string phrase contains only letters and numbers.

Answer:

true

Explanation:

Other Questions
Evaluate the expression 3+2(1+2)+25+2(5-2) the times (in minutes) that several underwriters took to review applications for similar insurance coverage are 100, 110, 42, and 45. what is the median length of time required to review an application? group of answer choices 87.00 73.75 72.50 76.00 Why is Math so easy, & I hate ELA, Reading is so Bogus to Be honest with you guys, but I have to deal with it, and get my Education! After about six months as a team, the group began to fall into a habit of rationalizing their decisions rather than look for ways to improve the decision, many of the members began to censor themselves to fit into the group, and some of the group members kept important information to themselves to protect the status quo. Which of the following is most likely happening to this team?a Group thinkb Social loafingc Normingd Cohesion $10,000.00 deposited in an account earning 7%, for 10 years. Calculate the balance in 10 years. a. 23,673.64 b. 20,135.22 C. 19,671.51 d 15,150.35 Who passed the Navigation Acts a what were they meant to control? The Hofstede Dimension that measures whether an organization would celebrate innovation, quirkiness, and unique ideas from specific team members would be: a. Individualism versus Collectivism b. Agility c. Power Distance d. Uncertainty Avoidance Index What is differences between hinduism and buddhism (please write 5 sentences) incorporating relevant principles of individual motivation and applied performance practices, discuss how organisations can harness the potential of diverse employees. your discussion should focus specifically on Gender.discussing the topic. Individual motivation and applied performance practices A piece of newly purchased industrial equipment costs $982,000 and is classified as seven-year property under MACRS. The MACRS depreciation schedule is shown in Table 10.7. Calculate the annual depreciation allowances and end-of-the-year book values for this equipment. Common stock-$15 par value, 100,000 shares authorized, 50,000 shares issued and outstanding Paid-in capital in excess of par value, common stock Retained earnings Total stockholders' equity $ 750,000 80,000 400,000 $1,230,000 Jan. July During 2019, the following transactions affected its stockholders' equity accounts. Jan. 2 Purchased 6,000 shares of its own stock at $25 cash per share. 5 Directors declared a $4 per share cash dividend payable on February 28 to the February 5 stockholders of record. Feb. 28 Paid the dividend declared on January 5. 6 Sold 2,250 of its treasury shares at $29 cash per share. Aug. 22 Sold 3,750 of its treasury shares at $22 cash per share. Sept. 5 Directors declared a $4 per share cash dividend payable on October 28 to the September 25 stockholders of record. Oct. 28 Paid the dividend declared on September 5. Dec. 31 closed the $388,000 credit balance (from net income) in the Income Summary account to Retained Earnings. Required: 1. Prepare journal entries to record each of these transactions. 2. Prepare a statement of retained earnings for the year ended December 31, 2019. 3. Prepare the stockholders' equity section of the company's balance sheet as of December 31, 2019, Complete this question by entering your answers in the tabs below. Complete this question by entering your answers in the tabs below. Required 1 Required 2 Required 3 Prepare a statement of retained earnings for the year ended December 31, 2019. (Amounts to be deducted should be Indicated by a minus sign.) KOHLER CORPORATION Statement of Retained Earnings For Year Ended December 31, 2019 Beginning retained earnings 400,000 Add: Net income 388,000 788,000 Loss: Cash dividends declared Loss: Treasury stock reissuances Ending retained earnings $ 788,000 Required 1 Required 3 > Complete this question by entering your answers in the tabs below. Required 1 Required 2 Required 3 Prepare the stockholders' equity section of the company's balance sheet as of December 31, 2019. KOHLER CORPORATION Stockholders' Equity Section of the Balance Sheet December 31, 2019 Total contributed capital 0 Total stockholders' equity $ 0 < Required 2 Required suppose the elasticity of demand for tickets to broadway shows is 2.0 for men and 0.3 for women. to use price discrimination to increase profits, the producers should charge lower prices to because their demand is . group of answer choices women; inelastic women; elastic men; elastic men; inelastic help please* Question Completion Status: L Moving to another Lestion will save this response. Question 11 Define the business market and explain how business markets differ from consumer markets? For the toolbar If inch represents 10 miles on a map, then how many inches will represent 240 miles? In some ways, the struggle for independence divided colonists. In other ways, however, the dislocations of the war and the revolutionary principles at the heart of the conflict reshaped social structures and created new relationships and opportunities in a society highly divided by race, gender, and class. The following questions consider how social expectations changed during and after the war.Which of the following created the appearance of greater egalitarianism among men of different classes? The war led to the significant redistribution of resources. Continental army officers faced increasing insubordination. Deference to the wealthy was considered a virtue. Elites began wearing homespun clothing. Please use the data below to answer the following question. Expected annual inflation rate in the US (1h) 6%Expected annual inflation rate in Switzerland (f) 4% Current Exchange Rate If one year later, the spot rate of CHF turns out to be $0.762, then the net cash flow of a US exporter to Switzerland will: O Decrease O Increase instructing patients in the proper method of obtaining which type of sample is likely to be among the duties of a clinical medical assistant who is working for a gastroenterologist or proctologist? Discuss how Congress encourages or discourages certain spending behaviors through tax policy.There have been many discussions in this country espousing movement to the Value Added Tax (VAT). Discuss the pros and cons of this proposal.Discuss the ethical implications of the estate, inheritance, and gift taxes. World famous footballer Cristiano Ronaldo's earnings are estimated at approximately three hundred and eighty-five thousand pounds sterling per week, that is approximately seventy-five million Jamaican dollars per week. In contrast a health care professional can earn less than two hundred thousand Jamaican dollars per month and many sanitation workers earn less than fifty thousand Jamaican dollars per month Questions: 1. Do you consider the services of a football players like Cristiano Ronaldo more beneficial and essential when compared to services provided by health care workers, sanitatie workers and even educational professionals? 2. What in your opinion accounts for the vast disparity in remuneration for the groups mentioned above? 3. Explain how the concepts of scarcity, choige and opportunity costs influence the huge disparity in remuneration mentioned above. 4.1. Determine the time, taken in years, for a sum of money to double if the interest rate is 12,64% p.a, compounded half-yearly. (3) 4.2. Precious received a valuation of R 130 000 for her car that has depreciated at a rate of 15% p.a. on a reducing balance over the last years. Determine the value of the car 5 years ago. (2) 4.3. Richard and James each received R12 000 to invest for a period of 5 years. They invested the money at the same time according to the following options. Richard: 8, 5% p.a. simple interest. At the end of the 5 years he will receive an additional bonus pay out of exactly 7, 5% of the original amount invested. James: 8, 5% p.a. compounded quarterly. Who will have the larger final amount after 5 years? Justify your answer with appropriate calculations. (4) 4.4. Convert an effective annual interest rate of 14, 2% p.a. nominal annual interest rate compounded monthly.