Visibly Relaying Information

I’m a big fan of visibly displaying information instead of simply attempting to use words.

For example, I could explain the AND (&&) operator as equating to True only if the two values associated with the operation are also True. It's a bit wordy and if you don't already know what the AND operator does then it requires a bit of thought.

In C# this could be something like:

If ( somethingTrue && somethingElseTrue)
	BothStatementsWereTrue()
else
	AtLeastOneOfTheStatementsWasFalse()

This makes it a little easier to decipher if you already understand programming, but then if you did you would already understand the AND operator.

Perhaps a better way would be display it in a table:

True False
True True False
False False False

This is a little more visual and easier to take in, especially for someone who doesn't know the subject.

A further way to improve visualisation might be to use a truth table, where values A and B are Boolean:

ABAND ORXOR
TrueTrueTrueTrueFalse
TrueFalseFalseTrueTrue
FalseTrueFalseTrueTrue
FalseFalseFalseFalseFalse

Here we've not only shown how the AND operator works, but we've also added the OR and Exclusive OR operators, without adding much complexity.

Visualisation is important when relaying information to others and there are different ways it can be achieved, with some thought required to your intended audience. For many people paragraphs of text make for difficult reading, so adding some visualisations can relieve the monotony of lots of text and also help understanding of the subject.


Got a comment or correction (I’m not perfect) for this post? Please leave a comment below.
You've successfully subscribed to Gavin Johnson-Lynn!




My Pluralsight Courses: (Get a free Pluaralsight trial)

API Security with the OWASP API Security Top 10

OWASP Top 10: What's New

OWASP Top 10: API Security Playbook

Secure Coding with OWASP in ASP.Net Core 6

Secure Coding: Broken Access Control

Python Secure Coding Playbook