
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
Krantik Chavan has Published 278 Articles

Krantik Chavan
398 Views
The if...else if... statement is an advanced form of if…else that allows JavaScript to make a correct decision out of several conditions.SyntaxThe syntax of an if-else-if statement is as follows −if (expression 1){ Statement(s) to be executed if expression 1 is true } else if (expression2){ Statement(s) to ... Read More

Krantik Chavan
8K+ Views
++a returns the value of an after it has been incremented. It is a pre-increment operator since ++ comes before the operand.a++ returns the value of a before incrementing. It is a post-increment operator since ++ comes after the operand.ExampleYou can try to run the following code to learn the ... Read More

Krantik Chavan
4K+ Views
Use the .in class in Bootstrap to fade in the tab.You can try to run the following code to fade in tab −ExampleLive Demo Bootstrap Example ... Read More

Krantik Chavan
197 Views
Use the .btn class in Bootstrap to create a button.You can try to run the following code to create a basic button in Bootstrap −ExampleLive Demo Bootstrap Example Categories Tech 95 Entertainment 30 Research 9 Viral 20 Sport 105 Our blog posts Click to visit

Krantik Chavan
3K+ Views
Use the .btn-group class in Bootstrap to group buttons on a single like.You can try to run the following code to implement .btn-group class in Bootstrap:ExampleLive Demo Bootstrap Example The following are the car brands: BMW Audi Jeep Datsun Toyota Mahindra

Krantik Chavan
134 Views
With the jumbotron class in Bootstrap, increase the size of headings and add a lot of margin for landingpage content.You can try to run the following code to implement the .jumbotron class in Bootstrap −ExampleLive Demo Bootstrap Example Welcome to landing page! Our first page. Click for more

Krantik Chavan
943 Views
Using the .table-condensed class, row padding is cut in half to condense the table. as seen in the following example. This is useful if you want any denser information.You can try to run the following code to implement table-condensed class in Bootstrap −ExampleLive Demo ... Read More

Krantik Chavan
1K+ Views
An alert dialog box is mostly used to give a warning message to the users. For example, if one input field requires to enter some text but the user does not provide any input, then as a part of validation, you can use an alert box to give a warning ... Read More