Calling Functions in VB & VBA: Syntax, Examples, & More

Are you confused about calling function procedures in Visual Basic and VBA? When you call a function, its statements run beginning with the first executable after the “Function” statement until “End Function,” “Return,” or “Exit Function” is encountered. Once you learn the proper syntax for call statements and check out some helpful examples, it will … Read more

How to Create a Mobile App

The mobile app industry has already crossed the critical figure of billion dollars. Smartphones, tablets, and other mobile devices make a considerable chunk of internet users. The determining factor for the success of an app is the quality and user experience. Setting the Benchmark: Designing Make new user your benchmark for design. The design should … Read more

How to Execute HTTP POST Requests in Android

HTTP Post is part of a deprecated HTTP classes like org.apache.http and AndroidHttpClient as of Android 5.1. Migrate your code to the HttpURLConnection classes which includes Posting functionality. HTTP Post is used in Java to request that a specific web server receive and store data submitted within a request form. The data is submitted and … Read more

How to Convert Binary to Octal Number

Binary and octal systems are different number systems commonly used in computing. They have different bases — binary is base-two and octal base-eight — meaning they must be grouped to convert. This, however, sounds far more complicated than this very easy conversion actually is. Converting by Hand Recognize series of binary numbers. Binary numbers are … Read more

How to Start Programming in Assembly

Assembly programming is often a crucial starting point when computer programmers are learning their craft. Assembly language (also known as ASM) is a programming language for computers and other devices, and it’s generally considered a low-level variant when compared to more advanced languages that offer additional functionality. Once you’ve written the code, an assembler converts … Read more

How to Write an Algorithm in Programming Language

An algorithm is a set of steps designed to solve a problem or accomplish a task. Algorithms are usually written in pseudocode, or a combination of your speaking language and one or more programming languages, in advance of writing a program. This minHour teaches you how to piece together an algorithm that gets you started … Read more

How to Run Ruby Code

This minHour teaches you how to run your Ruby script in Windows, macOS, and Ubuntu or Debian Linux. To run a Ruby program, you’ll need to have Ruby installed on your computer. Although macOS and most Linux distributions come with versions of Ruby pre-installed, you’ll want to make sure you’re using the latest version before … Read more

How to Use SQL

SQL stands for Structured Query Language and was originally developed by IBM in the 70s to interact with relational databases. It is the common language for databases, remains fairly readable and it is relatively simple to learn the basics (although the language can be very powerful). Steps ‘SQL’ is usually pronounced ‘S-Q-L’ (Structured Query Language). … Read more