Programming

JSP Interview Questions and Answers — step-by-step Programming tutorial on Progressive Robot

JSP Interview Questions and Answers

URL: https://www.progressiverobot.com/jsp-interview-questions-and-answers/ JSP interview questions are very important if you are going for a Java interview. JSP is an integral part of any Java EE web application and recently I have written a lot about different features in JSP. We started from the basics of JSP, JSP scripting and ended with JSP custom tags to […]

Read more
Max Heap Data Structure Implementation in Java — step-by-step Programming tutorial on Progressive Robot

Max Heap Data Structure Implementation in Java

URL: https://www.progressiverobot.com/max-heap-java/ A max heap is a complete binary tree in which the value of a node is greater than or equal to the values of its children. Max Heap data structure is useful for sorting data using heap sort. In this tutorial, we will cover everything you need to know to implement max heaps […]

Read more
ObjectOutputStream in Java - write Object to File — step-by-step Programming tutorial on Progressive Robot

ObjectOutputStream in Java – write Object to File

URL: https://www.progressiverobot.com/objectoutputstream-java-write-object-file/ ObjectOutputStream in Java can be used to convert an object to OutputStream. The process of converting object to stream is called [serialization in java](/community/tutorials/serialization-in-java). Once an object is converted to Output Stream, it can be saved to file or database, send over the network or used in socket connections. So we can use […]

Read more
How to Create a Random Number Generator in C++ — step-by-step Programming tutorial on Progressive Robot

How to Create a Random Number Generator in C++

URL: https://www.progressiverobot.com/random-number-generator-c-plus-plus/ In this article, we'll go over the functions needed to create a random number generator in C++. In the world of computers, random numbers form an essential component to add the flavor of anonymity and security. A random number generator forms the backbone of creating pseudo-random numbers. The idea behind pseudo-random numbers is […]

Read more
Why String is Immutable in Java? — step-by-step Programming tutorial on Progressive Robot

Why String is Immutable in Java?

URL: https://www.progressiverobot.com/string-immutable-final-java/ Why String is immutable in Java is one of the popular interview questions. The string is one of the most used classes in any programming language. We know that String is immutable and final in Java. Java runtime maintains a [String pool](/community/tutorials/what-is-java-string-pool) that makes it a special class. Why String is immutable in […]

Read more
Información sobre defer en Go — step-by-step Programming tutorial on Progressive Robot

Información sobre defer en Go

Go tiene muchas de las palabras claves de flujo de control comunes que se encuentran en otros lenguajes de programación, como if, switch y for, entre otras. Una palabra clave que no tienen la mayoría de los otros lenguajes de programación es defer, y aunque es menos…

Read more
Información sobre punteros en Go — step-by-step Programming tutorial on Progressive Robot

Información sobre punteros en Go

Al escribir software en Go, escribirá funciones y métodos. Pasará datos a esas funciones como argumentos. A veces, las funciones requieren una copia local de los datos y le conviene que el original se mantenga inalterado. Por ejemplo, si maneja un banco y tiene una función…

Read more
Understanding Vector insert() in C++ — step-by-step Programming tutorial on Progressive Robot

Understanding Vector insert() in C++

URL: https://www.progressiverobot.com/vector-insert-in-c-plus-plus/ Introduction In this tutorial, we are going to learn about vector insert() in C++. As well as look at how it works and can be used to accomplish the insertion operation in different ways with examples. The vector::insert() function in C++ Basically, the vector::insert() function from the STL in C++ is used to […]

Read more
CHAT