Computer Science, asked by Saanvi2009Shetty, 5 hours ago

Explain how to convert BINARY NUMBER to DECIMAL NUMBER​

Answers

Answered by thakurriddhi55
0

Answer:

https://www.wikihow.com/Convert-from-Binary-to-Decimalhttps://www.wikihow.com/Convert-from-Binary-to-Decimal

u will understand I hope

Answered by holmtheditto
0

Answer:

Python: int(binary, 2)

JavaScript: parseInt(binary, 2);

C#: Convert.ToInt32(binary, 2);

Java: Integer.parseInt(binary, 2);

Explanation:

Similar questions