
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
Sharon Christine has Published 413 Articles

Sharon Christine
327 Views
When looking at a website, the most attractive thing that catches the eye is its design and the placement of elements on the page. It looks easy to implement and appealing but the pain of designing is only known to a designer. The UI kits are available in the market ... Read More

Sharon Christine
209 Views
A career in business usually starts with searching the best business schools and programs that fit your aspirations and targets. With the help of this article you can narrow down your search for the top universities, the programs they provide and the eligibility requirements.This ranking is based on overall performance ... Read More

Sharon Christine
273 Views
There are many cloud storage providers in the market, but there is only one provider who has aimed to provide cloud storage app with improved privacy and security options – MEGA. Kim Dotcom’s cloud storage service Mega version 1.1, the official iOS app, has just got its first update with ... Read More

Sharon Christine
124 Views
The top most company in the world – Google announced on its Google+ page that the latest version of voice search command is available which is based on relationships. This voice search command enhances its voice-recognition feature and allows user to make calls, send messages, and search using voice commands.Google ... Read More

Sharon Christine
144 Views
It usually happens that when somebody is sleepy their mobile phones becomes inactive, which reflect millions of strength-full processors become idle for that interval of time. Samsung newly collaborated with University of Vienna to create a unique alarm clock app called Power Sleep. Power Sleep is a latest Android app ... Read More

Sharon Christine
265 Views
There is an old adage in early education teaching that for the first 5-6 years students learn to read, for their reminder in school they read to learn. The realities are true in comparing the illiterate to the computer illiterate, since they stem from two different sets of problems. The ... Read More

Sharon Christine
165 Views
Microsoft has officially renamed Office Web Apps as Office Online which includes the online versions of its popular Word, PowerPoint and Excel apps, using this user can find their free online experience. Also, name “SkyDrive” has become “OneDrive”. The new name doesn’t come up with lots of new features, but ... Read More

Sharon Christine
259 Views
HTML5 Geolocation API lets you share your location with your favorite websites. A JavaScript can capture your latitude and longitude and can be sent to backend web server and do fancy location-aware things like finding local businesses or showing your location on a map.The geolocation APIs work with a new ... Read More

Sharon Christine
8K+ Views
To move an item from an ArrayList and add it to the first position you need to -Get the position (index) of the item using the indexOf() method of the ArrayList class.Remove it using the remove() method of the ArrayList class.Finally, add it to the index 0 using the add() method of the ArrayList class.ExampleLive ... Read More

Sharon Christine
937 Views
The FileInputStream class contains a method read(), this method accepts a byte array as a parameter and it reads the data of the file input stream to given byte array.Exampleimport java.io.File; import java.io.FileInputStream; public class FileToByteArray { public static void main(String args[]) throws Exception { ... Read More