BeginnersBook

  • Home
  • Java
    • Java OOPs
    • Java Collections
    • Java Examples
  • C
    • C Examples
  • C++
    • C++ Examples
  • DBMS
  • Computer Network
  • Python
    • Python Examples
  • More…
    • jQuery
    • Kotlin
    • WordPress
    • SEO
    • JSON
    • JSP
    • JSTL
    • Servlet
    • MongoDB
    • XML
    • Perl

Data Types in C++

Last Updated: September 11, 2017 by Chaitanya Singh | Filed Under: Learn C++

Data types define the type of data a variable can hold, for example an integer variable can hold integer data, a character type variable can… [Read More]

Variables in C++

Last Updated: September 11, 2017 by Chaitanya Singh | Filed Under: Learn C++

A variable is a name which is associated with a value that can be changed. For example when I write int num=20; here variable name… [Read More]

C++ Tutorial – Learn C++ Programming with examples

Last Updated: September 12, 2017 by Chaitanya Singh | Filed Under: Learn C++

C++ language is a direct descendant of C programming language with additional features such as type checking, object oriented programming, exception handling etc. You can… [Read More]

Hello World – First C++ Program

Last Updated: September 11, 2017 by Chaitanya Singh | Filed Under: Learn C++

In this guide we will write and understand the first program in C++ programming. We are writing a simple C++ program that prints “Hello World!”… [Read More]

Deque Interface in Java Collections

Last Updated: September 11, 2022 by Chaitanya Singh | Filed Under: java

Deque is a Queue in which you can add and remove elements from both sides. In the Java Queue tutorial we have seen that the… [Read More]

Tags: Collections

PriorityQueue Interface in Java Collections

Last Updated: September 11, 2022 by Chaitanya Singh | Filed Under: java

In the last tutorial, we have seen how a Queue serves the requests based on FIFO(First in First out). Now the question is: What if… [Read More]

Tags: Collections

Queue Interface in Java Collections

Last Updated: November 8, 2022 by Chaitanya Singh | Filed Under: java

A Queue is designed in such a way so that the elements added to it are placed at the end of Queue and removed from… [Read More]

Tags: Collections

Comparator Interface in Java

Last Updated: September 11, 2022 by Chaitanya Singh | Filed Under: java

In the last tutorial, we have seen how to sort objects of a custom class using Comparable interface. By using Comparable we can sort the… [Read More]

Tags: Collections

Comparable Interface in Java with example

Last Updated: May 26, 2024 by Chaitanya Singh | Filed Under: java

Comparable interface is mainly used to sort the arrays (or lists) of custom objects. Lists (and arrays) of objects that implement Comparable interface can be… [Read More]

Tags: Collections

Break statement in Java with example

Last Updated: October 25, 2022 by Chaitanya Singh | Filed Under: java

The break statement is usually used in following two scenarios: a) Use break statement to come out of the loop instantly. Whenever a break statement… [Read More]

  • « Previous Page
  • 1
  • …
  • 89
  • 90
  • 91
  • 92
  • 93
  • …
  • 150
  • Next Page »

Copyright © 2012 – 2026 BeginnersBook . Privacy Policy . Sitemap