Paul Richard has Published 66 Articles

Reference Models in Computer Network

Paul Richard

Paul Richard

Updated on 17-Jun-2020 12:23:16

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

Uses of Computer Networks

Paul Richard

Paul Richard

Updated on 17-Jun-2020 11:08:23

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

Exponential Search

Paul Richard

Paul Richard

Updated on 15-Jun-2020 14:10:42

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

How to use formnovalidate attribute in HTML?

Paul Richard

Paul Richard

Updated on 15-Jun-2020 11:17:52

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

Java Conversions and Promotions

Paul Richard

Paul Richard

Updated on 15-Jun-2020 05:55:04

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

Estimation of number of SAP programs and factor deciding it

Paul Richard

Paul Richard

Updated on 13-Jun-2020 06:06:07

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

Using SAP T-code SM37 to check background jobs in SAP system

Paul Richard

Paul Richard

Updated on 12-Jun-2020 12:45:29

730 Views

In SM37 you can only see the scheduled background jobs as it is not used for foreground jobs. Below shows an initial screen of SM37 Transaction code:

How to get the value of the type attribute of a link in JavaScript?

Paul Richard

Paul Richard

Updated on 20-May-2020 09:35:04

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

How to use SVG images in HTML5?

Paul Richard

Paul Richard

Updated on 18-May-2020 08:29:55

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

Comparing Strings and Portions of Strings in Java

Paul Richard

Paul Richard

Updated on 26-Feb-2020 07:17:17

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

Advertisements