answersLogoWhite

0


Best Answer

It means that it will basically self destruct, however my sociology professor states that the 'all that is solid melts into air' is a mis translation and that what Marx actually says is Alles Ständische und Stehende verdampft which translates to 'everything standing turns into steam'.

Meaning, Marx wasn't really going on about the ultimate downfall on the capitalist system but was making reference to (at the time of his writing) the introduction of the steam train and the locomotive revolution.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar
More answers
User Avatar

AnswerBot

1mo ago

Marx and Engels are referring to the constant change and instability brought about by the capitalist system. They suggest that traditional values, structures, and relationships are continuously being disrupted, dissolved, or destroyed in pursuit of profit and progress fostered by capitalism. The phrase reflects their critique of the destructive and transformative forces inherent in capitalist society.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: When Marx and Engels assert that All that is solid melts into air in the world created by bourgeois capitalism what do they mean?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is Better phrase for 'in which you assert'?

in which you assert


Provide syntax for assert keyword?

assert (boolean expression); Example: assert (a >= 0);


How can you write assert in a sentence?

Let me assert my position for you.


What is analogy of assert and deny?

Assert : Deny what would that analogy be?


How do you use word assert in a sentence?

The electors of the party were required to assert their allegiance. The plantiffs in the lawsuit assert that the defendant swindled them.


Put the word assert in a sentence?

Example sentence for the verb to assert: I wish to assert that I had no part in the attempted cover-up. I am not a crook!


Sentence with assert?

He used his strong voice to assert his authority over the group.


What did the Wilson administration establish in an effort to assert government control over the nations banking system?

created the federal reserve system


In an effort to assert government control over the nations banking sytem Wilson and progressive members of congress?

created the federal reserve system


How do you assert yourself in a job?

i assert myself as a hard worker, team player and dedicated to my job.


What is the adjective of assert?

assert is the verb. assertive is the adjective, assertion is the noun, assertively is the adverb.


How do you round off a number in c language?

Use the round() function in the C99 standard library. Example: #include<math.h> #include<assert.h> double x = 0.1234567; assert ((round (x * 10) / 10) == 0.10); assert ((round (x * 100) / 100) == 0.120); assert ((round (x * 1000) / 1000) == 0.1230); assert ((round (x * 10000) / 10000) == 0.12350); assert ((round (x * 100000) / 100000) == 0.123460); assert ((round (x * 1000000) / 1000000) == 0.1234570); assert ((round (x * 10000000) / 10000000) == 0.12345670);