Un comerciante de régimen código para comprar mercancías gravadas a un comerciante de régimen simplificado precio de venta al público 1.800.000 incluido el IVA tarifa general (19%)

Answers

Answer 1

Answer:

El valor sin impuestos de las mercancías era de $1.512.605.

Explanation:

Dado que un comerciante de régimen código para comprar mercancías gravadas a un comerciante de régimen simplificado pagó un precio de venta al público 1.800.000 incluido el IVA tarifa general (19%), para determinar el valor de las mercancías sin el impuesto incluido se debe realizar el siguiente cálculo:

1.19 = 1.800.000

1 = X

1.800.000 / 1.19 = X

1.512.605 = X

Por lo tanto, el valor sin impuestos de las mercancías era de $1.512.605.


Related Questions

How can learning opportunities for AI be extended to all

Answers

Answer:

Learning opportunities for AI can be extended to all through the inclussion of courses and different teaching methods related to Artificial Intelligence, new technologies, computer science, programming and, in short, everything related to the digital world, in the educational plans at the national level. This is so because artificial intelligence and computer systems are the basis for the development of the new tools jobs of tomorrow. Thus, education in these subjects is essential so that citizens can enter the labor market once they acquire the necessary age, having the knowledge to do so in a proper way.

Claudette is shocked to discover that her company's data has been stolen, and their Web site shut down, by a malicious ex-employee. She had thought their security was airtight! Two recent changes they made were migrating their database to a private, on-premises cloud and installing IoT devices that communicate with the database continually. What most likely occurred

Answers

Answer:

The answer is "Ex-employee hack IoT firms from Claudette to access them".

Explanation:

Computer system hacking is only a breach between both the access as well as the stealing or misuse of critical information between both computer software from the target system. In this sense, a malicious attacker uses a computer device or even a network to access or illicitly exploit information.

Fred is explaining to their client, Foodoko, that the user journey is a complex one when it comes to creating a conversion. Which phases of the user journey does what's described as the "messy middle" include?

Answers

Answer:

The answer is "The exploration and evaluation phase".

Explanation:

The expedition is a trip or an exploration. The deep-sea trip to find new sea lives is an instance of a journey of discovery. That's the search or travel via a site to find information and resources; exploring takes place throughout all non-sessile animal species, including humans. This is also an exploration.

The assessment design is the period of the marketing funnel wherein clients decide not whether they intend to buy that product. This is the time in ABM advertising whenever the sales department works closely with decision-makers to guide & close a sales process.

what is the decimal value for the jump control?

Answers

Answer:

24

Explanation:

11000 is equivalent to 24 because if you look at a flippy do, the base is 2. so going from right-left, 2^0 is 1 for the first 0. second zero would be 2^1 which is 2. then the third zero is 4 (2^2). since they are zero’s, they are turned off, but the 1’s indicate that those bases are turned on. the first one going from right to left would then be 8 (2^3) and the last 1 going from right-left is 16 (2^4). so 16+8=24!

edit: didn’t mean to rate myself 1 star lol

PLEASE HELP WITH MY COMPUTER
this thing is popped up and it's annoying. I'm on a HP laptop how do i get rid of it?​

Answers

Answer:

Escape or turn it off then back on??

Explanation:

I'm not very sure what is going on but idfk

You want to use a computer to make a painting of your backyard to go along with a story you wrote. Which software would be appropriate? Choose all that apply.
Adobe Photoshop
LibreOffice Calc
LibreOffice Draw
Internet Explorer
GIMP

the answer is A, C, E

Answers

Answer:

A, C, and E

Explanation:

I did the math

What is a ternary operator? Explain with the help of an example.
The ternary operator deals with three operands. It is also known as a conditional operator. In this operator, the value of the variable depends on the logical expression.
Example:
int a = 5:
int b = 3;
int max = (a > b)? a : b;​

Answers

Answer:

A ternary operator, also called a conditional operator, is a special kind of operator used in some programming languages as a shorter way of writing an if..else block. It is denoted by a question mark and then a colon (? : ). It takes 3 operands:

i. A boolean expression which would evaluate to a true or a false.

ii. A first value that will be assigned if the boolean expression gives a true.

iii. A second value that will be assigned if the boolean expression gives a false.

The general format is:

variable = boolean expression ? first_value : second_value;

For example:

A ternary expression can be written as;

String f = (3 > 5) ? "yes" : "no";

In the above expression;

The boolean expression is 3 > 5

The value to be assigned, to f, if the boolean expression is true is "yes"

The value to be assigned, to f, if the boolean expression is false is "no"

So in this case, since (3 > 5) evaluates to false, "no" will be assigned to f.

Therefore, the above expression will give the same result as;

String f = "no"

Another example:

=================

int a = 5:

int b = 3;

int max = (a > b)? a : b;​

==================

In the above code snippet,

Since a > b i.e 5 > 3, the first value a (which is equal to 5) will be assigned to max.

Therefore, int max = 5.

The value of max is 5

PS:

These examples and explanations are given using Java. Similar scenario, maybe different syntax, will be obtainable in other programming languages.

A cycle merchant allows 15% discount on the marked price of a bicycle and still he makes a profit

of 20%. Write a program to calculate Marked price and Cost price of cycle if the he offers Rs. 600 as

discount to the customer.
in java program
please do it​

Answers

Answer:

The program in Java is as follows:

public class Main{

public static void main(String[] args) {

 double discount_percent = 0.15;

 double discount_amount = 600;

 double profit = 0.20;

 double marked_price = discount_amount/discount_percent;

 double cost_price = marked_price/(1 + profit);

 System.out.println("Marked Price: "+marked_price);

 System.out.println("Cost Price: "+cost_price);

}}

Explanation:

For explanation purpose, let

[tex]MP \to[/tex] Marked Price

[tex]\%D \to[/tex] Percentage discount

[tex]D \to[/tex] Discounted amount

[tex]\%P \to[/tex] Percentage Profit

[tex]C \to[/tex] Cost Price

The marked price (i.e. selling price) is calculated discount using:

[tex]MP = \frac{D}{\%D}[/tex]

The derived formula of the cost price from percentage profit and Marked Price is:

[tex]C = \frac{M}{1 + \%P * 100}[/tex]

So, the explanation is as follows:

The next three lines declare and initialize the given parameters

 double discount_percent = 0.15;

 double discount_amount = 600;

 double profit = 0.20;

Calculate marked price

 double marked_price = discount_amount/discount_percent;

Calculate cost price

 double cost_price = marked_price/(1 + profit);

Print marked price

 System.out.println("Marked Price: "+marked_price);

Print Cost price

 System.out.println("Cost Price: "+cost_price);

The average numbers of shares a piece of content receives is known as its:

Answers

Answer:

Amplification.

Explanation:

Social media publishing can be defined as a service that avails end users the ability to create or upload web contents in either textual, audio or video format in order to make them appealing to a target audience.

Thus, these web contents are generally accessed by end users from time to time through the use of various network-based devices. As users access these contents, they're presented with the option of sharing a particular content with several other people a number of times without any form of limitation.

Hence, the average numbers of shares a piece of content receives is known as its amplification. The higher the average numbers of shares a particular content receives, the higher the number of traffic it generates for its publisher.

Write your first impression of the Lamborghini Miura.

Answers

Answer:

Nice car, You'd probably get a lot of looks driving it

Explanation:

Answer:

It's looks like a pancake flatted Porsche

Explanation:

Select the correct answer.
What type of media is/are only used for one-time backups?
A.
internal hard disk
B.
external hard disk
C.
DVD, optical media, and removable media
D.
remote shared folder
E.
tape

Answers

Answer:

E

Explanation:

Answer:

It's D I promise

Explanation:

i did it! D is right


Calvin needs to design a simple yet professional interface for his users. Which option should he implement?

Answers

Answer:

switchboard

Explanation:

The option that he should implement would be a switchboard interface design. These design structures for graphic user interfaces use a single main page, large icons/buttons, a fixed navigation menu, and all the necessary functionality right in front of the user. This design is made with simplicity in mind in order to make it as easy as possible for a new user to pick up and efficiently and intuitively navigate the user interface. Therefore, since Calvin needs a simple yet professional design, this would be the best implementation.

Answer:

switchboards is the correct answer

Explanation:

just did the test

F1: 2^14 formula ....................................................................

Answers

Answer:

=POWER(2,14)

Explanation:

The complete question is to write the given formula in cell F1

We have:

[tex]F1 = 2^\wedge {14}[/tex]

The above formula implies 2 raised to the power of 14.

In Excel, this can be achieved using the power function

And the syntax is:

=POWER(m,n)

which means m^n

So, 2^14 will be entered in cell F1 as:

=POWER(2,14)

true or false: erosion takes very long to happen.​

Answers

the answer is true. erosion takes place over time

Answer:

True

Explanation:

By definition, erosion is the gradual destruction or diminution of something.

1) Erosion can take many forms

2) The 3 main types of erosion are water, wind, and ice

3) The process of erosion can take up to thousands of years

4) Erosion affects humans because it creates dust that pollutes the air and on average carries around 20 different diseases including anthrax and tuberculosis

Which of the following statements holds true for the term plug-in? Group of answer choices It refers to a program (typically a marketing effort) that requires customer consent. It refers to a program that enrolls all customers by default, but that allows consumers to discontinue participation if they want to. It refers to the generation of bogus clicks, either for financial gain or to attack rivals by draining their online ad budget. It refers to a small computer program that extends the feature set or capabilities of another application. It refers to recruiting a network of users with the goal of spreading IP addresses across several systems.

Answers

Answer:

it refers to the generation of bogus clicks, either for financial gain or to attack rivals by draining their online ad budget

Explanation:

A plugin can be regarded as piece of software which serve as an add-on to a web browser, it provides the browser with additional functionality. It's functionality give room to a web browser so that the web can display additional content that was not designed to display originally. It should be noted that plug-in refers to the generation of bogus clicks, either for financial gain or to attack rivals by draining their online ad budget

write any two web browers​

Answers

Answer:

G00gle and bing

Explanation:

chnology
Submit Test
Reader Tools
35
Select the correct answer.
For an entry-level worker in the web and digital communications pathway, which educational qualification would be needed to move to the
position of a multimedia designer or web developer?
A. high school diploma
B. certificate diploma
C. associate's degree
D.
doctoral degree
E.
bachelor's degree
Undo
Next

Answers

Answer:

Option B

Explanation:

For an entry level worker in the web and digital communications pathway, a certificate course is only required.

Graduation, post-graduation and doctoral degrees are required for higher roles and research works.

Hence, option B is correct

What is a variable in programming?
1) A symbol or set of characters in a programming statement whose value can
be changed
2) A symbol in a mathematical equation
3) The characters that make up a string
4) The output when code is printed

Answers

A symbol or set of characters in a programming statement whose value can be changed

HELP PLS 10 MINUTES LEFT!! In this unit you have learned about ways to be faster at word processing. In 3 to 4 sentences, describe one or two skills
you have learned that will make you faster at word processing.​

Answers

Answer:

The answer is below

Explanation:

There are many skills I have learned which have made me faster at word processing, some of which are:

1. Copying, Cutting, and Pasting: in word processing, one can easily copy or cut words, sentences, paragraphs within a word document and pasted them somewhere else, either inside the same word document or another word documents entirely. This made the work faster as I wouldn't need to re-type all over again. To do this, I can use either the in design key combinations like Ctrl+C for copying, Ctrl+X for Cutting, Ctrl+P for pasting.

2. Spelling and Grammar Check: while the word processing app (Microsoft word) has a way of notifying users of errors concerning grammar and spelling, instead of rewriting or looking for the correct spelling or grammar, I can quickly use the inbuilt function in the Microsoft word to check and make the correction. To do this, I can right-click the mouse on the error, and select the appropriate spelling or grammar

How many values can a binary digit store?
A
A binary digit can store two values at a time.

B
A binary digit can store ten values at a time.

C
A binary digit can store one of two values (0 or 1).

D
A binary digit can store one of ten values (0-9).

Answers

Answer:

A.) A binary digit can store two values at one time

Explanation:

A single bit can only represent two different values. That's may not be very much, but that is still enough to represent any two-valued state.

Which computer specifications would be best suited for the following scenario? The marketing department wants to buy two new computers. One computer will be used for their graphic artist to create graphics and videos for the Web, and a second one for the secretary to keep track of billing and hours. What would you advise the department to purchase? Two computers with identical specifications A computer with a high-capacity CMOS RAM chip for the graphic artist and a computer with multiple sockets for the secretary A computer with a large power supply for the graphic artist and a computer with multiple internal buses for the secretary A computer with a multicore, high-speed processor for the graphic artist and a computer with a slower processor for the secretary

Answers

Answer:

A computer with a large power supply for the graphic artist and a computer with multiple internal buses for the secretary.

You just learned how search, wikis, commerce, and news have changed as a result of technology. Pick a search engine, wiki, online business, or news outlet, and write a response that: Describes how this innovation works Describes how this innovation inputs, transforms, and outputs data Lists one existing or potential benefit (to society, the economy, a group of people, culture) of this innovation Lists one existing or potential harm (to society, the economy, a group of people, culture) of this innovation Compares the existing technology to tools that were previously used to accomplish the same task

Answers

Answer:

Search Engines

Explanation:

Search Engines are incredibly innovative technology. They allow us to search for absolutely anything and gives us all the information that exists surrounding that topic in a matter of seconds. This has helped every single individual with access to a search engine regardless of the industry or reason of use. Even though this access to instant knowledge has endless benefits it can also cause harm. Since anyone's information can be displayed for anyone to see and easily found through a search engine. It ultimately falls down to what the user's intentions are with the data available, which can sometimes be malicious. Previously the only way to access information was through books at a library which could take days, weeks, or even months to find the information that you initially needed. Search engines completely changed this.

What are your thoughts about this re-designed Logo? Is it good? Or is poorly designed? Explain your answer below.

Answers

Answer:

It is good but the back is not good enough.

waluigi for smash who agrees ​

Answers

Answer:

I do

Explanation:

Well, if i didnt, i wouldn't be part of the internet, now would I?

(can i get brainliest? pls?)

totally i agree-even tho i dont really play anymore

A goal should be___.

A difficult to achieve

B an undefined dream

C simple

D realistic

Answers

Answer:

D

Explanation:

so its D you should always make a goal realistic to you dont over go overboard and bite off to much to chew but push yourself. lastly make it fun

Hope I helped

-scav

Write the output of the following program:

CLS

a=20

FOR x = 1 to a

IF x MOD 2 < > 0 THEN

S S+x

END IF

NEXT X

PRINT S

END​

Answers

Answer:

Expression A

Explanation:

In this Pseudocode, the output would be 100. This is because the code is looping from 1 to 20 and adding together all of the odd numbers between 1 and 20. Since it is checking to make sure that the remainder of each number is not equal to 0 which would indicate an odd number, and if it is odd then it adds it to the variable S. Therefore, the odd numbers between 1 and 20 are the following...

1 + 3 + 5 + 7 + 9 + 11 + 13 + 15 + 17 + 19 = 100

In a voice over IP setup (VoIP), what kind of device converts signals from a campus's analog phone equipment into IP data that can travel over a phone company's analog telephone lines

Answers

Answer:

VoIP gateway

Explanation:

A VoIP stands for the voice over IP. The VoIP gateway is defined as a hardware device which is used to convert the telephony traffic into the packets of data that is used for transmission over the internet. It acts as the bridge and connects the VoIP with the worlds of the legacy telephony.

In a VoIP setup, the signals form the analog phone of the campus equipment  are converted to the IP data which can travel over the analog telephone lines of the phone company.

Multiple
Choice
What will be the output?
class num:
def __init__(self,a):
self. number = a
def_mul__(self, b)
return self.number + b.number
numA = num(5)
numB = num(10)
product = numA * numb
print(product)
50
O 5
an error statement
15

Answers

Answer:

15

Explanation:

Edge 2021

100 POINTS
When the Find and Replace dialog box is open to the Replace tab and you want to replace an underlined phrase, how can you access the dialog box that lets you tell Word to find the underlined instances of the phrase?
Select the phrase in the “Find what” field, then click More, then click Format, and then click Font.
Select the phrase in the main document, then click Spelling and Grammar, and then click AutoCorrect.
Click the “Replace with” field, then click Options, then click Special, and then click Symbols.
Click the Go To tab, then click Styles, and then click Find Styles.

Answers

Answer:

Select the phrase in the “Find what” field, then click More, then click Format, and then click Font.

Explanation:

Just the right answer

Why do you think there is a difference between good, clean designs compared to the bad, cluttered designs below?.

Answers

Answer:

Good, clean designs depicts the logic link of the company and easy to remember as compared to the bad, cluttered designs

Explanation:

The major difference between the good, clean designs and the bad, cluttered designs is that the good, clean designs depicts the logic link of the company and it is easy to remember such symbols but in case of bad, cluttered designs it is not that easy to find the logic link and also it is difficult to remember the logo.

Other Questions
Use properties of multiplication to show why 4 x 50 = 8 x 25. Enter your answers in the boxes. 4 x 50 = 4 x x 25) = (4 x 1) x 25 = D) x 25 Complete the sentence. A substance that is more basic has a___pHthan a substance that is acidic. *the samehigherlowernone of the above HELP MEEEeeeeeEEEEEEEEEEE Write 5,890,000,000 in scientific notation. EN LA CIMA DE UN FARO DE 7 m DE ALTO SE OBSERVA UNA LANCHA CON UN ANGULO DE DEPRESIN DE 12 GRADOS. CALCULAR LA DISTANCIA ENTRE LA LANCHA Y EL PIE DEL FARO 1. what can you say about the values you demonstrate after your performance? 2. which values you need improvement? what can be done to improve it? Please help me rn)$:$:$3$$3 plzzzz identify and brief explain the two basic type of switching Where did the carbon in all living things come from?(A) It was made in stars that lived before the solar system formed.(B) It was made in the formation of the solar system.(C) It was made during the big bang.(D) It was produced by cyanobacteria. on what factors, current sensitivity voltage sensitivity ofa galvanometer depend? PLEASE HELP THIS IS VERYYYY IMPORTANT PLEASE I WILL GIVE U BRAIN THING IF ITS CORRECT AND NOOO LINKS PLEASEEEEEEEE Please help!! Thanks in advance!! NO links!!Kallan will spin each spinner one time. What is the probability that the first spinner will land on a number greater than 7 and the second spinner will land on blue? If there were 125 students in 5 busses how many were in 1 bus? Define conscription. Which members of Society did conscription fall most heavily on? Why? What angle is not coterminal with -53 help plsssssssssssssssssssss Please help!! Someone answered this already as a joke, I seriously need help on this WHOEVER ANSWERS BOTH QUESTIONS FIRST WILL GET MARKED THE BRAIN THINGY (I'll also check to see if you were right or not)PLEASE HELP ASAP!!!!!!!!! (I know that one is already answered I'm just not sure if its right or not) What is the percent for 220 what was the purpose of the fall of france?