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

面试题 相关文章推荐
如何用Lucene索引数据库
Feb 23 面试题
对于没有初始化的变量的初始值可以作怎样的假定
Oct 12 面试题
DBA的职责都有哪些
May 16 面试题
Oracle性能调优原则
May 03 面试题
以思科路由器为例你写下单臂路由的配置命令
Aug 03 面试题
什么是静态路由,其特点是什么?什么是动态路由,其特点是什么?
Jul 26 面试题
linux下进程间通信的方式
Jan 23 面试题
linux比较文件内容的命令是什么
Mar 04 面试题
How to spawning asynchronous work in J2EE
Aug 29 面试题
如何唤起类中的一个方法
Nov 29 面试题
final, finally, finalize的区别
Mar 01 面试题
请介绍一下WSDL的文档结构
Mar 17 面试题
UNIX文件系统分类
Nov 11 #面试题
三个Unix的命令面试题
Apr 12 #面试题
介绍一些UNIX常用简单命令
Nov 11 #面试题
shell的种类有哪些
Apr 15 #面试题
解释i节点在文件系统中的作用
Nov 26 #面试题
精选干货:Java精选笔试题附答案
Jan 18 #面试题
程序员跳槽必看面试题总结
Jun 28 #面试题
You might like
php文件上传表单摘自drupal的代码
2011/02/15 PHP
解决PHP程序运行时:Fatal error: Maximum execution time of 30 seconds exceeded in的错误提示
2016/11/25 PHP
Laravel如何同时连接多个数据库详解
2019/08/13 PHP
php设计模式之组合模式实例详解【星际争霸游戏案例】
2020/03/27 PHP
javascript中的prototype属性实例分析说明
2010/08/09 Javascript
JQuery切换显示的效果实例代码
2013/02/27 Javascript
js实现多选项切换导航菜单的方法
2015/02/06 Javascript
纯javascript实现四方向文本无缝滚动效果
2015/06/16 Javascript
利用JS生成博文目录及CSS定制博客
2016/02/10 Javascript
React 子组件向父组件传值的方法
2017/07/24 Javascript
详解jQuery中的isPlainObject()使用方法
2018/02/27 jQuery
微信小程序之事件交互操作实例分析
2018/12/03 Javascript
微信小程序公用参数与公用方法用法示例
2019/01/09 Javascript
webpack4 从零学习常用配置(小结)
2019/05/28 Javascript
vant IndexBar实现的城市列表的示例代码
2019/11/20 Javascript
[01:31:03]DOTA2完美盛典全回顾 见证十五项大奖花落谁家
2017/11/28 DOTA
python实现在无须过多援引的情况下创建字典的方法
2014/09/25 Python
详解python的数字类型变量与其方法
2016/11/20 Python
基于Python_脚本CGI、特点、应用、开发环境(详解)
2017/05/23 Python
Pipenv一键搭建python虚拟环境的方法
2018/05/22 Python
Python实现的NN神经网络算法完整示例
2018/06/19 Python
[原创]Python入门教程1. 基本运算【四则运算、变量、math模块等】
2018/10/28 Python
使用Django连接Mysql数据库步骤
2019/01/15 Python
Python数据类型之Dict字典实例详解
2019/05/07 Python
python安装scipy的步骤解析
2019/09/28 Python
python是否适合网页编程详解
2019/10/04 Python
python实现在线翻译
2020/06/18 Python
Django restful framework生成API文档过程详解
2020/11/12 Python
美国维生素、补充剂、保健食品购物网站:Vitacost
2016/08/05 全球购物
安德玛加拿大官网:Under Armour加拿大
2019/10/02 全球购物
旅游活动总结
2014/08/27 职场文书
领导班子四风查摆对照检查材料思想汇报
2014/10/05 职场文书
山东省召开党的群众路线教育实践活动总结大会新闻稿
2014/10/21 职场文书
初中班主任教育随笔
2015/08/15 职场文书
幼儿园体操比赛口号
2015/12/25 职场文书
总结一下关于在Java8中使用stream流踩过的一些坑
2021/06/24 Java/Android