This tutorial covers SQL Data Types in detail. Computer programs deal with data. Data has various forms. For example, Name – Text string Age – Numeric Date Of Birth – Date Data Type is a classification of data to inform compilers/interpreters how the data is intended to be used within the program. Programming languages deal […]
SQL Basics – What is Structured Query Language?
This section is to introduce you to the SQL Basics. SQL is the standard query language designed for relational database operations. At the end of this article, you will get a brief and clear understanding on what is SQL? This post addresses following topics, Introduction To SQL Why SQL? What SQL Can Do? SQL Processing […]
Convert Int List to String List in C#
Generic collection List has methods for dealing with internal data of the collection.One of the methods of List , ConvertAll() along with lambda expression can be used for converting List to List. Convert List to List in C# var intList = new List {1, 2, 3, 4, 5}; //Using lambda expression along with ConvertAll() var […]
Check Whether Two Strings are Anagrams in C#
Words are called anagrams of if they all share the same set of letters to form the respective words. Example: Dealer –>Leader, POT–> Top –>Opt , Dear –> Read In this post, I am giving the sample code to check whether two words are anagrams Anagrams Check in C# /// <summary> /// Determine if the two strings are […]
Check if a String is Palindrome in C#?
Palindromes are strings that if read in both directions will be the same. Eg:- Malayalam, Civic In this C# coding example, we will check whether a given string is Palindrome or not using C# language. So, how can we check whether a string is a palindrome in C# or any other programming language? There are […]
Accent -Microsoft Literacy tool teaches language skills in a browser
Microsoft targets to support deprived sections of society to gain literacy in their native language. For this Microsoft has joined hands with the non-profit organisation CHOICE Humanitarian. Together they are planning to launch a new literacy tool called Accent for Microsoft’s Internet browser Edge. This Web-based education tool will firstly be introduced in Guatemala to […]