Thursday, April 23, 2020

What are example of programming language?

Lulu Bukowiecki: Compiled languages: C, C++, C#, Java (semi-compiled) Interpreted languages: Perl, Ruby, Python Web languages: HTML, Javascript, ASP, Flash And a whole host of others which will probably be less useful. Recommendations? Start with Java and HTML.

Shawn Lelis: Here's an example of C#using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace AskQuestion{ class Program { static void Main(string[] args) { getInput(); } static void getInput() { Console.WriteLine("Welcome to Y!A, Ask your question"); string question = Console.ReadLine(); if (isVague(question) == true) { Console.WriteLine("Your question is too short you couldn't have given enough details!"); Console.ReadLine(); } } static bool isVague(string question) { if (question.Length { ! return true; } else { return false; } } }}...Show more

Antonia Boomershine: There are hundreds of programming languages. these are some of theme got a popularity1. C language2. C++3. C++ turbo4. Java5. Oracle6. Symbianetc......the list goes on......Show more

No comments:

Post a Comment