Which of the following cmdlet will list out the top 5 processes that are consuming highest CPU time and start with the letter “M”?

get-process | where name -clike "M*" | sort CPU -desc | select -first 5

get-process | where name -eq “M*” | sort CPU | select -last 5

get-process | where {$_.name -eq “m*”} | sort CPU | select -last 5

get-process | where name -like “M*”} | sort CPU | select -first 5

Verified Answer
Correct Option - a

To get all Infosys Certified L1 Junior Windows Admin Professional Exam questions Join Telegram Group https://rebrand.ly/lex-telegram-236dee

Telegram