Connect in SSMS and Verify
Open SSMS. In the connection dialog, set Server name to .\SQLEXPRESS (SQL Server Express default) or (localdb)\MSSQLLocalDB if you installed the LocalDB option.
Authentication: Windows Authentication. Click Connect.
Once connected, open a new query window, select ApexFinancial_Training from the database dropdown, and run this:
SELECT TOP 5 * FROM Claims ORDER BY ClaimDate DESC;
If you see 5 rows — you are ready. Go hit DN-0001.