Who’s Who in the International Standards World

Ankith Reddy
Updated on 18-Jun-2020 07:05:52

506 Views

International Standards are needed so that products and systems developed in different parts of the world are interoperable and compatible with each other. The standards aim to ease out the technical differences and also to ensure product safety.The most prominent organization that lays down international standards is the ISO (International Standards Organization). Two other major organizations for technical standards are NIST (National Institute of Standards and Technology) and IEEE (Institute of Electrical and Electronics Engineers).International Standards Organization (ISO)ISO is an independent, voluntary, non-treaty, non-government standards organization. It issues standards of a vast number of subjects that may be proprietary, industrial ... Read More

Who’s Who in the Internet Standards World

Arjun Thakur
Updated on 18-Jun-2020 07:01:44

4K+ Views

Internet Standards refer to all the documented requirements both in technology as well as methodology pertaining to the Internet. The standardization process has three steps. The documentation laid down in a step is called the maturity level. There were previously three maturity levels but are merged to form only two maturity levels now which are:Proposed Standard: These are the standards that are ready for implementation. However, they can be revised according to circumstances of deployment. Draft Standard: When a Proposed Standard has been meticulously tested by at least two sites for at least 4 months, they are considered as Draft Standard. ... Read More

Prime Number Program in Java

V Jyothi
Updated on 18-Jun-2020 07:00:54

2K+ Views

Following is the required program.ExampleLive Demopublic class Tester {    public static void main(String args[]) {       int i, m = 0, flag = 0;       int n = 41;// it is the number to be checked       m = n / 2;       if (n == 0 || n == 1) {          System.out.println(n + " not a prime number");       } else {          for (i = 2; i

Hide Popover Using Bootstrap Popover Hide Method

Alex Onsman
Updated on 18-Jun-2020 06:59:51

3K+ Views

To hide the displayed popover, use the popover(“hide”) method.Use the method to hide the popover like this −$(".btn-primary").click(function(){   $("[data-toggle='popover']").popover('hide'); });You can try to run the following code to implement the popover(“hide”) method −ExampleLive Demo       Bootstrap Example                             Example     Info           The following is a demo button:       Display       Hide           $(document).ready(function(){     $(".btn-default").click(function(){       $("[data-toggle='popover']").popover('show');     });     $(".btn-primary").click(function(){       $("[data-toggle='popover']").popover('hide');     });   });

Hidden BS Popover Bootstrap Event

Alex Onsman
Updated on 18-Jun-2020 06:58:23

507 Views

The hidden.bs.popover event fires when the popover is completely hidden.Fire the popover event −$("[data-toggle='popover']").on(hidden.bs.popover', function(){   alert('The Popover is now hidden!'); });You can try to run the following code to implement the hidden.bs.popover event −ExampleLive Demo       Bootstrap Example                             Awards           Here's the list:       List (Display)       List (Hide)             $(document).ready(function(){     ... Read More

Bootstrap Shown BS Tab Event

Alex Onsman
Updated on 18-Jun-2020 06:56:29

1K+ Views

The shown.bs.event fires when the tab is completely displayed. After that the alert generates as shown below −$('.nav-tabs a').on('shown.bs.tab', function(){   alert('New tab is now visible!'); });The tabs are displayed using the show() method −$(".nav-tabs a").click(function(){   $(this).tab('show'); });You can try to run the following code to implement the shown.bs.tab event −ExampleLive Demo       Bootstrap Example                                   Topic               Home       ... Read More

Open Bootstrap Modal

Alex Onsman
Updated on 18-Jun-2020 06:54:31

392 Views

The modal(“show”) method opens a Bootstrap modal as shown below −$("#newModal").modal("show");When the following button is clicked, the modal is displayed −   Click to hide Let us see an example of modal(“show”) method to open a Bootstrap Modal −ExampleLive Demo       Bootstrap Example                             #button1 {      width: 140px;      padding: 20px;      bottom: 150px;      z-index: 9999;      font-size: 15px;      position: absolute;      margin: 0 auto;    } ... Read More

Bootstrap Tooltip Options Method

Alex Onsman
Updated on 18-Jun-2020 06:52:27

1K+ Views

Use the tooltip(“options”) method in Bootstrap to activate the tooltip.On keeping the cursor on the below button the tooltip is visible −   Keep cursor The following is the script that generates the tooltip using the tooltip(options) class −$(document).ready(function(){   $('.btn-default').tooltip({title: "demo", placement: "top"}); });You can try to run the following code to implement the tooltip(“options”) method −ExampleLive Demo       Bootstrap Example                             Example     Tootltip will be visible after you mouse hover the below button:           Keep cursor             $(document).ready(function(){     $('.btn-default').tooltip({title: "demo", placement: "top"});   });  

Fibonacci Series Program in Java Without Using Recursion

Syed Javed
Updated on 18-Jun-2020 06:48:02

4K+ Views

Following is the required program.ExampleLive Demopublic class Tester {    public static void main(String args[]) {        int n1 = 0, n2 = 1, n3, i, max = 5;        System.out.print(n1 + " " + n2);        for (i = 2; i < max; ++i) {           n3 = n1 + n2;           System.out.print(" " + n3);           n1 = n2;           n2 = n3;        }     }  }Output0 1 1 2 3

Methods of an Array Object in JavaScript

Syed Javed
Updated on 18-Jun-2020 06:46:54

274 Views

The Array object lets you store multiple values in a single variable. It stores a fixed-size sequential collection of elements of the same type.Here is a list of some of the methods of the Array object:S.NoMethod & Description       1concat()Returns a new array comprised of this array joined with other array(s) and/or value(s).        2every()Returns true if every element in this array satisfies the provided testing function.        3filter()Creates a new array with all of the elements of this array for which the provided filtering function returns true.        4forEach()Calls a function for ... Read More

Advertisements