
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
Paul Richard has Published 66 Articles

Paul Richard
23K+ Views
In computer networks, reference models give a conceptual framework that standardizes communication between heterogeneous networks.The two popular reference models are −OSI ModelTCP/IP Protocol SuiteOSI ModelOSI or Open System Interconnection model was developed by International Standards Organization (ISO). It gives a layered networking framework that conceptualizes how communication should be done ... Read More

Paul Richard
19K+ Views
Computer networks have become invaluable to organizations as well as individuals. Some of its main uses are as follows −Information and Resource Sharing − Computer networks allow organizations having units which are placed apart from each other, to share information in a very effective manner. Programs and software in any ... Read More

Paul Richard
4K+ Views
Exponential search is also known as doubling or galloping search. This mechanism is used to find the range where the search key may present. If L and U are the upper and lower bound of the list, then L and U both are the power of 2. For the last ... Read More

Paul Richard
247 Views
The formnovalidate attribute in HTML is useful when you have a form with more than one submit button.The formnovalidate attribute overrides another attribute of the attribute, which is known as novalidate attribute. The novalidate attribute is also a Boolean attribute, but using it won’t validate the form of submission.Note ... Read More

Paul Richard
166 Views
We can convert one data types into another data type using casting. Narrowing ConversionNarrowing refers to passing a higher size data type like int to a lower size data type like short. It may lead to data loss. Following program output will be 44.public class MyFirstJavaProgram { public static void ... Read More

Paul Richard
89 Views
There is no official table as you quoted in your example as there is a number of factors on which estimation depends, for example:a) Programmer experience b) Complexity of code c) Interaction with other interfaces d) Your standard and best practicesYou would require building your own formula/technique based on various factors and map ... Read More

Paul Richard
563 Views
To get the value of the type attribute of a link in JavaScript, use the type property. The type attribute is used to tell that the document is html (text/html) or css (text/css), etc.ExampleYou can try to run the following code to get the value of the type attribute of ... Read More

Paul Richard
5K+ Views
To use SVG images in HTML5, use element or . To add SVG files, you can use , or element in HTML. Choose any one of them according to your requirement.Here’s how you can add SVG images. If the SVG is saved as a file, it can ... Read More

Paul Richard
257 Views
Following is an example which compares Strings and portion of strings in Java? Explain with an example.ExampleLive Demopublic class StringDemo { public static void main(String[] args) { String str1 = "tutorials point"; String str2 = str1.substring(10); int result = str1.compareTo(str2); ... Read More