Answer:
backup() {
read dirname;
if [[ whereis . /`$dirname` 2> sterr.exe]]
then
mkdir $dirname
for f in . / *.cpp
do
cp f "path_to_dirname"
echo "file backup complete"
}
backup( )
Explanation:
The bash script above is used to backup C++ source files in a directory to a backup directory which is created if it does not exist, and copy's each .cpp file to backup, then sends a message to declare its completion.
Answer:
Ctrl+Alt+Del
Explanation:
It will take you to the task manager and you can highlight the program that is frozen, right click on it and select end task. Or hard reboot as a last resort.
Answer:
in which app we had to join
Answer:
Change it however you'd like
Explanation:
from math import pi
def findArea(rad):
return (rad**2) * pi
#test
print(f"Area of the circle: {findArea(5)}")
Answer:
C. FTP
Explanation:
FTP is a network protocol for transmitting files between computers.