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...

面试题 相关文章推荐
Java里面如何把一个Array数组转换成Collection, List
Jul 26 面试题
在C语言中实现抽象数据类型什么方法最好
Jun 26 面试题
写出程序把一个链表中的接点顺序倒排
Apr 28 面试题
函数指针的定义是什么
Aug 14 面试题
android面试问题与答案
Dec 27 面试题
局域网标准
Sep 10 面试题
string = null 和string = ''的区别
Apr 28 面试题
init进程的作用
Apr 12 面试题
如何提高MySql的安全性
Jun 19 面试题
Ejb技术面试题
Apr 29 面试题
Servlet都有哪些方法?主要作用是什么?
Mar 04 面试题
Ruby如何创建一个线程
Mar 10 面试题
UNIX文件系统分类
Nov 11 #面试题
三个Unix的命令面试题
Apr 12 #面试题
介绍一些UNIX常用简单命令
Nov 11 #面试题
shell的种类有哪些
Apr 15 #面试题
解释i节点在文件系统中的作用
Nov 26 #面试题
精选干货:Java精选笔试题附答案
Jan 18 #面试题
程序员跳槽必看面试题总结
Jun 28 #面试题
You might like
学习使用PHP数组
2006/10/09 PHP
dedecms 制作模板中使用的全局标记图文教程
2007/03/11 PHP
php获取指定(访客)IP所有信息(地址、邮政编码、国家、经纬度等)的方法
2015/07/06 PHP
漂亮的widgets,支持换肤和后期开发新皮肤(2007-4-27已更新1.7alpha)
2007/04/27 Javascript
SyntaxHighlighter代码加色使用方法
2008/09/07 Javascript
jquery checkbox全选、取消全选实现代码
2010/03/05 Javascript
js设置控件的隐藏与显示的两种方法
2014/08/21 Javascript
12行javascript代码绘制一个八卦图
2015/04/02 Javascript
JavaScript中使用concat()方法拼接字符串的教程
2015/06/06 Javascript
js实现适用于素材网站的黑色多级菜单导航条效果
2015/08/24 Javascript
javascript实现禁止复制网页内容汇总
2015/12/30 Javascript
在JavaScript中使用JSON数据
2016/02/15 Javascript
前端性能优化及技巧
2016/05/06 Javascript
JS组件系列之Bootstrap table表格组件神器【二、父子表和行列调序】
2016/05/10 Javascript
JS命令模式例子之菜单程序
2016/10/10 Javascript
详解vue-cli 快速搭建单页应用之遇到的问题及解决办法
2018/03/01 Javascript
说说node中的可读流和可写流的区别
2018/06/01 Javascript
vue axios数据请求及vue中使用axios的方法
2018/09/10 Javascript
Node.js实现一个HTTP服务器的方法示例
2019/05/13 Javascript
js获取 gif 的帧数的代码实例
2019/09/10 Javascript
原生js+canvas实现下雪效果
2020/08/02 Javascript
Python中使用MELIAE分析程序内存占用实例
2015/02/18 Python
Python 递归函数详解及实例
2016/12/27 Python
插入排序_Python与PHP的实现版(推荐)
2017/05/11 Python
一个月入门Python爬虫学习,轻松爬取大规模数据
2018/01/03 Python
Python基于Floyd算法求解最短路径距离问题实例详解
2018/05/16 Python
python GUI库图形界面开发之PyQt5信号与槽事件处理机制详细介绍与实例解析
2020/03/08 Python
python实现FTP文件传输的方法(服务器端和客户端)
2020/03/20 Python
python3.6环境下安装freetype库和基本使用方法(推荐)
2020/05/10 Python
ALEX AND ANI:手镯,项链,耳环和更多
2017/04/20 全球购物
瑜伽国际:Yoga International
2018/04/18 全球购物
英国手机零售商:Metrofone
2019/03/18 全球购物
个人安全生产责任书
2014/07/28 职场文书
物业接待员岗位职责
2015/04/15 职场文书
关于战胜挫折的名言警句大全!
2019/07/05 职场文书
万能密码的SQL注入漏洞其PHP环境搭建及防御手段
2021/09/04 SQL Server