名企笔试题精华
19.画出其相应流程图并编写一个函数实现一个整数到二进制数的转换,如输入6,输出110。
硬件题目
1.用mos管搭出一个二输入与非门。
2.集成电路前段设计流程,写出相关的工具。
3.解释名词IRQ,BIOS,USB,VHDL,SDR。
4.简述如下Unix命令cp -r, rm,uname。
5.用波形表示D触发器的功能。
DSP题目
1.H(n)??a*h(n?1)+b*δ(n)
(1)求h(n)的z变换
(2)该系统是否为稳定系统
(3)写出FIR数字滤波器的差分方程
2.写出下面模拟信号所需的最小采样带宽
(1)模拟信号的频率范围是0~4kHz
(2)模拟信号的频率范围是2~4kHz
3.名词解释
(1)量化误差
(2)直方图
(3)白平衡
(4)MMX
4.写出下面几种格式中用到的压缩技术
(1)JPEG
(2)MPEG2
(3)MP3
威盛面试笔试题
软件类应聘笔试题
1.三组程序,找出你认为的错误。
(1)a.c long temp[255];
b.c extern *temp;
(2)a.c long temp[255];
b.c extern temp[256];
(3)a.c long temp[255];
b.c extern temp[];
2.在第一个声明处编译出了奇怪的错误,为什么?
#include
#include “myfun1.h”
#include “myfun2.h”
int myInt1;
int myInt2;
3.printf(“0x%x”, (&0)[?1]); 请问打印了什么?
4.汇编,用ax,bx,cx,dx,求1000×1000/30(四舍五入),结果放在ax中。
5.编最优化Bubble(int *pIntArray,int L),要求:交换元素不能用临时变量,如果有序需要最优。
6.用任意一种编程语言写n!的算法。
Graphic笔试题目
1.问答题
(1)texture mapping是什么?为什么要用filter?
(2)用float和int表示一个数,比如2,说明优点和缺点。
(3)在MPEG哪部分可以加速硬件?
(4)解释cubic和B-spline的差别,写出各自函数。
(5)写出几个Win API中的OpenGL函数。
(6)说出固定小数表示和浮点小数表示的优缺点。
(7)说出显卡可以优化哪些MPEG中的计算?
(8)说出Bezier和B-Spline曲线的区别。
2.用最简单的方法判断一个数是否是2的指数次幂。
3.S23E8和S10E5两种浮点数表示方法分析,表示0.25写一个类S10E5,实现从S23E8转换。
4.用模版的方式实现三个量取最大值。
5.题目告诉你IEEE 16和32浮点数表示的规范,要求将?0.25分别用IEEE 16和32表示并写一个C++函数将输入的IEEE 16表示转化为IEEE 32的表示。
6.用C语言写一个函数f(x)? x * 0.5要求只能用整数操作。
Software Engineer笔试题
1. Describe x86 PC’s architecture in a diagram cpu,core chipset, Cache,DRAM, IO-subsystem, IO-Bus
2. SWI instruction is often called a “supervisor call”, describe the actions in detail
* Save the address of the instruction after the SWI in rl4_svc.
* Save the CPSR in SPSR_svc.
* Enter supervisor mode and disable IRQs.
* Set the PC to 08 and begin executing the instruction there.
3.
* What is PIO operation? advantage and disadvantage?
* DMA operation? advantage and disadvantage?
* Scatter/Gather DMA engine? how does it operate?
4. MP3 decoder related. (a flow chart of decoding is presented)
* advantages of Huffman encoding?
* why the aliasing reduction is necessary?
* analytical expression in mathematics of the IMDCT?
* which block in the flow chart is suitable for the software implementation and which for the hardware? why?
上一页 [1] [2] [3] [4] [5] [6] [7] 下一页