The word "semantics" means the interpretation of the meaning of a word or sentence. So if someone says you are just with semantics they are probably trying to tell you that you are avoiding the ...
The word ‘semantic ‘as an adjective simply means ‘meaningful’ which is very related to the word 'high level' in computer science. For instances: Semantic data model: a data model that is semantic, that is meaningful and understood by anyone regardless of his background or expertise. C++ is less semantic than Java, because Java uses meaningful words for its classes, methods and fields ...
TL; DR In summary, syntax is the concept that concerns itself only whether or not the sentence is valid for the grammar of the language. Semantics is about whether or not the sentence has a valid meaning. Long answer: Syntax is about the structure or the grammar of the language. It answers the question: how do I construct a valid sentence? All languages, even English and other human (aka ...
but what does it mean in terms of computer jargon? Essentially the same thing. Example: x = 5; The above is the syntax (representation). The meaning (i.e. the semantics) of this term is to assign the value 5 to a symbol (variable, whatever) called x. Different languages offer different syntaxes to provide the same semantics. For example, the above assignment would be written as x := 5; in ...