Posted On October 28, 2021

How to Cramp For a Test

kimconnect 0 comments
blog.KimConnect.com >> Networking , Windows >> How to Cramp For a Test
From my experience, the trick to memorizing 10,000+ questions and answers at the 90% accuracy level was to read and perform hands-on practice on all questions the first time (took about 10-hour per day x 6 days x 19 weeks). Then, at the second time, I marked any questions that were recalled inaccurately. Third time, I only read the marked questions and reiterated until all the last batch could be recalled at 100% accuracy. On the test day, I would still miss some items and be surprised by a few more. I might have to retake the test more than once to pass at the scores of 85%+.
 
The trick is to trigger my brain to pay attention to only mistakes, not everything (please only apply this in the context of studying for a test, and maybe playing detective with a stack of 1000-page books). It’s easy to do because we humans are natural at learning from mistakes. This is how proper planning can beat a genius.

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Search Windows Event Logs

# searchWindowsEventsLog.ps1 $computername=$env:computername $logType='Security' $eventId=4732 $daysBack=365 $limit=9999 $messageLike="*Remote Desktop Users*" function searchWindowsEvents{ param( $computername=$env:computername $logType='Security'…

How to Restart Domino Services without Reboot

--------------Restart_Domino.bat------------------------------------------------------net stop "Lotus Domino Server (LotusDominoData)"c:\bats\pulist | findstr /I /C:"nadminp.exe" >c:\bats\pid.lstc:\bats\pulist | findstr /I /C:"naldaemn.exe"…

PowerShell: Hyper-V Servers Capacity Report

Current Version: # HyperVCapacityReport.ps1 # Version 0.0.2 # Report parameters $workingDirectory='C:\scripts\googleSheets' $selectFields='node,model,os,cores,cpuUtilizationPercent,ramGb,ramUsedPercent' $domainObjects=@( @{domain='intranet.kimconnect.com';dc='lax-dc02.intranet.kimconnect.com';username='intranet\clusterReport';password=$env:clusterReportPass} @{domain='intranet.dragoncoin.com';dc='lax-dc02.intranet.dragoncoin.com';username='intranet\clusterReport';password=$env:clusterReportPass}…