In"last month, our sales rose when we increased prices by 15%, so we should raise our prices another 15% this month." the logical fallacy is Confusing a correlation for a cause-and-impact courting.
<h3>What is a logical fallacy?</h3>
A logical fallacy is a assertion that appears to be authentic till you observe the regulations of logic. Then, you recognize that it is not. Logical fallacies can regularly be used to deceive people – to trick them into believing something they in any other case wouldn't.
In many ways, the put up hoc ergo propter hoc fallacy is a particular subset of the fallacy in which a person might also additionally anticipate a causational courting from one that would simply be a wonderful correlation.
Read more about the fallacy :
brainly.com/question/1971023
#SPJ1
No i cannot bcs i dont know
Answer: TRUE! 100%
If I was helpful i would to be rated brainliest please thank you!
Explanation:
Some advantages are that you will have more control, you can quickly access documents and files, and you can easily preform more advance commands. Some downside are not GUI, you have to know exactly what to type to do the action you need, and you have to experience error codes sometimes with will need you to google what they mean
Hope this helps! And I hope to get brainliest!
Answer:
The solution code is written in Python:
- def nested_list_string(list2D):
- output = ""
- for i in range(0, len(list2D)):
- for j in range(0, len(list2D[i])):
- output += str(list2D[i][j]) + " "
-
- return output
Explanation:
Let's create a function and name it as nested_list_string() with one input parameter, list2D (Line 1).
Since our expected final output is a string of number and therefore we define a variable, <em>output</em>, to hold the string (Line 2).
Next use two for loops to traverse every number in the list and convert each of the number to string using <em>str()</em> method. Join each of individual string number to the output (Line 3-5).
At the end, we return the output (Line 7)