What programs are considered compilers?
C, C++, Java and C#
What programs are considered Interpreters?
Python, Javascript and MATLAB
What program runs statements one at a time?
Interpreter
A high level program is known as?
Source code
What program language is first converted into executable, then un?
A compiler
What does statically typed mean?
The variable can not change while they program is running.
What does dynamically typed mean?
The varaible’s type can change while the prgram is running
In statically typed code if the variable is an integer than becomes 3.14 what is it considered and why?
It stays a integer because statically typed will ignore the .14 which usually would make it be considered a float.
Can you assign integers with a string ie. numPeople = Hello There when using statically typed language?
No, because integer with a string is not supported.
What is the benefit of markup language?
It allows the developer to describe the documents context and formatting.
An HTML file is typically compiled into an executable file, which can then be run?
An HTML file is not a program, so is not compiled or run.
What is a library?
pre-written functions that complete common task.