IDEs: Programming languages and Integrated Development Environments: Computer Science: GCSE (9:1)

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/12

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

13 Terms

1
New cards

Integrated Development Environment

A program used to create software. It includes tools to help programmers, usually including an editor, error diagnostics, a runtime environment and translators

2
New cards

Translator

The facility in an IDE that converts high-level code to machine code, it can be an interpreter or a compiler

3
New cards

Auto-Complete

A facility of the editor in an IDE which suggests the rest of an instruction being typed, to help speed up development

4
New cards

Error diagnostics

IDE facility which gives additional information on an error to help the developer debug the code.

5
New cards

Editor

The feature of the IDE where code is written. It often colour codes the text, highlights syntax errors and allows easy indenting

6
New cards

Run-time environment

The IDE facility which runs the program, it usually allows line-by-line execution and tracing of variables, to debug logic errors

7
New cards

Breakpoint

A feature of an IDE that sets a place in the code where execution stops, so you can check the variables at that point, to debug logic errors

8
New cards

Stepping

Executing code line by line, while checking the variables. Most IDEs provide this feature to assist debugging

9
New cards

Debugging

Fixing errors in code, made easier by an IDE with features to help the programmer

10
New cards

Text editor

Code can be written in a simple one of these, but the programmer would have to do all his own syntax checking, translating, running and debugging without help from an IDE

11
New cards

IDLE

The basic IDE provided with Python, it includes a code editor with colour coding, syntax checking, breakpoints, stepping and a run-time environment

12
New cards

Visual Studio

Microsoft's IDE for building programs for Windows or any operating system that supports the Microsoft .NET Framework

13
New cards

Eclipse

An open source IDE built for Java but now supports Python, C++ and many more languages