浙江大学2005–2006学年秋季学期 《操作系统分析及实验》课程期末考试试卷

浙江大学2005–2006学年秋季学期 《操作系统分析及实验》课程期末考试试卷
浙江大学2005–2006学年秋季学期 《操作系统分析及实验》课程期末考试试卷

浙江大学2005–2006学年秋季学期

《操作系统分析及实验》课程期末考试试卷

开课学院:计算机学院、软件学院,考试形式:有限开卷,只允许带3张A4纸入场考试时间:_____年____月____日, 所需时间:120分钟教师姓名:_________考生姓名: ___学号:专业:得分:

答案:

For every following question, please select your best answer only!!!

1.UNIX is a __________ operating system.

A.)time-sharing

B.)batched-processing

C.)uniprogramming

D.)real-time

2.Which is the oldest among the following OSes?

A.)AT&T UNIX

B.)Solaris

C.)Linux

D.)Windows NT

3.Which of the following is able to write to standard output and files

simultaneously?

A.)tee

B.)|

C.)||

D.)T

4.How do you extract the kernel from the tarball linux-2.6.14.tar.bz2?

A.)tar x linux-2.6.14.tar.bz2

B.)untar linux-2.6.14.tar.bz2

C.)tar tzvf linux-2.6.14.tar.bz2

D.)tar xjf linux-2.6.14.tar.bz2

5.You want to install the RPM package file foobar.rpm. This file is located in

/home/bob. Which command would you use to install this file?

A.)install /home/bob/foobar.rpm

B.)rpminst /home/bob/foobar.rpm

C.)rpm -i /home/bob/foobar.rpm

D.)instrpm /home/bob/foobar.rpm

6.What does the device file /dev/hdb6 represent?

A.)A logical partition on a SCSI disk drive

B.)An extended partition on an IDE disk drive

C.)A primary partition on an IDE disk drive

D.)A logical partition on an IDE disk drive

7.Which of the following commands results in mailing the content of the current directory to Bob?

A.)mail Bob < ls

B.)ls > mail Bob

C.)ls || mail Bob

D.)ls | mail Bob

8.How could you describe the following commandline? foo; bar; foobar ?

A.)The commands foo, bar and foobar are processed at the same time.

B.)The commands foo, bar and foobar are processed one after another.

C.)The command foo is processed. If it results without error, then bar and

foobar are processed.

D.)The command foo is processed. If it results without error, then bar will

be processed. If bar results without error, foobar will be processed.

9.How could you watch the contents of a logfile, even if the logfile is growing

while you're watching?

A.)tail -f logfile

B.)less -f logfile

C.)more -f logfile

D.)watch logfile

10.Which command is able to create directory structure with cycles?

A.)mkdir -p

B.)md -S

C.)ln -s

D.)ln -c

11.What is the result of the following command? cd ~foo

A.)The current directory is changed to ~foo

B.)The current directory is changed to the home directory of the user foo

C.)The current directory is changed to the nearest directory with a name ending

with foo

D.)This isn't a valid command

12.Which command is to enable owner read and write rights, group users read writes,

other users no rights?

A.)chmod u+rw

B.)chmod 640

C.)chmod 460

D.)chmod u+rwg+rw

13.How could you get a list of all running processes?

A.)ps

B.)ps ax

C.)getprocess

D.)down

14.Which of the following commands would create a hardlink named bar using the same inode as foo?

A.)ln foo bar

B.)cp -l foo bar

C.)cp -d foo bar

D.)ls -l foo bar

15.How could you display all lines of text from the file foo which are not empty?

A.)grep -v ^$ foo

B.)grep -v ^\r\n foo

C.)grep -v \r\n foo

D.)grep -v "[]" foo

16.How many primary partitions could you create with Linux on one single harddisk?

A.)1

B.)2

C.)3

D.)4

17.In the bash shell, entering the !! command has the same effect as which one of

the following?

A.)Ctrl-P and Enter

B.)Ctrl-U and Enter

C.)!-2

D.)!2

18.How could you monitor the amount of free inodes on /dev/hda3?

A.)inode --free /dev/hda3

B.)ls -i /dev/hda3

C.)dm -i /dev/hda3

D.)df -i /dev/hda3

19.How can you describe the function of the following commands: foo | tee bar |

foobar?

A.)The command foo redirects its output to the command tee. After that the

command bar redirects its output to the command foobar

B.)The command foo writes its output to the file tee; the command bar writes

its output to the file foobar

C.)The command foo redirects its output to the command tee which writes it into

the file bar and sends the same further to the command foobar

D.)The command foobar gets its input from the command bar which gets its input

from the command foo

20.After new Linux kernel image is built, which file need to modified in order to

use the new kernel?

A.)boot.conf

B.)grub.conf

C.)linux.conf

D.)none of the above

21.Which option of command gcc enables symbolic debugging?

A.)-g

B.)-d

C.)-debug

D.)None of the above.

22.How could you change the group membership of the file foobar to group foo?

A.)chown foo foobar

B.)chgrp foo foobar

C.)chgroup foo foobar

D.)chperm --group foo --file foobar

23.What statement about the du-command is true?

A.)Dump User - backups all files owned by the named user.

B.)Dos Utility - provides different features to handle DOS-filesystems.

C.)Dir User - shows the directorys owned by the named user.

D.)Disk Usage - shows the amount of diskspace used by the named directories.

24. How could you start the command foo in the background?

A.)bg foo

B.)background foo

C.)foo --background

D.)foo &

25.UNIX treats I/O devices as special files, which are stored under the directory

__________.

A.)/usr/include

B.)/bin

C.)/usr/lib

D.)/dev

26.Which UNIX command can view a text file page by page?

A.)type

B.)cat

C.)dir

D.)less

27.You've bought a new harddisk and installed it in your Linux box as master on

the second IDE-channel. After partitioning it into two primary partitions and creating filesystems on both partitions, you want to ensure, that both new partitions will be mounted automatically on boot up. What is to do?

A.)Add an entry for /dev/hdc1 and /dev/hdc2 to /etc/mtab

B.)Add an entry for /dev/hdc to /etc/mtab

C.)Add an entry for /dev/hdc1 and /dev/hdc2 to /etc/fstab

D.)Add an entry for /dev/hdc to /etc/fstab

28.Which key combination represents EOF?

A.)Ctrl-Z

B.)Ctrl-D

C.)Ctrl-F

D.)Ctrl-E

29.The LINUX operating system stores some special characters at the beginning of

every file. What is the purpose of these special characters?

A.)The size of file

B.)To count the number of files on the system

C.)To roughly indicate the type of file

D.)File protection

30.How could you describe the following commandline? foo || bar

A.)The command foo redirect its output to the command bar.

B.)The command foo writes its output into the file bar.

C.)The command bar is only processed if the command foo leaves without error.

D.)The command bar is only processed if the command foo leaves with an error.

31.Before you compile your kernel, you need to configure it. Which of the following

is NOT a correct way to configure?

A.)make config

B.)make xconfig

C.)make menuconfig

D.)make mconfig

32.After typing make bzImage, the compilation will complete server minutes later

and you'll find the bzImage file in which directory?

A.)arch/i386/image

B.)arch/i386/boot

C.)arch/i386

D.)arch

33.How do you get the online manual for administrative (not user) commands?

A.)# man 1 admin-cmd

B.)# man 2 admin-cmd

C.)# man 5 admin-cmd

D.)# man 8 admin-cmd

34.How do you get the online manual for configuration formats?

A.)# man 1 some-conf

B.)# man 2 some-conf

C.)# man 5 some-conf

D.)# man 8 some-conf

35.What command can display the contents of a binary file in a readable hexadecimal

form?

A.)xd

B.)hd

C.)od

D.)Xd

36.Linux dynamic link libraries end with __________.

A.).a

B.).so

C.).dll

D.).exe

37.Which one of the following key sequences is used to put a process into the

background to allow it to continue processing?

A.)Ctrl-B

B.)Ctrl-B and then enter the bg command

C.)Ctrl-Z

D.)Ctrl-Z and then enter the bg command

38.Which one of the following statements correctly describes the > and >> symbols

in the context of the bash shell?

A.)> appends standard output to an existing file, and >> writes standard output

to a new file.

B.)> writes standard output to a new file, and >> appends standard output to

an existing file.

C.)> writes standard error to a new file, and >> appends standard error to an

existing file.

D.)> pipes standard output to a new file, and >> pipes standard output to an

existing file.

39.What is the first step in compiling software obtained in a compressed tar archive

myapp.tgz?

A.)make install=myapp.tgz

B.)make myapp

C.)tar xzf myapp.tgz

D.)tar cvf myapp.tgz

40.What does the "sticky bit" do?

A.)It prevents files from being deleted by anyone.

B.)It marks files for deletion.

C.)It prevents files from being deleted by nonowners except root.

D.)It prev ents files from being deleted by nonowners including root.

41.What does the pr command do?

A.)It prints files to the default printer.

B.)It displays a list of active processes.

C.)It modifies the execution priority of a process.

D.)It paginates text files.

42.The shell is simply __________.

A.)a command-line interpreter

B.)a privileged program

C.)a GUI interface

D.)a set of commands.

43.Which one of the following commands would be best suited to mount a CD-ROM

containing a Linux distribution, without depending on any configuration files?

A.)mount -f linux /dev/hdc /mnt/cdrom

B.)mount -t iso9660 /dev/cdrom /mnt/cdrom

C.)mount -t linux /dev/cdrom /mnt/cdrom

D.)e. mount -t iso9660 /mnt/cdrom /dev/cdrom

44.System administration tasks must generally be performed by which username?

A.)amdin

B.)root

C.)superuser

D.)sysadmin

45.How can you get a list of all loaded kernel modules?

A.)lsmod

B.)listmod

C.)modls

D.)modinfo

46.In Unix, one process is allowed to terminate another:

A.)Under all conditions

B.)Only if both processes have the same parent

C.)If both of the processes are running under the same userid

D.)If both processes are running the same program

47.What must be the first character on every command line in a Makefile?

A.)space

B.)pound (#)

C.)tab

D.)dollar sign ($)

48.What is the default filename of an executable file produced by gcc?

A.)a.out

B.)program

C.)run.bat

D.)a.exe

49.The pipe is an example of what inter-process communication paradigm?

A.)message passing

B.)file sharing

C.)shared memory

D.)smoke signals

https://www.360docs.net/doc/4418078172.html,er A has a file xxx and allows user B to make a symbolic link to this file.

Now user A deletes the file from his directory. Which of the following options best describes what happens next?

A.)The file gets deleted and B ends up with a invalid link

B.)The file remains in A’s disk quota as long as B doesn’t delete the link

C.)The file ownership is transferred and is moved into B’s disk quota

D.)A will not be able to delete the file.

51.Which UNIX system call is used to send a signal to a process?

A.)kill

B.)signal

C.)ioctl

D.)write

52.What is the term for a small integer that is used to specify an open file in

a UNIX program?

A.)file descriptor

B.)file pointer

C.)file label

D.)file number

53.Which of the following is not a file stream opened automatically in a UNIX

program?

A.)standard input

B.)standard terminal

C.)standard error

D.)standard output

54.Which system call can ask for more memory?

A.)malloc

B.)calloc

C.)brk

D.)request

55.Which of these is not a possible return value for the system call: write(fd,

buffer, 256)?

A.)256

B.)-1

C.)250

D.)260

56.The dup () system call in LINUX comes under __________.

A.)process system calls

B.)file system calls

C.)communications

D.)memory management

57.Which of these process properties is not retained when you make an exec system

call during a running process?

A.)process ID

B.)variable values

C.)open file descriptors

D.)parent’s process ID

58.Which system call creates a new file?

A.)creat

B.)file

C.)link

D.)create

59.Which system call creates a new process?

A.)read

B.)fork

C.)create

D.)exec

60.The input parameter(s) passed INTO the pipe system call is/are:

A.)The PID of the process to which to connect the pipe.

B.)A integer value representing the pipe handle and another integer value

representing the capacity of the pipe.

C.)A pointer to an array of two integers.

D.)None of the above--pipe like fork has no parameters.

61.Which system call creates a new name for a file?

A.)creat

B.)file

C.)link

D.)create

62.What is the -c option used for in gcc?

A.)compiling multiple files into a single executable file

B.)creating an object file from a source file

C.)specifying the directory where code resides

D.)specifying that the language used is C

63.Which of the following performs the system call open?

A.)system_open

B.)sys_open

C.)open_sys

D.)open_system

64.Which of the following fields of struct task_struct contains the scheduling

priority?

A.)int processor;

B.)int leader;

C.)unsigned long personality;

D.)long counter;

65.Which of the following fields of struct task_struct contains the hardware

context?

A.)struct task_struct *pidhash_next;

B.)struct task_struct **pidhash_pprev;

C.)struct thread_struct thread;

D.)struct namespace *namespace;

66.Which of the following fields of struct task_struct contains the open-file table

information?

A.)struct list_head local_pages;

B.)struct fs_struct *fs;

C.)struct files_struct *files;

D.)struct namespace *namespace;

67.Which of the following structures describes a memory node (A Non-Uniform Memory

Access (NUMA) consists of many banks of memory (nodes))?

A.)struct pglist_data;

B.)struct node_data;

C.)struct zone;

D.)struct zonelist;

68.Which of the following structures describes the partition control block?

A.)struct partition;

B.)struct super_block;

C.)struct boot_block;

D.)struct inode;

69.Which of the following structures can be called as the FCB (File Control Block)?

A.)struct inode;

B.)struct pcb;

C.)struct file;

D.)struct dentry;

70.Which of the following structures describes one directory entry?

A.)struct inode;

B.)struct dentry;

C.)struct file;

D.)struct dir_entry;

71.Which register contains the page directory point (for virtual memory)?

A.)CR1

B.)CR2

C.)CR3

D.)CR4

72.Which of the following fields of struct inode describes the number of different

names for one same file?

A.)unsigned int i_count;

B.)nlink_t i_nlink;

C.)unsigned long i_no;

D.)off_t i_size;

73.Which of the following fields of struct inode describes the number of different

processes using one same file?

A.)unsigned int i_count;

B.)nlink_t i_nlink;

C.)unsigned long i_no;

D.)off_t i_size;

74.Which kind of structure does the current macro refer to?

A.)struct task_struct

B.)struct mm_struct

C.)struct inode

D.)struct file

75.Which of the following scheduling policy is NOT used in the default Linux kernel?

A.)SCHED_OTHER

B.)SCHED_FIFO

C.)SCHED_RR

D.)SCHED_FEEDBACK

76.Which of the following items of a hard disk partition is not cached in the Linux

kernel?

A.)boot block

B.)super block

C.)inodes

D.)directories

77.Which of the following functions can allocate virtual memory inside the kernel?

A.)alloc_page

B.)kmalloc

C.)vmalloc

D.)malloc

78.Which of the following is most appropriate?

A.)sys_clone is implemented by sys_fork

B.)sys_fork is implemented by sys_vfork

C.)sys_vfork is implemented by sys_clone

D.)sys_fork is implemented by do_fork

79.Which of the following should contain void (*read_inode)(struct inode*) ?

A.)struct super_operations

B.)struct inode_operations

C.)struct file_operations

D.)struct dentry_operations

80.When one task_struct’s state field is equal to TASK_UNINTERRUPTIBLE, it means

that __________.

A.)this task cannot be waken up

B.)this task can be waken up by any signal

C.)this task can be waken up only if an interrupt occurs and changes something

in the machine state so that the task can run again.

D.)this task can be waken up interrupt

81.Which of the following structures should contain loff_t (*llseek)(struct file*,

loff_t, int) ?

A.)struct super_operations

B.)struct inode_operations

C.)struct file_operations

D.)struct dentry_operations

82.Which of the following structures should contain int (*link)(struct dentry*,

struct inode*, struct dentry*) ?

A.)struct super_operations

B.)struct inode_operations

C.)struct file_operations

D.)struct dentry_operations

83.Which of the following is the most appropriate flow for handling system call?

A.)system_call → sys_fork → do_fork

B.)sys_fork → system_call → do_fork

C.)sys_fork → do_fork → system_call

D.)do_fork →sys_fork → system_call

84.Which of the following is the most appropriate for the kernel stack handling

system call?

A.)Every process has its own kernel space stack different from its user-space

stack.

B.)Every process has its own kernel space stack which is the same as its

user-space stack.

C.)Every process shares one common kernel space stack.

D.)None of the above.

85.Which of the following is correct?

A.)Linux 2.4 kernel can be used for real-time applications.

B.)Linux 2.4 kernel is preemptible.

C.)Linux 2.6 kernel is preemptible.

D.)None of the above.

86.Which of the following is NOT used for describe page tables?

A.)pgd_t

B.)pmd_t

C.)ptd_t

D.)pte_t

87.Which control register contains the address causing page fault?

A.)CR1

B.)CR2

C.)CR3

D.)CR4

88.As for kernel synchronization mechanisms, which of the following statements is

most appropriate?

A.)rwlock_t

B.)spinlock_t

C.)semaphore

D.)All of the above

89.Which is the first filesystem mounted by the kernel?

A.)rootfs

B.)ext2

C.)ext3

D.)vfat

90.Which is the right flow for schedule() inside the kernel?

A.)goodness → prepare_switch → switch_to

B.)prepare_switch → switch_to → goodness

C.)switch_to → prepare_switch → goodness

D.)goodness → switch_to → prepare_switch

91.As for the interaction between a processes and its open file, which of the

following is most appropriate?

A.)A process will use the FS, beginning with struct file.

B.)A process will use the FS, beginning with struct inode.

C.)A process will use the FS, beginning with struct dentry.

D.)A process will use the FS, beginning with struct super_block.

92.Which of the following functions uses the slab allocator algorithm?

A.)alloc_page

B.)kmalloc

C.)vmalloc

D.)malloc

93.Which of the following file-system types contains the info about the running

kernel?

A.)devptfs

B.)tmpfs

C.)proc

D.)ext3

94.Which of the following is the system call implementation?

A.)sys_creat

B.)sys_request

C.)sys_create

D.)sys_new

95.Which of the following fields of struct ext2_inode points to the actual file

content (not metadata)?

A.)__u32 i_blocks;

B.)__16 i_links_count;

C.)__u32 i_block[EXT2_N_BLOCKS];

D.)__u32 i_faddr;

96.Which of the following is correct about one module object modulename.o?

A.)It has to become the executable file modulename in order to use.

B.)It has to be used via insmod command

C.)It has to statically linked with a kernel in order to use.

D.)None of the above.

97.Which of the following is the right invocation flow?

A.)alloc_pages → _alloc_pages → __ alloc_pages

B.)__alloc_pages → _alloc_pages → alloc_pages

C.)__alloc_pages → alloc_pages → _alloc_pages

D.)alloc_pages → __alloc_pages → _ alloc_pages

98.Which of the following is correct for IPC (Inter-Process Communication)?

A.)semaphore

B.)shared memory

C.)message passing

D.)All the above

99.Which of the linkages should be used with sys_open?

A.)C linkage

B.)C++ linkage

C.)asm linkage

D.)none of the above.

100.Which of the following is correct?

A.)Linux kernel uses the BIOS all the time.

B.)Linux kernel uses the BIOS only during the booting.

C.)Linux kernel uses the BIOS after the booting.

D.)Linux kernel doesn’t use the BIOS at all.

浙江大学工程热力学期末考试试题

一、简答题(每小题?5?分,共?30?分) 1、未饱和湿空气经历绝热加湿过程,其干球温度、湿球温度和露点温度如何变化 2、定压、定温、绝热和定容四种典型的热力过程,其多变指数的值分别是多少 3、画出燃气轮机装置定压加热理想循环的?p-v?图和?T-s?图,并写出其用循环增压比表示的热效率公式。(假设工质为理想气体,比热取定值) 4、反映往复活塞式内燃机混合加热循环特性的设计参数有哪几个写出其定义式。 5、住宅用空调机当夏天环境温度升高时,其制冷系数和耗功量如何变化 6、为什么在湿蒸汽区域进行的绝热节流过程总是呈现节流冷效应 二、计算题(共?70?分) 1?.(?18?分)?3kmol?温度?t?1?=?100 ℃的氮气流与?1kmol?温度?t?2?=?20 ℃的空气流在管道中绝热混合。已知混合前空气的摩尔分数为:?x?N 2 ?=?0.79?、?x?O2=?0.21?,若混合前后氮气、空气和混合物的压力都相 等,试求: (1)?混合后气体的温度; (2)?混合气体中?N 2?和?O?2?的摩尔分数; (3)?对应于?1kmol?的混合气产物,混合过程的熵增。

设摩尔热容为定值:?C?p,m,N2=?29.08kJ/?(?kmol·K?)、?C?p,m?,O2=29.34kJ/?(?kmol·K?)、?R?=?8.314kJ/?(?kmol·K?) 2?.(?17?分)空气初态为?p?1=?0.4MPa?、?T?1?=?450K?,初速忽略不计。经一喷管绝热可逆膨胀到?p?2=?0.1MPa?。若空气的?Rg?=?0.287 kJ/ (kg·K)?;?c?p=?1.005 kJ/ (kg·K)?;?γ?=?c?p?/?c?v?=?1.4?; ?=0.528?;试求: 临界压力比?ν cr (1)在设计时应选用什么形状的喷管为什么 (2)喷管出口截面上空气的流速?C?f2?、温度?T?2?和马赫数?Ma?2; (3)若通过喷管的空气质量流量为?q?m?=?1kg/s?,求:喷管出口截面积和临界截面积。 3?.(?15?分)活塞式压气机每秒钟从大气环境中吸入?p?1=?0.1MPa?、?t1=?17 ℃的空气?0.1m 3?,绝热压缩到?p?2=?0.4MPa?后送入储气罐。若该压气机的绝热效率?η?c,s?=0.9?,空气的?Rg?=?0.287k J/ (kg·K)?;?c?p?=?1.005 kJ/ (kg·K);?γ?=?c?p?/?c?v?=?1.4?;试求: (1)?压气机出口的空气温度; (2)?拖动压气机所需的功率; (3)?因摩擦引起的每秒钟的熵产。 4.(?20?分)一单级抽汽回热循环如图?1所示,水蒸气进入汽轮机的状态参数为5MPa、450℃,在10kPa下排入冷凝器。水蒸气在0.45MPa压力下抽出,送入混合式给水加热器加热给水。给水离开加热器的温度为抽

浙江大学本科专业核心课程建设暂行办法

浙江大学本科专业核心课程建设暂行办法 (试行) 浙大发本【】号 第一章总则 第一条为贯彻落实教育部《关于全面提高高等教育质量的若干意见》(教育高【】号)文件精神,加快推进我校本科课程与教案改革,全面提高本科人才培养质量,结合我校实际,特制定本办法。 第二条本办法所指的本科专业核心课程是学生专业能力构成的不可或缺的专业必修课程,也是学生提升专业核心竞争力起决定作用的课程。 第三条进行专业核心课程建设须重新梳理各学科专业知识点,整合、优化专业课程体系。各院系要仔细研究现有专业课程的教案大纲,围绕专业核心知识点,同时充分考察国际一流大学相同或相近学科的本科专业课程设置,结合我校特色和优势,重新设计专业课程体系。 第四条专业核心课程建设可总体规划,分步分级实施,学校鼓励院系通过自筹经费,先行建设,并择优向学校推荐。学校专业核心课程的建设目标是,通过年建设,在全校所有本科专业中建设门左右,平均每个专业门专业核心课程。以专业核心课程建设为标杆,辐射和带动其它专业课程建设,全面提高本科课程教案质量。学校优先支持高水平教师从事本科专业核心课程讲授,以提升专业课程的教案水准。 第二章课程设计与教案 第五条专业核心课程设计以先进的教育教案理念为指导,聚焦最能反映本专业人才培养质量的关键知识点,强调传统经典知识与学科发展前沿知识相结合,课堂教案与课外实践相结合,充分研究,精心设计。 第六条专业核心课程教案要突显学生的主体性地位与教案过程的深度参

与。课程难度大,富有挑战性与吸引力。重视基于知识的方法启迪、研讨和习得,重视调动学生学习的过程参与,重视学生课前、课后的深度学习。原则上,讨论课、习题课、基于问题(项目)的学习等互动教案课时比例不低于三分之一。 第七条专业核心课程设置以每门课程学分为主,长学期开设。原则上,学分课程可设计为周学时,即每周理论讲课学时,案例讲授、讨论、基于问题(项目)的互动教案等学时,课外阅读、资料查阅、作业、小组讨论等至少学时;学分课程可设计为周学时,即每周理论讲课学时,案例讲授、讨论、基于问题(项目)的互动教案等学时,课外阅读、资料查阅、作业、小组讨论等至少学时;学分课程设计为周学时或,即每周理论讲课()学时,案例讲授、讨论、基于问题(项目)的互动教案等()学时,课外阅读、资料查阅、作业、小组讨论等至少()学时;以此类推。研讨或案例课应分小班进行,具体视各课程教案需要定。 第八条核心课程采用多种方式,有效评价学生的学习质量。强调课程考核由结果评价向过程评价转变,学生研讨课表现、平时作业(论文)、平时测验、期末考试等均有清晰而明确评分,要求多维度评价学生学业。 第九条学校鼓励有条件的院系采用双语教案。 第三章教案团队与职责 第十条课程负责人是专业核心课程建设的主要领导人和责任人,一门专业核心课程设一位课程负责人。课程负责人同时必须是该课程的主讲教师,学校授予课程负责人该课程“首席主讲教师”荣誉称号。课程负责人可以在现有的教师队伍中遴选产生,也可在全球范围内招聘。 第十一条各专业可根据实际课程学分、专业人数和学科特点,由课程负责人负责组建教案团队。教案团队由首席主讲教师、主讲教师和助教组成。原则则上,除首席主讲教师外,主讲教师不超过人。个别特别学科,可酌情增加。原则上每人的讨论班可配备名助教,助教可由本学科的年轻教师或在职博士生担任。 第十二条专业核心课程负责人任职条件: 1.必须具有相当于教授的专业技术职称(本领域资深教授);

浙江大学管理学期末考试题

管理学院本科生《管理学》期末考试试题及参考答案 (考试时间:150分钟) 一、单选题(每题2分,共30分) 1、下列关于授权的表述正确的是(D) A授权相当于代理职务B授权是部门划分产生的 C授权是分权的延伸 D授权是上级在一定条件下委授给下属的自主权 2、控制工作的关键步骤是(B) A制定计划B拟定标准C衡量成就D纠正偏差 3、从某种意义上讲,组织就是一个信息沟通网络,处在这个信息网络中心并对网络的畅通负有责任的人是(B) A信息系统管理员B高层管理者C一线员工D主管人员 4、进行了霍桑试验并导致人际关系学说问世的管理学家是(D) A罗伯特·欧文B亨利·法约尔C泰罗D梅奥 5、战略决策的特点是(D) A非常规性、风险性、进行的难度大B非常规性C风险性、全局性、进行的难度大 D非常规性、全局性、进行的难度大 6、领导工作的领导者(A) A为实现本群体目标尔对被领导者施加影响的各种活动 B为实现其领导目标而进行的各项管理活动 C 在其权限范围内进行的有利于实现组织目标的各种活动 D对被领导者施加各种影响的所有活动 7、赫茨伯格的双因素理论认为,激励因素是(C)

A那些使人得到满足就没有不满,得不到满足则产生不满的因素 B那些使人得到满足就没有不满,得不到满足则没有满意的因素 C那些使人得到满足则感到满意,得不到满足则没有满意感觉的因素 D哪些使人得到满足则感到满意,得不到满足则产生不满的因素 8、授权的基本过程是(C) A规定职责、授予权力、进行监控、兑现奖惩 B分派任务、授予权力、规定奖惩、确立监控权 C分派任务、授予权力、明确责任、确立监控权 D规定职责、授予权力、确立监控权、兑现奖惩 9、某位管理人员把大部分时间都花在直接监督下属工作上,他一定不会是(A) A厂长 B总经理C领班D车间主任 10、控制工作中,评估和分析偏差信息时,首先要:(C) A判别偏差产生的主要原因B判别偏差产生的严重程度 C找出偏差产生的确切位置D找出偏差产生的责任人 11、非正式组织的存在及其活动,对正式组织有积极与消极两方面的影响,其中对于正式组织目标的实现所起的积极促进作用的最主要表现在:(D) A增强其成员的群体意识B加强对其成员的行为规范 C促进群体成员意见的一致D更好地满足其成员的心理需要 12、一个组织结构呈金字塔状的企业内,对于其上层管理的描述(与中层管理相比),哪? 项是恰当的:(C) A管理难度与管理幅度都较小B管理难度较小,但管理幅度较大 C管理难度较大,但管理幅度较小D管理难度与管理幅度都较大

浙江大学课程简介和教学大纲格式

实验课程简介和实验教学大纲格式 课程名称: 英文名称: 课程编号: 课程学分:实验学分:实验总学时: 面向对象: 预修课程要求: 一、课程介绍 (一)中文简介(100-150字) (二)英文简介 二、教学目标 三、课程要求(包括考勤制度、实验室安全、实验准备、实验报告、考核方式等) 四、主要仪器设备 五、实验课程内容与学时分配 六、参考教材及相关资料 七、课程教学网站 示例 课程名称:大学化学实验A 英文名称:Experiments of College Chemistry 课程编号:06112200 课程学分:1 实验学分:1 实验总学时:32 面向对象:化学与制药类;食品科学与工程;环境科学与工程类;化工与制药类;生物工程类;生物系统工程类 预修课程要求:按课程要求规定 一、课程介绍 (一)中文简介:(100-150字) 大学化学实验A是依据物质的物理和物理化学性质建立发展起来的分析方法所开设的课程。掌握和运用各种复杂的分析仪器对近化类学生从事科学研究和工作是非常必要的。大学化学实验A是化学类学生的专业基础课,是一门理论性及实践性很强的课程。教学中涉及较新和较广泛的仪器分析方法。 (二)英文简介: 二、教学目标 通过这种多层次、全面系统的实验训练,应达到下列要求: 1、使学生初步了解仪器分析的研究方法,掌握其基本实验技术和技能。 2、学会并掌握化学实验现象的观察和记录、实验条件的判断和选择、实验数据的测量和处理、实验结果的分析和归纳等一套严谨的实验方法。 3、熟悉常用现代分析仪器的操作使用,规范地掌握仪器分析的定性、定量分析的基本实验操作和技能。 4、了解常用仪器的构造、原理及其使用方法,了解近代大型精密仪器的性能及其在化学和高新技术中的应用。 5、在实验的全过程中,培养学生勤奋学习、求真、求实的科学品德,培养学生的动手能力、观察能力、查阅文献能力、思维能力、想象能力、表达能力。

2013年浙大操作系统原理第1次在线作业

您的本次作业分数为:100分单选题 1.为了实现多道程序设计,计算机需要有() A 更大的内存 B 更快的外部设备 C 更快的CPU D 更先进的终端 正确答案:A 单选题 2.下列选择中,()不是操作系统关心的主要问题 A 管理计算机裸机 B 设计、提供用户程序与计算机硬件系统的界面 C 管理计算机系统资源 D 高级程序设计语言的编译器 正确答案:D 单选题 3.实现进程互斥时,用()对应,对同一个信号量调用PV操作实现互斥。 A 一个信号量与一个临界区 B 一个信号量与一个相关临界区 C 一个信号量与一组相关临界区 D 一个信号量与一个消息 正确答案:C 单选题 4.在采用抢占式优先权进程调度算法的系统中,正在运行进程的优先权是()。 A 系统中优先权最高的进程 B 比就绪队列中进程优先权高的进程 C 比就绪队列中进程优先权不一定高的进程 正确答案:B 单选题 5.分时系统中,为使多个用户能够同时与系统交互,最关键的问题是()。

A 计算机具有足够的运行速度 B 内存容量应足够大 C 系统能及时地接收多个用户输入 D 能在一短的时间内,使所有用户程序都能运行 E 能快速进行内外存对换 正确答案:D 单选题 6.支持多道程序设计的操作系统在运行过程中,不断地选择新进程运行来实现CPU的共享,但其中()不是引起操作系统选择新进程的直接原因。 A 运行进程的时间片用完 B 运行进程出错 C 运行进程要等待某一时间发生 D 有新进程进入就绪状态 正确答案:D 单选题 7.进程从阻塞状态进入就绪状态可能是由于(). A 现运行进程运行结束 B 现运行进程执行了P操作 C 现运行进程执行了V操作 D 现运行进程时间片用完 正确答案:C 单选题 8.在操作系统中进程是一个具有一定独立功能程序在某个数据集合上的一次()。 A 并发活动 B 运行活动 C 单独操作 D 关联操作

ZJU课程覆盖关系

浙江大学本科教学大类课程替换关系一览表 序号课程代码级课程中文名称学分替换关系课程代码课程中文名称学分替换关系课程代码课程中文名称学分 1 011A0011 宏观经济学(甲)3.0 ≥011A001 2 宏观经济学(乙)2.0 2 011A0041 微观经济学(甲)3.0 ≥011A0042 微观经济学(乙)2.0 3 031A0010 教育学3.0 ≥031A0040 教育学2.0 4 061B9050 分析化学(甲)Ⅰ2.0 ≥061B9070 分析化学(乙)3.0 061B9060 分析化学(甲)Ⅱ3.0 5 061B0030 概率论1.5 ≥061B9090 概率论与数理统计2.5 061B0100 数理统计1.5 6 061B0270 数理方法(甲)Ⅰ4.0 ≥061B0290 数理方法(乙)4.0 061B0280 数理方法(甲)Ⅱ2.0 7 061B0110 数学分析(甲)Ⅰ4.5 ≥061B0170 微积分Ⅰ4.5 061B0120 数学分析(甲)Ⅱ4.5 061B0180 微积分Ⅱ2.0 061B0190 微积分Ⅲ1.5 8 061B0110 数学分析(甲)Ⅰ4.5 ≥061B0170 微积分Ⅰ4.5 9 061B0120 数学分析(甲)Ⅱ4.5 ≥061B0180 微积分Ⅱ2.0 061B0190 微积分Ⅲ1.5 10 061B0170 微积分Ⅰ4.5 ≥061B0060 高等数学4.0 061B0180 微积分Ⅱ2.0 11 061B0040 高等代数Ⅰ3.5 ≥061B0200 线性代数2.5 061B0050 高等代数Ⅱ3.5 12 061B0300 物理学Ⅰ3.0 ≥061B0211 大学物理(甲)Ⅰ4.0 ≥061B0212 大学物理(乙)Ⅰ3.0 061B0310 物理学Ⅱ5.0 061B0221 大学物理(甲)Ⅱ4.0 061B0222 大学物理(乙)Ⅱ3.0 061B0320 物理学Ⅲ4.0 13 061B0300 物理学Ⅰ3.0 ≥061B0211 大学物理(甲)Ⅰ4.0 ≥061B0212 大学物理(乙)Ⅰ3.0 061B0310 物理学Ⅱ5.0 14 061B0320 物理学Ⅲ4.0 ≥061B0221 大学物理(甲)Ⅱ4.0 ≥061B0222 大学物理(乙)Ⅱ3.0 15 061B0330 物理学实验Ⅰ1.5 ≥061B0240 大学物理实验1.5 061B0340 物理学实验Ⅱ1.5 061B0350 物理学实验Ⅲ1.5 16 061B0450 无机及分析化学4.0 ≈061B0430 普通化学3.0 ≥061B0410 工程化学2.0 17 061B0580 综合化学实验3.0 ≈061B9101 综合化学实验(甲)3.0 ≥061B9102 综合化学实验(乙)2.0 18 061B0421 化学实验(甲)1.5 ≥061B0422 化学实验(乙)1.0 ≥061B0423 化学实验(丙)0.5 19 071B0031 生态学及实验(甲)4.0 ≥071B0032 生态学及实验(乙)3.0 20 071B0051 生物化学(甲)4.0 ≥181B0052 生物化学(乙) 3.0 21 071B0061 生物化学实验(甲)2.0 ≥181B0062 生物化学实验(乙) 1.5 22 071B0051 生物化学(甲)4.0 ≥181B0052 生物化学(乙) 3.0 ≥071B0070 生物化学及实验(丙) 4.0 071B0061 生物化学实验(甲)2.0 181B0062 生物化学实验(乙) 1.5 23 071B0041 微生物学及实验(甲)4.0 ≥071B0042 微生物学及实验(乙)3.0 24 071B0081 细胞生物学及实验(甲)4.0 ≥071B0082 细胞生物学及实验(乙)3.0 25 071B0091 植物生理学及实验(甲)4.0 ≥071B0092 植物生理学及实验(乙)3.0 26 071B0101 植物学及实验(甲)4.0 ≥071B0102 植物学及实验(乙)3.0

2015浙大远程操作系统原理在线作业

您的本次作业分数为:97分单选题 1.【第01~04章】在操作系统中引入“进程”概念的主要目的是()。 A 改善用户编程环境 B 提高程序的运行速度 C 描述程序动态执行过程的性质 D 使程序与计算过程一一对应 正确答案:C 单选题 2.【第01~04章】现代操作系统的基本特征是()、资源共享和异步性。 A 多道程序设计 B 中断处理 C 实现分时与实时处理 D 程序的并发执行 正确答案:D 单选题 3.【第01~04章】操作系统的管理部分负责对进程进行调度。 A 主存储器 B 控制器 C 运算器 D 处理机 正确答案:D 单选题 4.【第01~04章】下面的叙述中正确的是()。 A 操作系统的一个重要概念是进程,因此不同进程所执行的代码也一定不同 B 为了避免发生进程死锁,各个进程只能逐个申请资源 C 操作系统用PCB管理进程,用户进程可以从PCB中读出与本身运行状况有关的信息 D 进程同步是指某些进程之间在逻辑上的相互制约关系

单选题 5.【第01~04章】用户在程序中试图读存放在硬盘中某文件的第10逻辑块,使用操作系统提供的接口是()。 A 进程 B 系统调用 C 库函数 D 图形用户接口 正确答案:B 单选题 6.【第01~04章】实时操作系统对可靠性和安全性的要求极高,它()。 A 十分注意系统资源的利用率 B 不强调响应速度 C 不强求系统资源的利用率 D 不必向用户反馈信息 正确答案:C 单选题 7.【第01~04章】在操作系统中,一般不实现进程从()状态的转换。 A 就绪→等待 B 运行→就绪 C 就绪→运行 D 等待→就绪 正确答案:A 单选题 8.【第01~04章】当被阻塞进程所等待的事件出现时,如所需数据到达或者等待的I/O操作已完成,则调用唤醒原语操作,将等待该事件的进程唤醒。请问唤醒被阻塞进程的是()。 A 父进程 B 子进程 C 进程本身

浙江大学组合优化期末试题

浙江大学组合优化往年试卷 1.设图G=(V,E)为无向简单图,V ?V为顶点子集。若G(V )是一个 完全图,则称V 是G的团(clique)。求给定图的顶点数最多的团的问题称为图的最大团。 (a)证明:V ?V是G的团当且仅当V \V是G 的顶点覆盖,这里G = (V ,E ),对任意的u,v∈V,uv∈E 当且仅当uv∈E; (b)证明:图的最大团是N P?难问题; (c)求给定图的顶点数最少的顶点覆盖的问题称为图的最小顶点覆 盖。试利用图的最大基数匹配问题的算法设计图的最小顶点覆盖 问题的多项式时间近似算法,并证明其最坏情况界不超过2; (d)基于(a)给出的图的顶点覆盖与团的关系,是否可由类似于(c) 的思路给出图的最大团问题最坏情况界为2的多项式时间近似算 法,为什么? 2.某航空公司计划在全国选择若干个机场组建基地。设在机场j组建基地 所需费用为c j,j=1,···,n。若该公司在机场i和机场j的基地组建完成,则可开通往返两地的航班并获得票款收益r ij,1≤i

4.给定正整数集S=s1,s2,···,s n,s1≤s2≤···s n,记l(S )为S的子集S’中 所含元素之和, σ(S)=min l(S 1 ) l(S2) S1?S,S2?S,S1∩S2=?,l(S1)≥l(S2) (a)若S为超增集,即对任意1≤j≤n?1,s j+1> j i=1 s i,则最相近子集问题是多项式时间可解的。试给出多项式时间算法并证明其最优性; (b)设对任意1≤j≤n?1,s j+1≥αs j,这里α≈1.324为方程x3?x? 1=0的正根。但存在j,1≤j≤n?1,使得s j+1≤ j i=1 s i,记k为满足 j i=k+1s i1)。如何将上述方案推广到银币堆数更多的情况? 2

浙江大学工商企业管理都有哪些主要课程

浙江大学工商企业管理都有哪些主要课程 一、浙江大学工商企业管理专业介绍 工商企业管理专业是自学考试学科调整后产生的新专业。这一专业的设置是为了培养在社会主义市场经济条件下从事工商业及其他各类企业管理方面工作的专门人才。经过专业学习,成绩合格者应系统地掌握现代管理理论、有广泛的知识。熟悉各类管理的基本技能和科学方法,能够胜任企业管理工作。二、工商企业管理专业的培养目标 为了满足工商企业管理专业培养目标的要求,选学工商管理专业的自考生应具有爱国主义和集体主义精神,有良好的道德情操,遵守法纪、法规,热爱并乐于从事各类管理工作,具有责任心。工商管理专业专科层次的学习,以政治理论、经济理论。基础课程和适用广泛的管理专业理论学习为主。专科成绩合格者应能从事具有管理性质的基础工作和一般的经营活动。工商管理专业本科层次的学习,是在专科知识的基础上,进一步扩展管理理论和管理知识的学习,增加中、高层次管理工作必须掌握的技能和方法,提高本科自考生的工作适应性。三、工商企业管理专业的 二、浙江大学工商企业管理课程设置 1.课程分类 专科段课程 (1)马克思主义理论和品德教育课:“马克思主义哲学原理”、“邓小平理论概论”、“法律基础与思想道德修养”。 (2)应用基础课:“高等数学(-)”、“大学语文(专)”、“英语 (一)”。

(3)学科基础课:“政治经济学(财经类)”、“计算机应用基础”、“基础会计学”、“国民经济统计概论”、“经济法概论(财 经类)”、“企业会计学”、“中国税制”(4)专业课:“企业管理 概论”、“生产与作业管理”、“市场营销学”、“人力资源管理(一)”、“国际企业管理”。 独立本科段考试课程: (1)政治理论课:“毛泽东思想概论”。 (2)应用基础课:“英语(二)”【或“日语(二)”或“俄语 (二)”】、“概率论与数理统计(经管类)”、“线性代数(经管类)”。 (3)学科基础课:“管理系统中计算机应用”、“管理学原理”、“国际贸易理论与实务”、“金融理论与实务”、“财务管理学”、“组织行为学”。 (4)专业课:“企业经营战略”、“质量管理(一)”、“企业管 理咨询”。 2.修业年限:四年 授予学位:管理学学士 三、浙江大学工商企业管理报考条件 1.热爱祖国,立志求学,遵纪守法 2.应届高考毕业生,无文理科类型限制 3.对口专业中专毕业生 4.少量优秀往届高中毕业生

浙大远程操作系统原理在线作业及答案

操作系统原理在线作业 1.对磁盘进行移臂调度时,既考虑了减少寻找时间,又不频繁改变动臂的移动方向的调度算法是( C )。 A 先来先服务 B 最短寻找时间优先 C 电梯调度 D 优先级高者优先 2.下列进程调度算法中,综合考虑进程等待时间和执行时间的是( D )。 A 时间片轮转调度算法 B 短进程优先调度算法 C 先来先服务调度算法 D 高响应比优先调度算法 3.I/O系统有三种常用方式来与主机交换数据,它们是程序轮询方式、中断方式和DMA方式,其中DMA方式主要由硬件来实现,此时高速外设和内存之间进行数据交换( B )。 A 不通过CPU的控制,不利用系统总线 B 不通过CPU的控制,利用系统总线 C 通过CPU的控制,不利用系统总线 D 通过CPU的控制,利用系统总线 4. 某进程由于需要从磁盘上读入数据而处于等待状态.当系统完成了所需的读盘操作后,此时该进程的状态将( D )。 A 从就绪变为运行 B 从运行变为就绪 C 从运行变为阻塞 D 从等待变为就绪 5.在段页式存储管理系统中时,每次从主存中取指令或取操作数,至少要访问( C )主存。 A 1次 B 2次 C 3次 D 4次 6.设某进程的页访问串为:1、3、1、2、4,工作集为3块,问:按FIFO页面替换算法,当访问4号页面时,应淘汰( C )号页面。 A 1 B 2 C 3 D 4 7.假设一个正在运行的进程对信号量S进行了P操作后,信号量S的值变为-1,此时该进程将( A )。 A 转为等待状态 B 转为就绪状态 C 继续运行 D 终止 8. 下列选项中,降低进程优先级的合理时机是( A )。 A进程的时间片用完 B进程刚完成I/O,进入就绪队列 C进程长期处于就绪队列中 D进程从就绪态转为运行态9.两个进程合作完成一个任务,在并发执行中,一个进程要等待其合作伙伴发来信息,或者建立某个条件后再向前执行,这种关系是进程间的( A )关系。 A 同步 B 互斥 C 竞争 D 合作 10. 当被阻塞进程所等待的事件出现时,如所需数据到达或者等待的I/O操作已完成,则调用唤醒原语操作,将等待该事件的进程唤醒。请问唤醒被阻塞进程的是( D )。 A 父进程 B 子进程 C 进程本身 D 另外的或与被阻塞进程相关的进程 11.文件系统接到用户给出的“打开”文件的操作命令后,文件系统要完成的工作之一是(C ) A 根据用户提供的参数在文件的目录项中填入文件名等文件属性 B 确定文件的存储结构 C 把存储介质上的文件有关属性(目录)读入内存 D 按照给定的该文件的记录号查找索引表 12.从使用的角度来分析设备的特性,可以把设备分成( D )。 A 物理设备和逻辑设备 B 字符设备和块设备 C 低速设备和高速设备 D 独占设备和共享设备 13.分段系统中信息的逻辑地址到物理地址的变换是通过( A )来实现的。 A 段表 B 页表 C 物理结构 D 重定位寄存器 14.在哲学家进餐问题中,若仅提供5把叉子,则同时要求进餐的人数最多不超过( C )时,一定不会发生死锁。 A 2 B 3 C 4 D 5 15. 下列选项中,导致创建新进程的操作是(C)。I.用户登录成功 II.设备分配 III.启动程序执行 A 仅I和II B 仅II和III C 仅I和III D I、II和III 16.在请求调页系统中有着多种置换算法,选择最先进入内存的页面予以淘汰的算法称为( A )。 A FIFO算法 B OPT算法 C LRU算法 D NRU算法 E LFU算法 17. 并行技术可使系统的各种硬件资源尽量并行工作,这样的程序执行环境具有独立性、随机性和( D )。 A 封闭性 B 多发性 C 顺序性 D 资源共享性 18.当处理机系统中,可并行的是( D )。Ⅰ. 进程与进程Ⅱ. 处理机与设备Ⅲ. 处理机与通道Ⅳ. 设备与设备 A Ⅰ、Ⅱ和Ⅲ B Ⅰ、Ⅱ和Ⅳ C Ⅰ、Ⅲ和Ⅳ D Ⅱ、Ⅲ和Ⅳ 19.总体上说,请求分页是个很好的虚拟内存管理策略。但是,有些程序设计技术并不适合于这种环境。例如:(D )。 A 堆栈 B 线性搜索 C 矢量运算 D 二分法搜索 20.使用银行家算法来避免死锁的操作系统是( D )。 A Windows XP B Linux C FreeBS D UNIX D A、B、C都不是 21. 现代操作系统的基本特征是( D )、资源共享和异步性。

浙江大学 研究生 期末考试 分子生物学复习题

分子生物学复习题 一、柯越海教授(导论、基因组与基因组变异、分子生物学与模式动物) 1、Central dogma中心法则 Gene--One enzyme(polypeptide)hypothesis一基因一个酶(多肽)假说: 2、One Gene Beadle和Tatum利用红色面包霉不同类型营养缺陷型突变株,发现营养缺陷和基因突变直接相关,每一种基因突变只阻断某一生化反应,而每一种生化反应都特异性依赖一种酶的催化,从而提出一个基因一个酶假说。 但有些酶由多条肽链聚合才有活性,一条多肽链也可以是多种酶的组成成分。在一个基因一个酶假说基础上产生了一个基因一条多肽链假说,认为一个基因决定一条多肽链的结构。一个基因一条多肽链假说具有普遍意义。 3、Translational medicine转化医学: 转化医学是一种医学研究,试图在基础研究和临床治疗之间建立更直接的关系,把生物医学的研究成果转化为有前景的新型诊断试验、治疗及药物。 加速从循证医学到可持续解决方案的进程,进而解决公众健康问题。 4、Robertsonian translocation罗伯逊易位: 常见人类染色体结构异常,又称着丝粒融合,一种特殊类型的交互易位。两个端部着丝粒染色体在着丝粒处发生断裂,一条染色体的长臂与另一条染色体的短臂发生交换,形成一条大染色体和一条由两个短臂重接而成的小染色体,后者在减数分裂过程中丢失。 短臂携带的遗传信息少,丢失并不影响易位携带者的表型及智力,但其后代有患唐氏综合症的风险。 5、Genome基因组: 生物体所携带的全部遗传信息。即单倍体细胞中全套染色体为一个基因组,或是单倍体细胞中全部基因为一个基因组。 6、Histone组蛋白: 组蛋白是真核生物染色体的基本结构蛋白,是一类保守的小分子碱性蛋白质,富含带正电碱性氨基酸,能够同DNA中带负电磷酸基团相互作用,有五种类型:H2A、H2B、H3、H4、H1。组蛋白H2A、H2B、H3、H4各两分子组成蛋白八聚体,外绕DNA形成核小体,H1独立于核小体外,结合在连接相邻两个核小体的DNA分子上。 7、Chromosome染色体: 细胞内具有遗传性质的物体,是遗传信息载体,是高度螺旋化的染色质,易被碱性染料染成深色。由DNA、蛋白质和少量RNA组成。 8、Polymorphisms多态性: 生物群体内存在和等位基因相关的若干种表现型,是单一基因座等位基因变异性在群体水平的体现。MHC(主要组织相容性复合体)是人类多态性最为丰富的基因系统。 9、Linkage disequilibrium连锁不平衡: 不同座位上等位基因连锁状态的描述,指这些等位基因在同一条染色体上出现的频率大于随机组合的预期值。导致连锁不平衡的原因包括:遗传漂变、突变、选择、基因转换、群体混合等。 10、Genetic marker遗传标记:

浙江大学本科课程简介和教学大纲

课程简介和教学大纲 课程代码:15120660 课程名称:嵌入式系统设计 学分: 5.0 周学时:4.0-2.0 面向对象:大学本科生 预修课程要求:微机原理、C程序设计 一、课程介绍(100-150字) (一)中文简介 《嵌入式系统设计》是工科学生学习掌握嵌入式系统的结构原理、ARM处理器核的设计原理和方法、理解操作系统的基本原理、学习掌握嵌入式应用软件开发的主要流程和相关技术的一门课程,重点在于理解ARM体系结构及其组成嵌入式系统的结构原理基础上,培养学生具备初步的嵌入式系统软硬件设计开发能力。课程内容主要包括ARM处理器核的设计原理,ARM体系结构,ARM编程模型及指令集,ARM调试结构与存储器层次,操作系统的I/O接口技术、操作系统进程与线程的概念和管理、并发、进程间通信,操作系统的内存管理策略,调度算法和实时调度算法等内容,并以树莓派实验板为基础进行相应的实验设计,掌握嵌入式系统设计开发能力。 (二)英文简介 《Embedded System Design》is one of the basic courses for engineering students to master the structural principle of embedded system, principle and method of ARM core design, basic principle of operating system, the main process of embedded application software development and related technologies. The priority of this course is making students have an initial capacity of embedded system hardware and software design and development based on understanding the ARM architecture and composition of the embedded system. Course content includes core design of ARM processor, ARM architecture, ARM programming model and instruction set, ARM debug architecture and memory hierarchy, IO technologies of operating system, concept and management of operating system processes and threads, concurrent, inter-process communication, memory management, scheduling algorithm and real-time scheduling algorithm etc. Experimental design on Raspberry Pi2 development board may also be made to know the embedded system design and development process well. 二、教学目标 (一)学习目标 本课程通过嵌入式系统的开发平台,使学生熟悉嵌入式应用开发流程,更方便地学习和理解嵌入式系统的基础知识,使学生具备基本的嵌入式系统的软硬件设计能力。以ARM

2005-2006(方)浙江大学普通物理学PHYSICS期末考试试卷

浙江大学2005–2006学年秋冬季学期 《普通物理II 》课程期末考试试卷 开课学院:理学院,考试形式:闭卷,允许带__计算器_入场 考试时间:_2006 年__01__月_ 13___日, 所需时间: 120 分钟 考生姓名: ____ _学号:专业: ________ Ⅰ. Fill in the space underlined. (50%) 1. Figure 1 shows a Thomson atom model of helium (He, Z=2). Two electrons, at rest, are embedded inside a uniform sphere of positive charge 2e. The distance d of between the electrons is so that the configuration is in static equilibrium. 2. A point charge +q is a distance d/2 from a square surface of side d and is directly above the center of the square as shown in Fig. 2. The electric flux through the square is of . 3. A resistor is in the shape of a truncated right circular cone (Fig.3). The end radii are a and b, and the length is L. If the tape is small, we may assume that the current density is uniform across any cross section. The resistance of this subject is .

浙江大学本科课程课堂教学质量评价实施办法

浙江大学本科课程课堂教学质量评价实施办法 (2009年10月修订) 课堂教学质量评价是本科教学质量保障体系的核心环节,为进一步推进本科教学改革,加强教学质量保障体系的建设,进一步提高课程教学质量,根据《关于加强本科教学质量监控工作的若干意见》(浙大发教〔2006〕46号)文件精神和新的人才培养目标,特修订本办法。 一、评价目的 本科课程课堂教学质量评价的目的是以评促教,提升教师教学水平,提高本科课程教学质量,同时为学校教学相关决策提供有效信息,实现学校人才培养目标。 二、评价范围 评价范围包括所有全日制本科课程的课堂教学,不包括实习和毕业环节。 评价对象包括“教师”和“课程”,即某课程任课教师的课堂教学质量和课程的教学质量,即“人·课”。 三、评价指标 理论课、实验课、体育课和双语课分别制订评价指标。评价指标详见附件。 四、评价人员及权重 1.评价人员 参加本科课程课堂教学质量评价的评价人员由两部分组成:一是学生;二是同行及管理人员,包括院系主管教学领导、教学

督导和教学管理人员。 2.权重 原则上,学生评价权重占70%,同行及管理人员评价权重占30%(院系主管教学领导、教学督导和教学管理人员各占10%)。 五、评价方式和流程 学生评价和同行及管理人员评价均在现代教务管理系统进行。系统首先剔除每一个评价对象即“人·课”的最高5%和最低5%学生评价分,再与同行及管理人员评价分汇总,经过加权统计,得出综合评价分,并将综合评价分按类别由高到低排序。 评价工作流程见附件3。 六、评价结果及等级评定 1. 评价结果分优秀、良好、合格、不合格四个等级。按同类可比的原则分类排序,并按一定比例确定评价等级。 2.全校课程按以下类别统计评价结果。 (1)通识课程:思政类、军事理论类、公共体育类、外语类、计算机类、历史与文化类、文学与艺术类、沟通与领导类、科学与研究类、经济与社会类、技术与设计类、新生研讨课等。 (2)大类课程:数学类、物理类、化学类、生物类、工程类、设计及艺术类、经管类和文史哲类等。 (3)全校性公共选修课:人文社科类、理工农医类等。 (4)专业课程:按同一学院或学系分别统计评价结果。 (5)双语课程:文科类、理科类和工科类等。 每门课程只能归入其中一类,并在此类中按综合评价分由高

2014春_浙大__操作系统原理_在线作业

在线作业您的本次作业分数为:100分 单选题 1.对磁盘进行移臂调度时,既考虑了减少寻找时间,又不频繁改变动臂的移动方向的调度算法是()。 A 先来先服务 B 最短寻找时间优先 C 电梯调度 D 优先级高者优先 正确答案:C 单选题2.下列进程调度算法中,综合考虑进程等待时间和执行时间的是()。A 时间片轮转调度算法 B 短进程优先调度算法 C 先来先服务调度算法 D 高响应比优先调度算法 正确答案:D 单选题 3.I/O系统有三种常用方式来与主机交换数据,它们是程序轮询方式、中断方式和DMA方式,其中DMA方式主要由硬件来实现,此时高速外设和内存之间进行数据交换( )。A 不通过CPU的控制,不利用系统总线 B 不通过CPU的控制,利用系统总线 C 通过CPU的控制,不利用系统总线 D 通过CPU的控制,利用系统总线 正确答案:B 单选题4. 某进程由于需要从磁盘上读入数据而处于等待状态。当系统完成了所需的读盘操作后,此时该进程的状态将()。 A 从就绪变为运行 B 从运行变为就绪 C 从运行变为阻塞 D 从等待变为就绪 正确答案:D 单选题 5.在段页式存储管理系统中时,每次从主存中取指令或取操作数,至少要访问()主存。 A 1次 B 2次 C 3次 D 4次 正确答案:C 单选题6.设某进程的页访问串为:1、3、1、2、4,工作集为3块,问:按FIFO页面替换算法,当访问4号页面时,应淘汰( )号页面。A 1 B 2 C 3 D 4 正确答案:A 单选题7.假设一个正在运行的进程对信号量S进行了P操作后,信号量S的值变为-1,此时该进程将()。A 转为等待状态

浙大远程教育操作系统原理离线作业参考答案

浙江大学远程教育学院 《操作系统原理》课程作业 姓名:学号: 年级:学习中心:————————————————————————————— 一、单选题 1.进程P0和P1的共享变量定义及其初值为 boolean flag[2]; int turn=0; flag[0]=FALSE;flag[1]=FALSE; 若进程P0和P1访问临界资源的类C代码实现如下: void P0() 两个进程P1和P2描述如下: shared data: int counter = 6; P1 : Computing; counter=counter+1; P2 : Printing; counter=counter-2; 两个进程并发执行,运行完成后,counter的值不可能为C。 A. 4 B. 5 C. 6 D. 7 3.某计算机采用二级页表的分页存储管理方式,按字节编址,页大小为210字节,页表项大小为2字节,逻辑地址结构为: 页目录号页号页内偏移量 逻辑地址空间大小为216页,则表示整个逻辑地址空间的页目录表中包含表项的个数至少是B A.64 B.128 C.256 D.512 4.在动态分区系统中,有如下空闲块: 空闲块块大小(KB)块的基址 1 80 60 2 75 150

3 55 250 4 90 350 此时,某进程P请求50KB内存,系统从第1个空闲块开始查找,结果把第4个空闲块分配给了P进程,请问是用哪一种分区分配算法实现这一方案C A.首次适应 B. 最佳适应 C. 最差适应 D. 下次适应 5.在一页式存储管理系统中,页表内容如下所示。 页号帧号 0 2 1 1 2 8 若页大小为1K,逻辑地址的页号为2,页内地址为451,转换成的物理地址为A A.8643 B. 8192 C. 2048 D. 2499 6.采用段式存储管理的系统中,若地址用32位表示,其中20位表示段号,则允许每段的最大长度是B A.224 B. 212 C. 210 D. 232 7.在一段式存储管理系统中,某段表的内容如下: 段号段首址段长 0 100K 35K 1 560K 20K 2 260K 15K 3 670K 32K 若逻辑地址为(2, 158),则它对应的物理地址为__B___。 A. 100K+158 B. 260K+158 C. 560K+158 D. 670K+158 8.一个分段存储管理系统中,地址长度为32位,其中段长占8位,则最大段长是C A. 28字节 B. 216字节 C. 224字节 D. 232字节 9.有一请求分页式存储管理系统,页面大小为每页100字节,有一个50×50的整型数组按行为主序连续存放,每个整数占两个字节,将数组初始化为0的程序描述如下:int A[50][50]; for (int i = 0; i < 50; i++) for (int j = 0; j < 50; j++) A[i,j] = 0;

相关文档
最新文档