QuiztudyPREMIUM
Google IT Automation with Python Professional Certificate โข STUDY MODE
INTRODUCTION TO DEBUGGING
QUESTION 1 OF 8
What is part of the final step when problem solving? Nice job! Long-term remediation is part of the final step when problem solving.
A
DocumentationB
Long-term remediationCorrect AnswerC
Finding the root causeD
Gathering informationQUESTION 2 OF 8
Which tool can you use when debugging to look at library calls made by the software? Keep it up! the ltrace tool is used to look at library calls made by the software.
A
topB
straceC
tcpdumpD
ltraceCorrect AnswerQUESTION 3 OF 8
What is the first step of problem solving? Right on! Gathering information is the first step taken when problem solving.
A
PreventionB
Gathering informationCorrect AnswerC
Long-term remediationD
Finding the root causeQUESTION 4 OF 8
What software tools are used to analyze network traffic to isolate problems? (Check all that apply) Nice work! The tcpdump tool is a powerful command-line analyzer that captures or "sniffs" TCP/IP packets. Excellent! Wireshark is an open source tool for profiling network traffic and analyzing TCP/IP packets.
A
tcpdumpCorrect AnswerB
wiresharkCorrect AnswerC
straceD
topQUESTION 5 OF 8
The strace (in Linux) tool allows us to see all of the _____ our program has made. Awesome! The strace command shows us all the system calls our program made. System calls are the calls that the programs running in our computer make to the running kernel.
A
Network trafficB
Disk writesC
System callsCorrect AnswerD
Connection requestsQUESTION 6 OF 8
What is the general description of debugging? Awesome! Generally, debugging means fixing bugs in the code of the application.
A
Fixing bugs in the code of the applicationCorrect AnswerB
Fixing problems in the system running the applicationC
Fixing issues related to hardwareD
Fixing configuration issues in the softwareQUESTION 7 OF 8
What is the second step of problem solving? Right on! Finding the root cause is the second step taken when problem solving.
A
Short-term remediationB
Long-term remediationC
Finding the root causeCorrect AnswerD
Gathering informationQUESTION 8 OF 8
Which command can you use to scroll through a lot of text output after tracing system calls of a script? Great work! Piping the less command allows you to scroll through a lot of text output.
A
strace -o fail.strace ./script.pyB
strace ./script.py | lessCorrect AnswerC
strace ./script.pyD
strace ./script.py -o fail.straceReady to test your recall?
What is part of the final step when problem solving? Nice job! Long-term remediation is part of the final step when problem solving.
A
Documentation
B
Long-term remediation
C
Finding the root cause
D
Gathering information
How confident are you in this answer?