Unix/Linux开发面试题


Posted in 面试题 onAugust 16, 2016
Question 1: What is the major advantage of a hash table? (Asked by Silicon Magic Corp. people)

Answer: The major advantage of a hash table is its speed. Because the hash function is to take a range of key values and transform them into index values in such a way that the key values are distributed randomly across all the indices of a hash table.

Question 2: What are the techniques that you use to handle the collisions in hash tables?(Asked by Silicon Magic Corp. people)

Answer: We can use two major techniques to handle the collisions. They are open addressing and separate chaining. In open addressing, data items that hash to a full array cell are placed in another cell in the array. In separate chaining, each array element consist of a linked list. All data items hashing to a given array index are inserted in that list.

Question 3: In Unix OS, what is the file server? (Asked by Silicon Magic Corp. people)

Answer: The file server is a machine that shares its disk storage and files with other machines on the network.

Question 4: What is NFS? What is its job?(Asked by Silicon Magic Corp. people)

Answer: NFS stands for Network File System. NFS enables filesystems physically residing on one computer system to be used by other computers in the network, appearing to users on the remote host as just another local disk.

Question 5: What is CVS? List some useful CVS commands.(Asked by Silicon Magic Corp.people)

Anser: CVS is Concurrent Version System. It is the front end to the RCS revision control system which extends the notion of revision control from a collection of files in a single directory to a hierarchical collection of directories consisting of revision controlled files. These directories and files can be combined together to form a software release.
There are some useful commands that are being used very often. They are

cvs checkout
cvs update
cvs add
cvs remove
cvs commit

Tags in this post...

面试题 相关文章推荐
PHP面试题及答案一
Jun 18 面试题
为什么要优先使用同步代码块而不是同步方法?
Jan 30 面试题
介绍下WebSphere的安全性
Jan 31 面试题
C语言50道问题
Oct 23 面试题
C/C++程序员常见面试题二
Nov 19 面试题
计算 s=(x*y)1/2,用两个宏定义来实现
Aug 11 面试题
简述使用ftp进行文件传输时的两种登录方式?它们的区别是什么?常用的ftp文件传输命令是什么?
Nov 20 面试题
初级软件工程师面试题 Junior Software Engineer Interview
Feb 15 面试题
几个常见的软件测试问题
Sep 07 面试题
是否可以从一个static方法内部发出对非static方法的调用?
Aug 18 面试题
什么是servlet链?
Jul 13 面试题
什么是ESB?请介绍一下ESB?
May 27 面试题
UNIX文件系统分类
Nov 11 #面试题
三个Unix的命令面试题
Apr 12 #面试题
介绍一些UNIX常用简单命令
Nov 11 #面试题
shell的种类有哪些
Apr 15 #面试题
解释i节点在文件系统中的作用
Nov 26 #面试题
精选干货:Java精选笔试题附答案
Jan 18 #面试题
程序员跳槽必看面试题总结
Jun 28 #面试题
You might like
全国FM电台频率大全 - 11 浙江省
2020/03/11 无线电
实用函数2
2007/11/08 PHP
PHP时间戳使用实例代码
2008/06/07 PHP
PHP获取网站域名和地址的代码
2008/08/17 PHP
php 面试碰到过的问题 在此做下记录
2011/06/09 PHP
php制作基于xml的RSS订阅源功能示例
2017/02/08 PHP
基于jquery的使ListNav兼容中文首字拼音排序的实现代码
2011/07/10 Javascript
js实现用户离开页面前提示是否离开此页面的方法(包括浏览器按钮事件)
2015/07/18 Javascript
原生js实现焦点轮播图效果
2017/01/12 Javascript
详谈AngularJs 控制器、数据绑定、作用域
2017/07/09 Javascript
vue.js数据绑定操作详解
2018/04/23 Javascript
JS实现HTML页面中动态显示当前时间完整示例
2018/07/30 Javascript
前端防止用户重复提交js实现代码示例
2018/09/07 Javascript
Vuex 使用 v-model 配合 state的方法
2018/11/13 Javascript
JavaScript使用百度ECharts插件绘制饼图操作示例
2019/11/26 Javascript
微信小程序实现吸顶效果
2020/01/08 Javascript
JavaScript常用进制转换及位运算实例解析
2020/10/14 Javascript
用Python生成器实现微线程编程的教程
2015/04/13 Python
Python中的zipfile模块使用详解
2015/06/25 Python
python3爬取数据至mysql的方法
2018/06/26 Python
Flask和Django框架中自定义模型类的表名、父类相关问题分析
2018/07/19 Python
python在TXT文件中按照某一字符串取出该字符串所在的行方法
2018/12/10 Python
python实现XML解析的方法解析
2019/11/16 Python
Python基于Dlib的人脸识别系统的实现
2020/02/26 Python
Python Matplotlib绘图基础知识代码解析
2020/08/31 Python
python编程的核心知识点总结
2021/02/08 Python
总经理职责范文
2013/11/08 职场文书
医学专业本科毕业生自我鉴定
2013/12/28 职场文书
毕业生求职自荐书范文
2014/03/27 职场文书
培训班主持词
2014/03/28 职场文书
学校安全防火方案
2014/06/07 职场文书
教师群众路线心得体会
2014/11/04 职场文书
中国合伙人观后感
2015/06/02 职场文书
格林童话读书笔记
2015/06/30 职场文书
2015选调生工作总结
2015/07/24 职场文书
gateway与spring-boot-starter-web冲突问题的解决
2021/07/16 Java/Android