Smita Kapse has Published 560 Articles

How to answer Top Java interview questions

Smita Kapse

Smita Kapse

Updated on 17-Jun-2020 13:46:03

112 Views

There are many sites which are a good resource for java interview questions-answers. Following is the list of most popular websites.Tutorialspoint - www.tutorialspoint.comStackOverflow - www.stackoverflow.comDZone - www.dzone.comWikipedia - www.wikipedia.orgIBM Developer Works - www.ibm.com/developerworks/java/TechGig - www.techgig.comGitHub - www.github.comJava documentation - docs.oracle.com/javase/Coursera - www.coursera.org/JavaWorld - www.javaworld.com/Read More

What is the maximum value represented by Number object in JavaScript?

Smita Kapse

Smita Kapse

Updated on 17-Jun-2020 06:20:45

238 Views

The largest possible value a number in JavaScript can have 1.7976931348623157E+308. The Number.MAX_VALUE property belongs to the static Number object. It represents constants for the largest possible positive numbers that JavaScript can work with.ExampleYou can try to run the following code to get the maximum value represented by Number object ... Read More

How can I list all cookies on the current page with JavaScript?

Smita Kapse

Smita Kapse

Updated on 16-Jun-2020 12:01:38

876 Views

While creating a cookie, use the “path” parameter. The path to the directory or web page set the cookie. This may be blank if you want to retrieve the cookie from the current page. By default, the cookie belongs to the current page.ExampleTo list all cookies for the current page, ... Read More

Create a red color alert box that indicates a dangerous action in Bootstrap

Smita Kapse

Smita Kapse

Updated on 15-Jun-2020 07:36:49

557 Views

Use the .alert-danger class in Bootstrap to create a red color alert box indicating dangerous action.You can try to run the following code to implement .alert-danger class −ExampleLive Demo        Bootstrap Example                                                       Danger!             Add dangerous action here...                    

Vertically stack pills with Bootstrap

Smita Kapse

Smita Kapse

Updated on 15-Jun-2020 07:34:10

143 Views

Use the .nav-stacked class in Bootstrap to vertically stack pills:You can try to run the following code to implement the .nav-stacked class −ExampleLive Demo           Bootstrap Example                                          Database          The following are the database technologies:                       DB2             MySQL             SQL             CouchDB                    

Add a shadow to an element with Bootstrap 4

Smita Kapse

Smita Kapse

Updated on 15-Jun-2020 07:20:43

287 Views

To add a shadow to an element in Bootstrap, use the .shadow class in Bootstrap 4.You can try to run the following code to add shadow to an element −ExampleLive Demo           Bootstrap Example                                          Learning          Try programming examples          Try programming examples          Play Quiz and check your knowledge          

Nested media lists with Bootstrap

Smita Kapse

Smita Kapse

Updated on 15-Jun-2020 07:12:06

317 Views

Use the .media-list property to set nested media lists.You can try to run the following code to implement .media-list property −ExampleLive Demo           Bootstrap Example                                     ... Read More

Set danger action for a list item in a list group with Bootstrap

Smita Kapse

Smita Kapse

Updated on 15-Jun-2020 06:38:08

57 Views

Use the .list-group-item-danger class in Bootstrap to set danger action for a list item in a list group −ExampleLive Demo           Bootstrap Example                                          Demo One                                      A                                        B                                

Create an extra small button group with Bootstrap

Smita Kapse

Smita Kapse

Updated on 15-Jun-2020 06:35:32

205 Views

To create a large button group in Bootstrap, use the .btn-group-xs class.You can try to run the following code to implement the .btn-group-xs class −ExampleLive Demo           Bootstrap Example                           ... Read More

How to use Bootstrap Button Plugins

Smita Kapse

Smita Kapse

Updated on 15-Jun-2020 06:34:08

70 Views

Add in some interaction such as control button states or create groups of buttons for more components like toolbars with the plugin.You can try to run the following code to implement button plugin −ExampleLive Demo           Bootstrap Example                                 Button Example                             Primary                                $(function () {             $("#myButtons1 .btn").click(function(){                $(this).button('toggle');             });          });          

Previous 1 ... 5 6 7 8 9 ... 56 Next
Advertisements