1 / 26
文档名称:

IT公司面试题.doc

格式:doc   大小:167KB   页数:26页
下载后只包含 1 个 DOC 格式的文档,没有任何的图纸或源代码,查看文件列表

如果您已付费下载过本站文档,您可以点这里二次下载

分享

预览

IT公司面试题.doc

上传人:小健 2021/8/10 文件大小:167 KB

下载得到文件列表

IT公司面试题.doc

相关文档

文档介绍

文档介绍:下面几个平台用什么传递参数
IA32,IA64,ARM,EM64T
RISC机器的特性
几种接口类型:FSB,PCI, ISA
和33M,800M,8M配对...(记不清了,反正有compatiable这个词)
算 cache-hit ratio
rtp/rtsp/rtcp的指什么?什么场合应用?
cpu取指时,指令不再cache中,也不再内存中,而在辅存中,问这整个过程中硬件和 软件的行为是什么?
折半查找的复杂度,证明
sizeof()和 strlen()的使用.
顺序存储结构的优点,散列法的思想是什么?
并发进程相关知识
下面的程序能编译通过么?
#include <>
int main(void)
(
unsigned long long a=OxAAAAAAAABBBBBBBB;
unsigned int b=0xCCCCCCCC;
printf("you have %d RMA ,right?\n";
printf(nvaluea :%lx,valueb :%lx\n",a,b);
)
汉罗塔算法,不能递归...
插入•个usb设备描述驭动自动装载的过程。
发信人:miser (大灰狼),信区:job
标题:去神州数码笔试随笔
发信站:饮水思源(2004年12月22曰21:59:10星期三)
交大的ss,去神州数码可以乘855,终点站,再向西走100米左右吧,可以看到神州数码的 大牌子了。
我考的是软件研发,卷子分java和C/C++两部分,如果你只会其中的-部分,我建议你就不 用去了,乂累,还可能被bs。我只会做C/C++部分,考了些C++的-些基本概念,数据结构 的基本题(都是选择题)。数据库考了 SQL语言中的一些如select, update, join等。大题 目主要考了三道:(1)为什么在编译时其它文件中的定义的函数要用extern c说明
看程序(求输入数的均值)
string类的构造函数,自引用函数,析构函数,重载赋值函数(实际
上和类默认生成的儿个函数差不多)
题目还是比较简单的,祝好运。
发信人:GlobalRainy (Dirichlet, Johann Peter Gustav Lejeune),信区:C 标 题:SAP试题(不完整),作为周末讨论话题吧
发信站:饮水思源(2004年03月19 S 23:30:13星期五),站内信件
Below is usual way we find one element in an array:
const int *findl (const int* array, int n, int x)
(
const int* p = array;
fbr(int i = 0; i < n; i++)
(
if(*p == x)
(
return p;
)
++P;
)
return 0;
)
In this case we have to bear the knowledge of value type "int", the size of array, even the existence of an array. Would you re-write it using template to eliminate all these dependencies?
Assume you have a class like
class erp
{
HR* m_hr;
FI* m_fi;
public:
erp()
{
m_hr = new HR();
m_fi = new FI();
)
~erp()
{
)
};
if "new FI()" failed in the constructor, how can you detect this problem and release the properly allocated member pointer m_hr?
Check the class and variable definition below:
#include <iostream>
#include <complex>
using namespace std;
class Base
(
public:
Base() ( cout«"Base-ctorn«endl; )
~Base() ( cout«"Base-dtor"«endl;)
virtual void f(int) ( cout«"Base::f(int)"«endl;)
virtual void f(double)