0
What are c++ and html
Language, Explanation: these are programming languages
4 Answers
0
not so: html is a markup language
0
C++ is a compiled and object-oriented (for more info: https://en.wikipedia.org/wiki/Object-oriented_programming) programming language.
It is a programming language because it can define logic and so is used to write algorithms. It can handle complex decision making (i.e. you can write conditional statements, loops, functions etc) & mathematical calculations.
Also, it provides well-defined syntax and semantics (helpful for the coder).
HTML is a MARKUP language because it describes, both to humans & computers, the structure and presentation of content (in web page).It use tags to "mark up" parts of text, identifying elements such as headings, images,buttons etc. In simple terms, it tells the browser what the content is (like is it a heading or a button?) but NOT how to handle it (i.e. HTML has no logic processing,loops,functions, variables, conditional statements etc.)
To avoid confusion, note that HTML can work with other technologies. So,JavaScript is not a part of HTML. JS is a programming language.
0
C++ is a programming language
Html is a markup language
think of c++ as the logic section of a software...
while html is the viewable structure of a software... how the elements are built etc
0
C++ is an object-oriented programming language, and html is a markup language .