GET I.T. DEPARTMENT FOR LESS GET I.T. DEPARTMENT FOR LESS GET I.T. DEPARTMENT FOR LESS GET I.T. DEPARTMENT FOR LESS GET I.T. DEPARTMENT FOR LESS GET I.T. DEPARTMENT FOR LESS
C++ is The New Programming Language of Computing!!

Archive

Development

C++ is The New Programming Language of Computing!!
C++ is The New Programming Language of Computing!!

C++ is the most frequently used programming language by developers and designers. As it is compiled and free-form, it is used to create GUI’s and API’s and all other platforms. Considered as the easiest intermediate level language, C++ is best known to provide a high probability, and essential, objective-focused and standard programming features.  As it includes basic and advanced language.. Read more

JavaScript and its Libraries: Makes Your Browsing Experience Outstanding!!
JavaScript and its Libraries: Makes Your Browsing Experience Outstanding!!

The most dynamic computer programming language that is getting famous with each passing day is JavaScript. It is frequently used as an integral part of web browser and its implementation facilitates client-side scripts to interrelate with the customer, converse asynchronously, run with a browser and modify the displayed content. It also supports in game improvement, server-side programming and the development.. Read more

How To Handle Data Storage Problem with HTML5
How To Handle Data Storage Problem with HTML5

  Everyone active on the internet is aware of terms “online” as well as “offline”. There is a reason why both these terms are of great importance while working on the internet. In every individual’s life, there comes a time when they do not want to share their activities with the online world and hence they prefer to go offline… Read more

Label_Better.js – The Best Way To Label Your Input Fields In Web Forms
Label_Better.js – The Best Way To Label Your Input Fields In Web Forms

Ever since web designing came into existence, input fields as well as forms have been an inseparable part of all websites. At one point or the other, every website on the internet today makes use of forms and input fields. It is a known fact that HTML is widely used in the creation of a website, but with the introduction.. Read more

C Program To Predict The Gender of A Person With Name
C Program To Predict The Gender of A Person With Name

This program predicts the gender of a person with his/her Name logic: This program compares the last characters of the string with names Program : #include<stdio.h> #include<string.h> int main() { char s[100],c; m: system(“cls”); b: printf(“enter the name (in lower case) :”); scanf(“%s”,s); if(strlen(s)>=3) { if(s[strlen(s)-1]==s[strlen(s)-2]) { printf(“nnenter a valid namenn”); goto b; } if(s[(strlen(s))-1]==’i’||s[(strlen(s))-1]==’u’||s[strlen(s)-1]==’a’||s[strlen(s)-4]==’d’||s[strlen(s)-1]==’i’) { printf(“nn%s is female”,s); }.. Read more

Java String ReplaceAll Example
Java String ReplaceAll Example

In this example we are going to see how to use replaceAll String class API method. With replaceAll, you can replace all character sequences and single characters from a String instance. As you know, String objects are immutable. This means, that every time you try to change its value, a new String object is created, holding the new value. So.. Read more

1 5 6 7 8