0% found this document useful (0 votes)
9 views15 pages

Introduction to Programming Basics

Uploaded by

info.bptrades
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views15 pages

Introduction to Programming Basics

Uploaded by

info.bptrades
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd

Programming Basic

Tr. Pwint Phyu Shwe


What is Programming?
Programming

A programming language is a set of commands, instructions, and other syntax use to


create a software program.

Programming is the process of designing and building an executable computer program


to accomplish a specific computing result or to perform a specific task. <wiki>
Source Code

A source code is the details instruction written by a Programmer


to accomplish task.

Example:
Display Hello World on screen

Print(“Hello World”);
cout << “Hello World”;
File Extension
C++ .cpp

C .c

Javascript .js

Perl .pl

Java .java

C# .cs
Running your code

• Compile
• Interpret
• Sometimes Both

Source Code Machine Code


What is different between
compiled and interpreted
language?
• Compiled languages are C, C++ and Objective C

• Interpreted languages are PHP and JavaScript

• Combinations are Java, C#, and Pythons


What is Integrated Development
Environment?
Quiz

1. • IntelliSense

What is the VS Code which allow


• Code Completion
you to get code suggestion while

you are typing? • Typing Sense


Quiz

2. • .CS

What is the extension of C#


• .JS
language?

• .C
Quiz

3. • .Java

Which language does not use a


• Perl
hybrid compiler/interpreter

approach? • C++
Quiz

4. • .Java

Which language does not use a


• Perl
hybrid compiler/interpreter

approach? • C++
Quiz

• Objective C
5.

Which language is considered an • C++

interpreted language?
• C

• Javascript
Quiz

6. • appeals

Programming can be defined as:


• recommendations
converting ideas into _____ that a

computer can understand. • instructions

You might also like