Some experts believe that the growth in e-commerce will cause states and local govermnets to lose tax revenue, unless Internet transactions are subject to sales tax. What is one argument that supports this view, and one that opposes it

Answers

Answer 1

Answer:

The answer is below.

Explanation:

Increase in e-commerce sales or growth leads to higher quantity of sales that will generate sales-tax numbers that are easily noticeable and can be a good source of revenues for States and local government. Thus, as a result of potential income that e-commerce or internet is capable of generating, both state and local policy makers are working tirelessly, to ensure they maximize every means they can get to reap revenue from the Internet for their treasuries.

However, those not in favour, or opposition, believed that tax imposition of e-commerce or online sales, would negatively affect the growth or cause slow upward movement in the growth and opportunity of e- commerce, before the customers can generally embrace it fully, and see it as the new market hub.


Related Questions

Write a script called checkLetter.sh Review Greeting.sh for an example. Use a read statement and ask user to "Enter A, B, or C: "

If user types A, echo "You entered A"
If user types B, echo " You entered B"
If user types C, echo " You entered C"
Use the case structure to test the user’s string.
If user types any letter from lower case ‘a through z’ or upper case ‘D through Z’, echo "You did not enter A, B, or C".

Answers

Answer:

The code is given as below: The input and output is as given for one case.

Explanation:

echo -e "Enter A, B or C : \c" #Printing the line on the screen

read -rN 1 test #read the character in the variable test

echo

case $test in #Setting up the case structure for variable test

[[:lower:]] ) #checking all lower case letters

echo You did not enter A, B or C;;

[D-Z] ) #checking upper case letters from D to Z

echo You did not enter A, B or C;;

A ) #Condition to check A

echo You entered A;;

B ) #Condition to check B

echo You entered B;;

C ) #Condition to check C

echo You entered C;;

esac #Exiting the case structure

For each of the following, write C++ statements that perform the specified task. Assume the unsigned integer array will be located at 1002500 in memory when the array is declared. An unsigned integer occupies four bytes. The data type of unsigned integer is unsigned. Use the constant integer variable size that is initialized to value 5 to represent the size of the array. The very first element of the array is the 0th element.

Answers

Answer:

The answer is given as below.

Explanation

As the complete question is not given, the complete question is found online and is attached here with.

a)

int values[SIZE] = {2,4,6,8,10};

b)

int *aPtr;

c)

for(i=0;i<SIZE;i++)

printf("%d", values[i]);

d)

aPtr=values;

aPtr=&values[0];

e)

for(i=0;i<SIZE;i++)

printf("%d", *(aPtr+i));

f)

for(i=0;i<SIZE;i++)

printf("%d", *(values+i));

g)

for(i=0;i<SIZE;i++)

printf("%d\n", aPtr[i]);

h)

array subscript notation: values[3]

pointer/offset notation: *(values +3)

pointer subscript notation: aPtr[3]

pointer/offset notation: *(aPtr + 3)

i)

1002512 is the address is referenced by aPtr + 3 and 8 is the value stored at that location.

j)

1002500 is the address referenced by aPtr -= 2 and 2 is stored at that location.

Using the chores.csv file fat the very bottom; write an awk script to return the average number of minutes required to complete a chore. Your solution must handle an undefined number of chores. zero points will be given to solutions that use a static number in their calculation.
Format floating point numbers to 2 decimal places.
Example output;
Average: 28.12
chores.csv
Chore Name,Assigned to,estimate,done?
Laundry,Chelsey,45,N
Wash Windows,Sam,60,Y
Mop kitchen,Sam,20,N
Clean cookware,Chelsey,30,N
Unload dishwasher,Chelsey,10,N
Dust living room,Chelsey,20,N
Wash the dog,Sam,40,N

Answers

Answer: Provided in the explanation section

Explanation:

According to the question:

Using the chores.csv file fat the very bottom; write an awk script to return the average number of minutes required to complete a chore. Your solution must handle an undefined number of chores. zero points will be given to solutions that use a static number in their calculation.

Format floating point numbers to 2 decimal places.

Example output;

Average: 28.12

chores.csv

Chore Name,Assigned to,estimate,done?

Laundry,Chelsey,45,N

Wash Windows,Sam,60,Y

Mop kitchen,Sam,20,N

Clean cookware,Chelsey,30,N

Unload dishwasher,Chelsey,10,N

Dust living room,Chelsey,20,N

Wash the dog,Sam,40,N

ANSWER:

BEGIN{

FS=","

}

{

if(NR!=1)

sum += $3

}

END{

avg=sum/NR

printf("Average: %.2f ", avg)

}' ./chores.csv

cheers i hope this helped !!

Which of the following audio file formats is best
suited for listening to music on a portable audio
device?
(A)BWF
(B)RA
(C)Lossy AIFF
(D)WMA

Answers

Answer:

D. WMA

Explanation:

The following audio file formats that is the best suited for listening to music on a portable audio device is WMA.

Answer:

(D) is the answer WMA

Explanation:

Give the other person brainliest ↑↑↑

                                                        hope it helps

Consider a TCP connection with a 1ms RTT in which the sender has 50,000 bytes of data to send and there are no losses and no congestion. The receiver has an initial advertised window of 10,000 bytes and reads 2,000 bytes of data once every two seconds. What is the advertised window in bytes after one second

Answers

Answer:

Advertised window in bytes after one second = 0 bytes.

Explanation:

Given:

Sender bytes = 50,000 bytes

Receiver's initial advertised window = 10,000 bytes

Read rate = 2,000 bytes / per 2 second

Find:

Advertised window in bytes after one second = ?

Computation:

We know that, 10,000 bytes have been buffered in receiving initial advertised window.

Receiver read 2,000 bytes in every 2 second.

So, receiver will not able to read anything in 1 second.

Therefore,

Advertised window in bytes after one second = 0 bytes.

Write a C++ program that will ask the user for the name of a data file.
This data file contains a list of students in some class.
The names are listed, one per line, in the following format:
lastName firstName middleInitial
and each part of the name is separated by a space.
Each student in this class has a data file that contains an unknown number of test scores. The name of each student’s data file is formed by concatenating the students first and last name and adding ".dat", for example:
Student Name: Tuel Dennis D
Student Data File: DennisTuel.dat
Your program should open each student’s data file, read in the scores and calculate the student’s average.
In addition to calculating the average for each student you should report the average for the class, and the highest and lowest test score in the class.
Note: All averages should be rounded to the nearest hundredth.
cout << fixed << setprecision(2);
Example:Data File: Students.dat
Tuel Dennis DDrummond Ann MMaxwell Virginia L
DennisTuel.dat
85
88
92
86
AnnDrummond.dat
95
72
88
89
VirginiaMaxwell.dat
68
75
83
98
Sample Program Output:
Enter Name of Data File: Students.dat
Students Average
Dennis D Tuel 87.75
Ann M Drummond 86.00
Virginia L Maxwell 81.00
Class Average: 84.92
Max Score: 98.00
Min Score 68.00
This is my answer, but its not correct. How to fix it.
#include
#include
#include
#include
#include
using namespace std;
int main(){
string name[3];
int tmpScore, studentTotal, minScore, maxScore, countStudent, countClass;
ifstream studentDat;
ifstream namelist;
double classTotal;
minScore = 100;
maxScore = 0;
classTotal = 0.0;
countClass = 0;
cout << setw(20) << left << "students";
cout << setw(5) << left << "Data" << endl;
while(!namelist.eof()){
for(int i=0;i<3;i++){
namelist >> name[i];
}
studentDat.open((name[1]+name[0]+".dat").c_str());
studentTotal = countStudent = 0;
while(!studentDat.eof()){
studentDat >> tmpScore;
if(tmpScore>maxScore){
maxScore = tmpScore;
}
if(tmpScore>maxScore){
minScore = tmpScore;
}
studentTotal += tmpScore;
countStudent ++;
}
studentDat.close();
classTotal += (double)studentTotal / (double)countStudent;
countClass++;
cout< < < < cout< <<(double)studentTotal/(double)countStudent
< }
cout << setw(20)< cout << (double)classTotal/(double)countClass
< cout << setw(20) << left << "Max Score:";
cout << (double)maxScore << endl;
cout << setw(20) << left << "min Score:";
cout << (double)minScore << endl;
namelist.close();
return 0;
}

Answers

Answer:

Explanation:

Enter information,

Enter name: Bill

Enter roll number: 4

Enter marks: 55.6

Displaying Information,

Name: Bill

Roll: 4

Marks: 55.6

THIS IS AN EXAMPLE I HOPE THIS HELPS YOU!!

Which type of appliance can host several functions, such as antimalware, firewall, content filter, and proxy server

Answers

Answer:

Web Security Appliance (WSA)

Answer:

utm

Explanation:

UnifiedThreat Management (UTM): A security appliance and/or software tool

which contains a combination of any of the following: antivirus/antimalware, firewall,

proxy server, content filtering, spam filtering, intrusion detection system, intrusion

prevention system, and network access control. The more robust the tool, the

higher the number of features available.

Edit cell B15 to include a formula without a function that divides the total regional sales in Quarter 1 (cell B14) by the number of salespeople (cell G2). Don't change the reference to cell G2 that is already there.

Answers

Answer:

=B14/G2

Explanation:

In cell B15 we would type = to set the value of the cell to the sum of the equation.

Then we have to type in the equation. In this question it is cell B14 divided by cell G2 written like: B14/G2

Then we combine both the = and the equation =B14/G2

The item "=B14/G2" will be written when we edit cell B15 to include a formula without a function that divides the total regional sales in Quarter 1 (cell B14) by the number of salespeople (cell G2).

What are the steps?

In cell B15, we need to type = to set the value of the cell to the sum of the equation.

Next step is type in the equation. In this question, it is cell B14 divided by cell G2 (B14/G2)

Hence, we will combine both the = and the equation =B14/G2.

Read more about cell function

brainly.com/question/13880600

#SPJ2

Other Questions
I need to summary of Dusk by Saki the modes of a 7 set of numbers is m and n. the average is 18. three of the 7 numbers are 2m-3, m+12, and 3n+2. what is the value of (m+n) In an aquarium, there are 4 large fish and 16 small fish. Half of the small fish are blue. One fish is selected at random. Find the probability that it is a small, blue fish. Write your answer as a fraction in simplest form. 37. censor is to prohibit JUST ASA. beckon is to warnB. permit is to modelC. clarify is to confuseD. authorize is to allowWhats the answer Which rule represents the translation from the pre image, rhombus ABCD, to the image rhombus A'B'C'D' ? Complete the following subtraction exercises.10 2 =14 6 =15 9 =17 8 =13 5 =11 8 =20 8 =16 7 =12 9 =21 9 =11 6 = 5 5 = 4 0 =16 8 =10 5 =18 7 =13 8 =12 4 = Motion maps for two objects, Y and Z, are shown.A motion map. The position line is a long black arrow pointing right with x as the reference point at left. Above the line are three dots, each with a vector pointed away from x back to back in a line labeled B. Above B, there are four dots, each with a shorter vector pointing away from x in a line labeled A starting closer to x .Object Z passes object Y after how many seconds?2345 Simplify the expression. (-3 + 6i)(-3 + 5i) Plz help me its emergency How were the Neolithic Revolution and Industrial Revolution alike and different? What is the approximate length of a pendulum that takes 2.4 pi seconds to swing back and forth?1.72 ft3.05 ft38.40 ft46.08 ft Use the given data to construct a box plot and identify the 5-number summary. Eleven different second-year medical students at Bellevue Hospital measured the blood pressure of the same person. The systolic readings (mmHg) are listed below. { 130, 135, 140, 120, 130, 130, 144, 143, 140, 130, 150 } Christianity arose from the teachings ofJesusMosesthe apostlesthe disciples 5. What is pretexting? How is this used? please help!! any help is appreciated what is the length of a 135 arc Identifying a proportion Which proportion resulted in the equation 3a = 7b what do hand made quilts symbolize in "Everyday Use"? A game is played using one die. If the die is rolled and shows 1, the player wins $5. If the die shows any number other than 1, the player wins nothing. If there is a $1 charge to play the game, what is the games expected value? Find the total amount of heat Q lost through a wall 10 by 18, with R value from q. 1. Inside temperature is 70F while outside is 45F.