Quiz 2- editors compilers etc. Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

IDE

A

Integrated Development Environment

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Describe an IDE

A

It is a collection of software development tools, it helps programmers develop a software code
-EX: XCODE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the language computers ‘speak’

A

-MACHINE LANGUAGE
-Often made up of binary digits, computers can UNDERSTAND and RESPOND to it directly

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What two big tools do IDES consist of?

A

An editor and a compiler

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is a Program?

A

a program is a set of instructions written for a computer, it is the software code made by programers

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Editor

A

A plain text file (often pre-installed on IDEs) that a user can edit however they want, BUT IT IS NOT A CODE (???)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Compiler

A

A compiler translates the words that programers write (source code) into machine language of BINARY

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is source code?

A

Source code is the text written by computer programmers that is then translated into machine language by a compiler.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

what is source code often refered to as?

A

“The fundamental component of computer programs”

It tells the computer what to do once translated.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What are file extensions (in terms of computing)?

A

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(?????)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What are the 3 file extensions we will use?

A

.cp, .cpp, . c++
NOT: .c

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is a project?

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

If you click the x in the top left cornor of your X-CODE, what happens?

A

Nothing, just click on the app again and your work is saved

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Steps to setting up a project in X-CODE

A
  1. open x-code
  2. 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
  3. click on “C+ main” in left collum of box- will either say “hello world” or not
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

what is the significance of hello world

A

If you have correctly and successfully set up a project, that will be the code that comes up.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

When setting up a code, what do you need to tell x-code?

A

that you are setting up a file, otherwise x-code won’t run