Programming
languages
def SkillShow(): x = "This is a" y = "Simple python script" return x + y print(SkillShow)
public class SkillShow{ public String SkillShow(){ String x = "This is a"; String y = "Simple java program"; return(x + " " + y); } public static void main(String[] args){ System.out.println(SkillShow); } }
using System; public class SkillShow { public static void Main() { string x = "This is a"; string y = "Simple C# program"; Console.WriteLine(x + " " + y); } }
#include <iostream> #include <string> using namespace std; string SkillShow() { string x = "This is a"; string y = "Simple C++ program"; return x + " " + y; } int main() { cout << SkillShow() << endl; return 0; }
CREATE TABLE Skills ( ID INT PRIMARY KEY, Description VARCHAR(50) ); INSERT INTO Skills (ID, Description) VALUES (1, 'This is a Simple SQL script'); SELECT * FROM Skills;