#include <iostream> using namespace std; int main() { cout<<"Hello World!"; return 0; }
var http = require('http'); var server = http.createServer(function(req, res) { res.writeHead(200); res.end('Hello Http'); }); server.listen(8080);
print('Hello World')
Flow chart
What is the expected output of this?
# This is comment # Computer will ignore these lines # Assign 12 to a new variable A = 12 print(A)
Start a new REPL and name it VariablesExercise
# Modify the lines of print to: Print('Value of A is:', A) Print('Value of B is:', B)