• 2022-07-28
    查看系统中test用户的计划任务命令是?
    A: crontab -l test
    B: crontab -l -u test
    C: crontab -l -user test
    D: whoami -u test
  • B

    内容

    • 0

      下面选项中,哪个MySql命令可以实现切换到test数据库? A: \s test B: \h test C: \? Test D: \u test

    • 1

      以root身份建一个目录/test,查看这个目录的默认权限是? A: mkdir /test B: ls -l /test C: 0 D: 1

    • 2

      连接MySQL服务器的指令是?() A: mysqladmin -u root password test B: mysql -u root password test C: mysql -u root -p test D: mysql -u root -password test

    • 3

      要使数据库TEST作为当前数据库,相应的语句为( ) A: IN TEST B: SHOW TEST C: USER TEST D: USE TEST

    • 4

      查看一下代码 ,请问输出正确的是|var Test ={| foo:"test",| func:function () {| var self=this;| console.log(this.foo);| console.log(self.foo);| (function () {| console.log(this.foo);| console.log(self.foo);| })();| }|};|Test.func(); A: test test undefined test B: test undefined undefined test C: test test undefined D: test test test test