What is computer science - problem solving
Ten digits - Human
0 1 2 3 4 5 6 7 8 9
Two digits - Computer
[ | |
{ | |
"name": "Dağılcak Tabiat Parkı", | |
"city": "Adana", | |
"size": "2.6" | |
}, | |
{ | |
"name": "Karataş Tabiat Parkı", | |
"city": "Adana", | |
"size": "29.8" |
/*************************************************************************** | |
* ozansulukpinar * | |
* * | |
* Writing Basic SQL Queries * | |
* Thurs Feb 25 23:50:00 2021 * | |
***************************************************************************/ | |
-- ========================================================================= | |
-- Select all of the columns in a table using the * | |
-- ========================================================================= |
[ | |
{ | |
"id":"1", | |
"name":"New Year's Day", | |
"date":"January 1", | |
}, | |
{ | |
"id":"2", | |
"name":"National Sovereignty and Children's Day", | |
"date":"April 23", |
/* | |
** Properties of Turkish Identification Number | |
* Every Turkish citizen has unique one of it. | |
* It must consist of eleven digits. | |
* Last digit must be even. | |
* First digit cannot be zero. | |
* The sum of first, third, fifth, seventh and | |
nineth digits is multiplied by seven. The sum | |
of second, fourth, sixth and eighth digits is | |
substracted from it. When that number is |
using System.Net.NetworkInformation; | |
public class Program | |
{ | |
public static void Main() | |
{ | |
Ping ping = new Ping(); | |
PingReply reply = ping.Send(IPAddress,1000); | |
string status = reply.Status.ToString(); | |
Console.WriteLine(status); |
//This script converts Roman numerals to decimal between I(1) to MMMCMXCIX(3999) | |
var numeral = "romanNumeral"; | |
convertFromRoman(numeral); | |
function convertFromRoman(numeral) { | |
var numbers = []; | |
var previousNumber, currentNumber, sum, equalityTime, repeatedTimeOfV, repeatedTimeOfL, repeatedTimeOfD; | |
sum = repeatedTimeOfV = repeatedTimeOfL = repeatedTimeOfD = 0; |
using Newtonsoft.Json.Linq; | |
using System.IO; | |
using System.Net; | |
namespace SampleProject.Core.Business.Gateway | |
{ | |
public class DynamicLinksGateway | |
{ | |
public string ShortLink(string longUrl) | |
{ |
using System.Net; | |
private string GetBase64StringForImage(string url) | |
{ | |
string base64string = ""; | |
if (url != null) | |
{ | |
try | |
{ |
[ | |
{ | |
"id": 1, | |
"name": "Adalar", | |
"population": "16.033", | |
"area": 11 | |
}, | |
{ | |
"id": 2, | |
"name": "Arnavutkoy", |