请在下列空白处填上适当的单词:Some common ______1____can help you in building effective document management. The files can be found easily when you [label] your files and folders with names such as ___2____ and school names. You can have a quick idea of the ___3___types

题目

请在下列空白处填上适当的单词:

Some common ______1____can help you in building effective document management. The files can be found easily when you [label] your files and folders with names such as ___2____ and school names. You can have a quick idea of the ___3___types if you search through folders in thumbnail view. You also need to remove __4____files to make it clear and put things similar together in a folder. And keeping files in ____5___ order is a good way to sort out all files. Of course, you should___6_____ and reorganize files from a certain period of time to make sure they are in the_____7_____ place.


相似考题
更多“请在下列空白处填上适当的单词:Some common ______1____can help you in building effective d ”相关问题
  • 第1题:

    下列是用头插法建立带头结点的且有n个结点的单向链表的算法,请在空格内填上适当的语句。
    head=p;q=p;p->next=NULL;p->next=q->next;q->next=p

  • 第2题:

    下列是用尾插法建立带头结点的且有n个结点的单向链表的算法,请在空格内填上适当的语句。
    p->data=i;p->next=NULL;q->next=p;q=p

  • 第3题:

    【填空题】根据视频内容在横线上填上适当的单词。 Numbers, shù zì, have long _______ hierarchy order and symbols of nature in China.


    在战俘营,没有卫兵

  • 第4题:

    下列是在具有头结点单向链表中删除第i个结点的算法,请在空格内填上适当的语句。
    q=q->next;p=q->next;q->next=p->next

  • 第5题:

    下列是在具有头结点单向列表中在第i个结点之前插入新结点的算法,请在空格内填上适当的语句。
    (NODE *)malloc(sizeof(NODE));p->next=q->next;q->next=p