⟩ Tell me which Linux service is used as a database server?
MySQL and PostgreSQL are Linux database server.
MySQL and PostgreSQL are Linux database server.
In GDB debugging, we can proceed to the next break-point with command a) next b) continue c) both (a) and (b) d) none of the mentioned
At the time of debugging with GDB, if we just press ENTER a) GDB will repeat the same command you just gave it b) GDB will do nothing c) GDB will exit d) none of the mentioned
To print the value of a variable while debugging with GDB, ______ command can be used. a) printf b) print c) show d) none of the mentioned
Which GDB command prints the value of a variable in hex. a) print/x b) print/h c) print/e d) none of the mentioned
Which GDB command interrupts the program whenever the value of a variable is modified and prints the value old and new values of the variable? a) watch b) show c) trace d) none of the mentioned
Which GDB command produces a stack trace of the function calls that lead to a segmentation fault? a) trace b) backtrace c) forwardtrace d) none of the mentioned
The specific break point can be deleted by _____ command in GDB. a) delete b) del c) remove d) none of the mentioned
The "step" command of GDB a) executes the current line of the program b) stops the next statement to be executed c) both (a) and (b) d) none of the mentioned
Which GDB command reloads the debugging information? a) file b) reload c) debug d) none of the mentioned
GDB can be used a) to find out the memory leakages b) to get the result of a particular expression in a program c) to find the reason of segementation fault d) all of the mentioned