TL;DR: Yes, that is correct (mostly). The exception being: instead of "deb" use "dpkg".
You have different package managers for different Linux distributions - but you pretty much have to deal with either Redhat based distributions and Debian based distributions (technically there are also distros that just package source files, but they are not as popular).
.rpm packages are for Redhat based distros while .deb packages are used by Debian based distros. On Redhat you have the rpm command, on Debian you have dpkg (Debian Packager).
Package management on Redhat used to be particularly horrible- when you only had rpm to deal with(you had something like .dll hell), until package managers like yum came along. Yum was originally a package manager used on Yellowdog Linux (a distro that runs on PowerPC)- based on Redhat. yum stands for Yellowdog Updater Modified. Another popular distro named SuSE had another solution named YaST (yet another setup tool)- which had a GUI to do package management. It was a bit clunky, and slow - so they created a wrapper around it called zypper (similar to yum and apt-get).
For the Linux+ cert I believe they only cover the rpm command and yum. I haven't taken it - so I'm no authority in the matter. You will always find the rpm command on Redhat based distros and you will always find dpkg on Debian based distros. They work more on a "lower level" - doing things like package manipulation - while the other tools work more like intelligent wrappers around those lower level tools.
On Debian apt-get is the package manager that is used by default (APT stands for Advanced Package Tool), but most people have switched to aptitude. One of the reasons that people switched was because aptitude handles dependency hell a lot better than apt-get. If you have circular dependencies (weird things can happen), it gives you options as to how to hand
If you ever need to convert between .rpm and .deb there is a quick and dirty hack called "alien". Only use it if you must (like when some weird vendor refuses to give you the source of the package, and they package it for a different distro than yours). This isn't the "normal case", and should be avoided- but it is great when you need it.
To get back to your post:
To list your installed packages (and count them) on Debian/Ubuntu you can do:
dpkg -l | wc -l
For more info on your package manager of choice, check the manpage:
man apt-get
Rant:
If you are thinking "geez, on Mac/Windows package management is easier..." - it isn't. You have: .app, .dmg, .pkg, .mpkg etc. on OSX. Also, it is lots of fun to try and uninstall a .pkg/.mpkg without a third party package manager (as many of those exist for OSX as there are for Linux).
In Windows you have a bunch of different installers like: Wise, Microsoft Installer, NSIS, InnoSetup, InstallShield, InstallBuilder, InstallJammer, IzPack, InstallSimple ... (there are more) and software removal can be pretty painful - especially when there is no uninstaller.