2021 不一样的C(苏州大学文正学院) 最新满分章节测试答案
本答案对应课程为:点我自动跳转查看
本课程起止时间为:2021-03-24到2021-07-15
本篇答案更新状态:已完结
第1章 前言 学前测验
1、 问题:自测英文水平大概在
选项:
A:英语6级合格
B:英语4级合格
C:考过英语4级, 但是运气不好,没过。
D:没有学过英语
E:英语是啥?
答案: 【英语6级合格;
英语4级合格】
2、 问题:这个课程的前导课程是Linux操作系统, 你听说过这个系统吗?
选项:
A:不知道
B:知道,但是没有用过
C:我高中时候用过的
D:没有听过,也没有用过,我学习能力强,我知道B站上有教学视频的。
E:操作系统我知道安卓和IOS
答案: 【我高中时候用过的;
没有听过,也没有用过,我学习能力强,我知道B站上有教学视频的。】
3、 问题:程序设计课程,需要在理论学习以后,通过大量的上机实际操作来强化自己的编程能力。你每周能为这个课堂分配出多少学习时间?
选项:
A:0小时
B:0.5小时
C:3小时
D:5小时
E:8小时
答案: 【8小时】
4、 问题:这次测试, 你发现自己是能拿满分的, 原因是选择题最多只有5个选项, 但是你的尝试机会有
选项:
A:2次
B:足够多次
C:3次
D:1次
答案: 【足够多次】
5、 问题:这门课好过吗?
选项:
A:学习是一种经历,我们欣赏自己一路走来的过程
B:非常好过, 但是可能什么也没有学到
C:很难,完全靠自学呀
D:过与不过实际上在学生的心里, 不在老师的试卷上
E:再难也要过, 难过
答案: 【学习是一种经历,我们欣赏自己一路走来的过程;
很难,完全靠自学呀】
6、 问题:这次满分测试, 你学到了什么?
选项:
A:满分到手哇
B:我还有一些差距, 但是我会花时间,花功夫在这门课上
C:没学到啥,就是选呗
D:才知道还能反复作答,切
答案: 【我还有一些差距, 但是我会花时间,花功夫在这门课上】
7、 问题:本课程交作业的时候使用的文档格式是
选项:
A:doc
B:zip
C:pdf
D:rtf
答案: 【pdf】
【作业】第1章 前言 安装编程环境
1、 问题:0、下载并认真阅读Coding for Students附件中的文章。1、下载并安装Virtualbox虚拟机。http://www.virtualbox.org/2、下载并安装Vagrant和Linux镜像文件。https://drive.weixin.qq.com/s?k=AJ0AOwfZAAoggQNcNTAPsATAaRAAs3、 学习通过vagrant ,追加box, 管理box和启动linux环境的方法。4、在自己安装好的Linux中,学习Coding for Students附件中所列的常用终端命令。5、将自己的心得和装机教程,提交到讨论群供同学们学习参考(可选任务)。
评分规则: 【 安装过程截图, 制作精美的安装教程。教程的式样参照Code for Students。版式要求在模仿中有创新。
】
2、 问题:详细阅读下面的英文介绍,了解在Linux环境中, 什么是用户的Home目录? A home directory, also called a login directory, is the directory on Unix-like operating systems that serves as the repository for a user’s personal files, directories and programs. It is also the directory that a user is first in after logging into the system.A home directory is created automatically for every ordinary user in the directory called /home. A standard subdirectory of the root directory, /home has the sole purpose of containing users’ home directories. The root directory, which is designated by a forward slash ( / ), is the directory that contains all other directories and their subdirectories as well as all files on the system.The name of a user’s home directory is by default identical to that of the user. Thus, for example, a user with a user name of mary would typically have a home directory named mary. It would have an absolute pathname of /home/mary. An absolute pathname is the location of a directory or file relative to the root directory, and it always starts with the root directory (i.e., with a forward slash).The only user that will by default have its home directory in a different location is the root (i.e., administrative) user, whose home directory is /root. /root is another standard subdirectory of the root directory, and it should not be confused with the root directory (although it sometimes is by new users). For security purposes, even system administrators should have ordinary accounts with home directories in /home into which they routinely log in, and they should use the root account only when absolutely necessary.There are several easy ways for a user to return to its home directory regardless of its current directory (i.e., the directory in which it is currently working in). The simplest of these is to use the cd (i.e., change directory) command without any options or arguments (i.e., input files), i.e., by merely typing the following and then pressing the ENTER key:cdThe tilde (the wavy horizontal line character) is used to represent users’ home directories on Unix-like operating systems, including users’ home directories that are used to store web pages on Unix-like web servers. Thus, a user could also return to its home directory by using the tilde as an argument to cd, i.e.,cd ~
评分规则: 【 翻译准确即可满分
】
【作业】第2章 计算机的组成 在Linux中安装软件
1、 问题:1、在联网状态下, 在终端中执行下列命令,完成开发环境安装。时间可能会比较长, 要保持耐心。## 2019-10-07## Software install for C programming and Operating System##sudo apt-get updatesudo apt install gitsudo apt install tmux sudo apt install joesudo apt install filezillasudo apt install clangsudo apt install lldb sudo apt install openssh-clientsudo apt install openssh-serversudo apt-get install build-essentialsudo apt-get install opensshsudo apt-get install vim-gtksudo apt-get install qemusudo apt install zshsudo apt install python-pipsudo apt install gnome-shell-extensionssudo apt install chrome-gnome-shell2、 在Home目录下,解压缩附件得到目录vimrc_pkg
评分规则: 【 截图制作安装教程。
】
第3章 函数初步 第二章知识回顾
1、 问题:下面三条语句中, 只有一条赋值语句, 请问是那一条。
选项:
A:int a;
B:int a = 2;
C:a = 2; // 整数变量已经声明
D:a int;
答案: 【a = 2; // 整数变量已经声明】
2、 问题:#include <stdio.h>
本文章不含期末不含主观题!!
本文章不含期末不含主观题!!
支付后可长期查看
有疑问请添加客服QQ 2356025045反馈
如遇卡顿看不了请换个浏览器即可打开
请看清楚了再购买哦,电子资源购买后不支持退款哦