Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

1) What is a Compiled and what is and Interpreted language? 2) What are flow cha

ID: 3905696 • Letter: 1

Question

1) What is a Compiled and what is and Interpreted language? 2) What are flow charts and why use them? 3) What levels of programming Language would you rather use, and why? 4) What is a CLI, How is it still used to write and compile programs ? 5) What is the Purpose of an IDE? 6) What is an Methodology, Why Use an SDLC, What are the top 5 SDLC's? 7) What are 5 essential windows in an IDE? (Did you read this lecture?) 8) What is the latest release of C++, what is it called and when was it released? 9) What is the Hierarchy of Programming Languages? 10) List 4 other industries that use Life Cycles, which do they usel?

Explanation / Answer

1)Answer:

Compliled language:

A compiled language is a programming language whose implementations are typically compilers (translators that generate machine code from source code), and not interpreters(step-by-step executors of source code, where no pre-runtime translation takes place).

The term is somewhat vague. In principle, any language can be implemented with a compiler or with an interpreter. A combination of both solutions is also common: a compiler can translate the source code into some intermediate form (often called p-code or bytecode), which is then passed to an interpreter which executes it.

Interpreted language:

An interpreted language is a type of programminglanguage for which most of its implementations execute instructions directly and freely, without previously compiling a program into machine-language instructions.

2)Answer:

Flowcharts:

A flow chart is a type of diagram representing a process using different symbols containing information about steps or a sequence of events. Each of these symbols is linked with arrows to illustrate the flow direction of the process

Flowcharts are a methodology used to analyze, improve, document and manage a process or program. Flowcharts are helpful for:

A flowchart in computer science typically has the following types of symbols to represent a process or program:

Flowcharts are commonly used in developing business plans, designing algorithms and determining troubleshooting steps. Many software programs are available to design flowcharts. Some of the commonly used software programs are SmartDraw, Visio (designed for PCs) and OmniGraffle (designed for Macs).

5)Answer:

IDE:

An Integrated Development Environment (IDE) is an application that facilitates application development. In general, an IDE is a graphical user interface (GUI)-based workbench designed to aid a developer in building software applications with an integrated environment combined with all the required tools at hand.

Most common features, such as debugging, version control and data structure browsing, help a developer quickly execute actions without switching to other applications. Thus, it helps maximize productivity by providing similar user interfaces (UI) for related components and reduces the time taken to learn the language. An IDE supports single or multiple languages.

The concept of IDE evolved from simple command based software which was not as useful as menu-driven software. Modern IDEs are mostly used in the context of visual programming, where applications are quickly created by moving programming building blocks or code nodes that generate flowchart and structure diagrams, which are compiled or interpreted.

Selecting a good IDE is based on factors, such as language support, operating system (OS) needs and costs associated with using the IDE etc.