Quiz 2- editors compilers etc. Flashcards
IDE
Integrated Development Environment
Describe an IDE
It is a collection of software development tools, it helps programmers develop a software code
-EX: XCODE
What is the language computers ‘speak’
-MACHINE LANGUAGE
-Often made up of binary digits, computers can UNDERSTAND and RESPOND to it directly
What two big tools do IDES consist of?
An editor and a compiler
What is a Program?
a program is a set of instructions written for a computer, it is the software code made by programers
Editor
A plain text file (often pre-installed on IDEs) that a user can edit however they want, BUT IT IS NOT A CODE (???)
Compiler
A compiler translates the words that programers write (source code) into machine language of BINARY
What is source code?
Source code is the text written by computer programmers that is then translated into machine language by a compiler.
what is source code often refered to as?
“The fundamental component of computer programs”
It tells the computer what to do once translated.
What are file extensions (in terms of computing)?
They are a suffix added to a files name (like .c++) that helps the computer to understand what the file is
-I am pretty sure that when you add a file extension to an editor it then becomes a code(?????)
What are the 3 file extensions we will use?
.cp, .cpp, . c++
NOT: .c
What is a project?
What we set up really slowly and took a ton of notes on in class
-FRAGILE copy of the IDE’s software tools that are adapted to the platform(hardware) we are using
If you click the x in the top left cornor of your X-CODE, what happens?
Nothing, just click on the app again and your work is saved
Steps to setting up a project in X-CODE
- open x-code
- in very upper left of comp next to “X-CODE” click “file” – a menu will come down and click “new” – a new menu will come out and click “project”
3.ASKS questions
4.click “CREATE” after customizing your file - click on “C+ main” in left collum of box- will either say “hello world” or not
what is the significance of hello world
If you have correctly and successfully set up a project, that will be the code that comes up.
When setting up a code, what do you need to tell x-code?
that you are setting up a file, otherwise x-code won’t run