To create the directory "mydir" on the desktop and the file "project.txt" inside it, use the commands:
mkdir ~/Desktop/mydir
touch ~/Desktop/mydir/project.txt
The commands to use
To grant the anime group write permission and deny write permission to the manga group, use:
chmod g+w ~/Desktop/mydir/project.txt
chmod g-w ~/Desktop/mydir/project.txt
If Jacob is part of the anime group, he would have write permissions since the anime group has write access to "project.txt".
However, if Jacob is part of the manga group or not a member of any group with write access, he won't have permissions to write to the file. The final permissions determine Jacob's write access based on his group association.