Requirements Gathering

The book calls this Eliciting Requirements. They should be done in a collaborative environment. Generally either face to face meetings and/or virtual meetings. Being done in real time allows for faster feedback than over an email/text/phone calls, etc. The meetings should include developers as well as other stakeholders. Rules and an Agenda for the meeting…

The Main Content Section of your Web Page

In the center of the page you’ll typically find one or more columns that contain content. Generally there is a larger column, and one or two smaller columns – often called a sidebar. The sidebar generally contains information about upcoming events, recent updates to the website, or various other pieces of information which is related…

The Web Page Footer

At the bottom of the page, you can find the footer. This is where you traditionally found the copyright information, such as the year.  Nowadays, with some modern legislation based in different countries’ laws, you can often find links to web privacy standards, terms or use (or usage), and the cookie usage policy to remain…

The C++ Do-While Loop

The Do-While loop is similar to the while loop. It is a conditional loop, just like the while loop, running the body of the loop while the condition is met. However, the big difference is that the do-while loop is a post-test loop. That means that the body runs at least once, and then there…