
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Karthikeya Boyini has Published 2193 Articles

karthikeya Boyini
45K+ Views
To convert an integer to string in C#, use the ToString() method.Set the integer for which you want the string −int num = 299;Use the ToString() method to convert Integer to String −String s; int num = 299; s = num.ToString();ExampleYou can try to run the following code to convert ... Read More

karthikeya Boyini
75K+ Views
Convert a string representation of number to an integer, using the int.TryParse() method in C#. If the string cannot be converted, then the int.TryParse() method returns false i.e. a Boolean value.Let’s say you have a string representation of a number.string myStr = "12";Now to convert it to an integer, use ... Read More

karthikeya Boyini
56K+ Views
FloatFloat is a datatype which is used to represent the floating point numbers. It is a 32-bit IEEE 754 single precision floating point number (1-bit for the sign, 8-bit for exponent, 23*-bit for the value. It has 6 decimal digits of precision.Here is the syntax of float in C language, ... Read More

karthikeya Boyini
59K+ Views
Turtle is a special feature of Python. Using Turtle, we can easily draw in a drawing board.First, we import the turtle module. Then create a window, we create a turtle object, and using the turtle() method we can draw on the drawing board. Some turtle method METHOD PARAMETER ... Read More

karthikeya Boyini
33K+ Views
FunctionA function is a block of code to carry out a specific task, will contain its own scope and is called by name. All functions may contain zero(no) arguments or more than one arguments. On exit, a function can or can not return one or more values.Basic function syntaxdef functionName( ... Read More

karthikeya Boyini
34K+ Views
Huffman coding is a lossless data compression algorithm. In this algorithm, a variable-length code is assigned to input different characters. The code length is related to how frequently characters are used. Most frequent characters have the smallest codes and longer codes for least frequent characters.There are mainly two parts. First ... Read More

karthikeya Boyini
325 Views
Did you know that you can operate your computer without using a mouse, that too with a much faster rate? Yes, you read it right. You can do that by using the keyboard shortcuts.If you’re an internet savvy, you would understand the problem of searching most of the options in ... Read More

karthikeya Boyini
188 Views
Have you remembered your first book, the first lessons as a kid? Probably you may not recall the text written over there, but one thing you can surely recall that there were attractive images of animals, vehicles, fruits, vegetables and much more, isn’t it? And what about those videos of ... Read More

karthikeya Boyini
237 Views
Facebook, a very popular social networking site, that helps you connect with people. Some of you are well acquainted with and some you don’t, still you get a chance to make new friends and we learn a lot of things, updates on latest movies’ gossip and the list goes on. ... Read More

karthikeya Boyini
495 Views
In this highly competitive world, increasing population of educated people and explosion of media and communication, selecting a career is like walking on a sharpened sword. This is so true for the IT industry, as statistically, the competition is more in this industry. There are numerous or so shall I ... Read More