Introduction to Computing - Programming Language, Assignments of Introduction to Computing

Languages that are compiled before execution Languages that are interpreted before execution Languages that use an assembler

Typology: Assignments

2019/2020

Available from 03/30/2022

gwen-hermo
gwen-hermo 🇵🇭

10 documents

1 / 2

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
Languages that are compiled before execution
Programmin
g language
Sample Code
1
Java import java.util.Scanner;
public class HelloWorld {
public static void main(String[] args)
2 Objective C #import <Foundation/
Foundation.h>intmain(intargc,constchar* argv[])
{@autoreleasepool{// insert code here...NSLog(@"Hello,
World!"); }return0;
3 C++ #include <iostream>
int main() {
std::cout << "Hello World!";
return 0;
}
Languages that are interpreted before execution
Programming language Sample Code
1 Python print('Hello, world!')
2 Ruby print "Hello, World!\n"
3 JavaScript console.log('Hello World');
Languages that use an assembler
Programming language Sample Code
1 HTML <!DOCTYPE html>
<html>
<head>
1
Vision: A globally competitive university for science, technology, and environmental conservation.
Mission: Development of a highly competitive human resource, cutting-edge scientific knowledge and innovative
technologies for sustainable communities and environment.
pf2

Partial preview of the text

Download Introduction to Computing - Programming Language and more Assignments Introduction to Computing in PDF only on Docsity!

Languages that are compiled before execution

Programmin

g language

Sample Code

1 Java import java.util.Scanner; public class HelloWorld { public static void main(String[] args) 2 Objective C #import intmain(intargc,constchar* argv[]) {@autoreleasepool{// insert code here...NSLog(@"Hello, World!"); }return0; 3 C++ #include int main() { std::cout << "Hello World!"; return 0; }

Languages that are interpreted before execution

Programming language Sample Code

1 Python print('Hello, world!') 2 Ruby print "Hello, World!\n" 3 JavaScript console.log('Hello World');

Languages that use an assembler

Programming language Sample Code

1 HTML

1 Vision: A globally competitive university for science, technology, and environmental conservation. Mission: Development of a highly competitive human resource, cutting-edge scientific knowledge and innovative technologies for sustainable communities and environment.

Name of the website

Heading for the content below

Text text text

2 3 2 Vision: A globally competitive university for science, technology, and environmental conservation. Mission: Development of a highly competitive human resource, cutting-edge scientific knowledge and innovative technologies for sustainable communities and environment.