Skip to main content

Here's what a VPN can't protect you from (but you need to use it)

The abbreviation " VPN " has slowly become established among average Internet users, which is certainly good, but the problem is that people have started to see VPN as the ultimate solution to all problems.

VB – Variables

VB – Variables

When programming, you must understand and learn how variables are used and what they actually represent. You may have encountered the concept of variables before, and certainly from mathematics. You may have noticed when your math teacher says: "variable x".

Why is something called a variable in the first place? A variable is a character, letter, word, or set of words associated with a character that has a value. In terms of programming, a variable can have a number value, a text value, and true and false values. Let's say the variable x is the name of the variable, while its value can be the number five. Now you must understand how each variable must be associated with some type of data. What are data types?

The data type is the value that the computer should predict for a given variable with which it will work and the range of its values. There are two basic groups of data types and they are:

  • Basic
  • Other

What we are interested in now are the basic data types: numbers (integers and reals), characters, logical data (true, false, 1,0), and constants. I will explain each one briefly. For numbers, several types of data can be worked with, but it all depends on what the value of the variable will be. If the value of the variable is a number that does not have a decimal value, then the Integer data type is used. If the value of the variable is a number with a decimal value, we will use the Double data type because it can display decimal values ​​and therefore has a larger range of values ​​and will take up more space in the program. Characters are certain letters, words, and sentences and they are always String data types. Logical values ​​are true (1) and false (0). It remains for me to explain the constants. As for constants, they are no longer variables, they make a variable become a constant. I'm sure this sounds confusing now, but over time, as you master the syntax of the language itself, you'll see how simple it is.

We start with an example of how to declare variables:

Okay, let's explain briefly what I did now. When we start declaring variables in Visual Basic, we do it by typing Dim. After that, we put the name of the variable that we determine as programmers. After that, I put As because I am about to define what data type will be in use for the given variable. In the first example, I use Integer only because the value I entered by putting the equal sign is the number five, and the number five does not have a decimal value to be another data type.

In each of the examples, you notice how I use the name of the variable and the data type, and then assign the value to the variable, and this will always be done in programming. In the second example, we have a Double data type only because the value of the variable is a decimal value. The third variable has a String data type only because it is text. The fourth and fifth variables have a Boolean data type because the value of those variables is true and false, i.e. 1 and 0.

After declaring the variables, I simply printed them out and thus displayed all the variables in the console and it will look like this:

As you can see from the attached image each of the variables will be displayed in the console exactly as they should be displayed. At the very end, you notice that it says True and False, i.e. true and false, and the Boolean data type is responsible for that.

Comments

Popular this month

The difference between Sleep, Hibernate and Hybrid sleep options

What is the difference between regular Sleep mode and Hybrid sleep mode? And what is Hibernate ? I will try to explain in the simplest way possible so that everyone understands nicely. 1. Sleep When you select Sleep mode , all components of the computer except RAM are shut down to store data. So, if you do something on the computer and press Sleep, the computer shuts down and everything you did (left open windows, documents, etc.) is stored in RAM.

How to speed up folder opening [Win7]

I had a problem with the slow loading of folders on Win7, until recently. When I opened the folder, I waited for a while to read all the items from it. That green progress, at least upstairs, was filled with incredible slowness , which annoyed me. I searched a bit on the net, I concluded something myself and came up with a simple and effective solution. You will not need any program or complicated settings for this, everything is easy.

How to find a phone in the house if it is muted?

UPDATE: the article is outdated, read the new one:  How to find a phone if its sound is off ? Lost your Android phone at home, desperately trying to find it, and the ringtone is off? Well, that's going to be a bit more difficult. But there is a solution for that as well -  Remote Ringer . This application works quite simply:

Image of 1.74 giga pixels

In the picture of Barack Obama 's inauguration on January 20, 2009. you can clearly identify each person individually in that mass of people. Click 2x anywhere on the image. Use the zoom on the left to zoom in on the selected person and wait a few seconds for the image to focus. That image was taken by a 174-megapixel robot camera. That's 295 x the average 5-megapixel camera.

How to take a picture of an entire website

You need to take a picture of the whole website but you don't know-how. You try to paint part by part, but it takes too much time. Here are a few solutions on how to do it in just a few seconds.