Answer: Compiler translates high level source program into a equivalent target program (machine language).
An interpreter implements a virtual machine whose "machine language" is the high-level programming language. The interpreter reads statements in that
language more or less one at a time, executing them as it goes along.
Explanation:
give brainliest please
9251.44 or 231286/25 or 9251(11/25)
0.36*6*200*21.44-10.64
becomes
9262.08-10.64
gives you the result
Virus is created by some dishonest people.
Virus iis not made for open source software
The basic purpose of a google calendar is basically the same as a regular calendar. it is used to keep track life's important events all in one place.
Answer:
B. a tag
Explanation:
In the structure definition given below:
struct Employee
{
string name;
int idNum;
};
Employee corresponds to the tag of the structure. The tag is used to create additional instances of the structure. For example:
struct Employee e1;
struct Employee e2;
name and idNum are members of the Employee structure and are referenced using the dot notation. e.g.,
struct Employee e1;
e1.idNum=1;