George John

George John

789 Articles Published

Articles by George John

Page 38 of 79

Offset Columns in Bootstrap

George John
George John
Updated on 11-Mar-2026 6K+ Views

An offset is used to push columns over for more spacing. To use offsets on large displays, use the .col-md-offset-* classes. You can try to run the following code to learn how to work with offset columns in Bootstrap −Example           Bootstrap Example                                          Heading One                                      This is demo text. This is demo text.                                

Read More

Bootstrap btn-toolbar class

George John
George John
Updated on 11-Mar-2026 503 Views

Set Button Toolbar in Bootstrap using the btn-toolbar class.You can try to run the following code to implement the btn-toolbar class −Example           Bootstrap Example                                                       MCA             BCA                                 MBA             MS                    

Read More

Create Inverted Navbar in Bootstrap

George John
George John
Updated on 11-Mar-2026 800 Views

To create an inverted navbar with a black background and with white text, simply add the .navbar-inverse class to the .navbar class.Example           Bootstrap Example                                                       TutorialsPoint                                                                    iOS                      SVN                                                                          Java                                                                                                        jmeter                            EJB                            Jasper Report                                                                                              

Read More

Bootstrap element

George John
George John
Updated on 11-Mar-2026 313 Views

The element in Bootstrap is used to set inline subheadings.You can try to run the following code to implement the element:Example           Bootstrap small element                                       Heading One          I'm secondary Heading             Heading One          I'm secondary Heading          

Read More

Make an Ordered list with Bootstrap

George John
George John
Updated on 11-Mar-2026 712 Views

For ordered list in Bootstrap, you can try to run the following code −Example           Bootstrap lists                                       Lists       Fruits (Ordered List)                Kiwi          Apple          Mango          

Read More

Striped Table with Bootstrap

George John
George John
Updated on 11-Mar-2026 487 Views

To add a striped table in Bootstrap, use the .table-striped class. You can try to run the following code to implement the .table-striped class −Example           Bootstrap Table                                                Footballer Rank                                      Footballer                Rank                                                            Amit                3                                        Kevin                2                                

Read More

Bootstrap class input-group-sm

George John
George John
Updated on 11-Mar-2026 259 Views

To make small input group, use the input-group-sm.You can try to run the following code to implement the input-group-sm class in Bootstrap −Example           Bootstrap Example                                                                      $                                                

Read More

Difference between static, auto, global and local variable in C++

George John
George John
Updated on 11-Mar-2026 4K+ Views

There are two separate concepts here − scope, which determines where a name can be accessed - global and local storage duration, which determines when a variable is created and destroyed - static and auto Scope Local variables can be used only by statements that are inside that function or block of code. Local variables are not known to functions on their own. Example #include using namespace std; int main () { // Local variable declaration: int a, b; int c; // actual initialization a = 10; b = 20; c = a + b; cout

Read More

Print a 2D Array or Matrix in Java

George John
George John
Updated on 11-Mar-2026 32K+ Views

In this post we will try to print an array or matrix of numbers at console in same manner as we generally write on paper.For this the logic is to access each element of array one by one and make them print separated by a space and when row get to end in matrix then we will also change the row.Examplepublic class Print2DArray {    public static void main(String[] args) {       final int[][] matrix = {          { 1, 2, 3 },          { 4, 5, 6 },          { 7, 8, 9 }       };       for (int i = 0; i

Read More

Early binding and Late binding in C++

George John
George John
Updated on 28-Apr-2025 17K+ Views

In C++, binding is the process of connecting names such as variables and functions to their actual memory locations. When you intend to call a function, the program must identify the proper function definition for the execution. So, binding is the process of making this connection. This happens either at compile time (early binding) or at runtime (late binding). Early Binding This is compile time polymorphism and decides which function to call before it runs, making execution faster and direct. Example In this example, we demonstrate the early binding, where the base class function runs instead of the derived class ...

Read More
Showing 371–380 of 789 articles
« Prev 1 36 37 38 39 40 79 Next »
Advertisements