Computer Science Flashcards
(10 cards)
What does bash stand for
Bourne Again Shell (enhanced replacement for sh)
Diff b/w Windows & Linux
Gameboy vs. Mechano!
Command to display both shell and env variables
set | less
Command to display list of filesystems currently mounted
mount
What’s the process to mount a device, say CDROM to some other location
su - umount /dev/hdc mkdir /mnt/cdrom mount -t iso9660 /dev/hdc /mnt/cdrom cd /mnt/cdrom ls
Why is unmounting a device very important
Due to buffer. If device is removed before unmounting, the buffer data may not be transferred. This may lead to file system corruption
What the fsck!
Filesystem check
What are the two kinds of diagrams in software development
Structural and Behavioral
What are the different types of structural diagrams
- Class
- Object
- Component
- Deployment
- Package
- Profile
Difference between library and framework
Your program uses a library
Framework uses your program