当前位置:网站首页>Intel written test questions DIY
Intel written test questions DIY
2022-06-22 01:53:00 【Haibao 7】
some ICSC English written test questions
by xdjm The test papers are all e writing
The first part Intelligence questions Probably 5,6 Avenue
1. Yes 5*5 Find a rule in the form and fill in the numbers ,
2. stay 3 A flying target is 99 The casting method of points , The dial has numbers
3. There are numbers at each corner of the triangle , Find the rule and fill in the number on the corner of the last triangle
4. There are numbers on the right of letters in the table , Find the rules ( It's actually the alphabet position number ) Fill in the number next to a letter
I forgot :)
The second part Technical problems
1, At least two methods are given to realize system memory management Such as virtual existence …… A little forgotten
2 The program implements the eight queens problem ( Classical data structure algorithm ) Feel full bt Of
The third part translate
1. Give me a paragraph 300 word icsc Introduction to e writing , Write sunmmary
2. Write a passage to express how contribute ICSC
some LAB Pen test
1 . Write the Nyquist frequency of the following signals
(1)f(t)=1+cos(2000pait)+sin(4000pait)
(2)f(t)=sin(4000pait)/pait
(3)f(t)=(sin(4000pait) The square of )/pait
2. Fill in the procedure
Put a calculation m^n The general meaning of complete program filling is : There is a global array char s[BUFSIZE] Use this array to calculate , Namely
Each cell stores one bit of the calculation result ,index Small storage low position ,index Large storage high position
3. There are two threads
void producer()
{
A big gift bag for fresh graduates to apply for jobs New student job network YingJieSheng.COM
New student job network http://www.yingjiesheng.com The first 17 page common 77 page
while(1)
{
GeneratePacket();
PutPacketIntoBuffer();
Signal(customer);
}
}
void customer()
{
while(1)
{
WaitForSignal();
if(PacketInBuffer>10)
{
ReadAllPackets();
ProcessPackets();
}
}
}
(1) Is there any other way to improve the performance of the program
(2) Can the above functions be realized without using mechanisms such as signals
4. Optimize the following program
(0)sum=0
(1)I=1
(2)T1=4I
(3)T2=address(A)-4
(4)T3=T2[T1]
(5)T4=address(B)-4
(6)T5=4I
(7)T6=T4[T5]
(8)T7=T3*T5
(9)sum=sum T6
(10)I=I 1
(10)IF I<20 GOTO (2)
Collection of written examination questions 1
- Three float:a,b,c Question value 95d565ef66? New student job network YingJieSheng.COM?4cb5d40ed4
(a+b)+c==(b+a)+c
(a+b)+c==(a+c)+b95d565ef66? New student job network YingJieSheng.COM?4cb5d40ed4 - Fill in the blank of a linked list in reverse
- Design a resampling system , Explain how anti-alias
- y1(n)=x(2n), y2(n)=x(n/2), ask :
If y1 Is a periodic function , that x Whether it is a periodic function 5a880faf6f? New student job network YingJieSheng.COM?c350ade2a4
If x Is a periodic function , that y1 Whether it is a periodic function
If y2 Is a periodic function , that x Whether it is a periodic function
If x Is a periodic function , that y2 Whether it is a periodic function 4b5ce2fe28? New student job network YingJieSheng.COM?261cbd5717 - If the bandwidth of the analog signal is 5KHZ, Use 8K Sampling rate , What do I do .
- A program in an embedded system (200M Of CPU,50M Of SDRAM) Has been the most popular in , Switch to another system
(300M Of CPU,50M Of SDRAM) Run in , Do you still need to optimize ? - x4+a*x3+x^2+c*x+d At least a few multiplications are required
- Under what circumstances ,sin(x+y)+y ~ …
- Which of the following sorting methods is right for 12354 The fastest
a quick sort
b.buble sort
c.merge sort - Which structure , On average , Getting a value is the fastest
a. binary tree
b. hash table
c. stack
Collection of written examination questions 2
A product is going to be postponed , We can't catch up with the scheduled listing , It is known that a. The market for this product is relatively small ,b. instant competition,c. intel schedule cannot meet expectation, What is your pricing strategy ?
2. Probability questions .A,B For random events , Which of the following is correct
A. P(A U B)*p(AB) <= P(A)P(B)
B. P(A U B)*p(AB) >= P(A)P(B)
C. P(A U B)p(AB) <= P(A) P(B)
D. P(A U B)p(AB) >= P(A) P(B)
3: Channel bandwidth 200kHz, Signal-to-noise ratio 10dB, Find the channel baud rate =?
4: What is the result of running the following code
int main()
{
int a,b,c,abc = 0;
a=b=c=40;
if
{
int abc;
abc = ab c;
}
printf(“%d,%d”, abc, c);
return 0;
}
5: It gives various flight information from New York to Los Angeles , Write the code to find the shortest flight combination from New York to Los Angeles .
6: Intercept several coordinates of the edge of an object from a computer graph , Find the area of this object , And judge whether it is square or round , Why? .( coordinate
I don't remember , It's probably a circle ).
7: Discrete winder and DFT The difference and relationship between . Whether the quick demand is satisfied 2^N What are the methods of length discrete Fourier transform ? How to use fft seek NM
Point discrete winder ?
8: give fir and iir Advantages and disadvantages .
9: How to calculate quantization noise of linear scalar quantizer ? Those assumptions are needed ?
Collection of written examination questions 3
1. Write the Nyquist frequency of the following signals
(1)f(t)=1+cos(2000pait)+sin(4000pait)
(2)f(t)=sin(4000pait)/pait
(3)f(t)=(sin(4000pait) The square of )/pait
2. Fill in the procedure
Put a calculation m^n The program is filled completely , roughly :
There is a global array char s[BUFSIZE]
Use this array to calculate , It is a bit for each cell to store the calculation results ,index Small storage low position ,index Big
Storage high position of
3. There are two threads
void producer()
{
while(1)
{
GeneratePacket();
PutPacketIntoBuffer();
Signal(customer);
}
}
void customer()
{
while(1)
{
WaitForSignal();
if(PacketInBuffer>10)
{
ReadAllPackets();
ProcessPackets();
}
}
}
(1) Is there any other way to improve the performance of the program
(2) Can the above functions be realized without using mechanisms such as signals
Attached separately :
1.GPIO It can be applied in those occasions ?
2.main use EXIT,RETURN Or when not in use , Explanation of program exit !
3.15 People line up in circles and count out ( Count to N Of ), Ask the last person to be listed ? Add programs to complete the above functions ?br />
4. There is also a mutually exclusive problem of programming explanation
5. from VIEW and SUPER SCALAR From the point of view CPU ARCHITECT?
6. List INTEL Chip structure family of ?
边栏推荐
- Winform项目控制台调试方式
- Download links to components, frameworks and development tools commonly used by programmers
- Curl requests at the server command line
- 一条短视频成本几十万元,虚拟数字人凭“实力”出圈
- 2011. variable value after operation
- Mathematical knowledge of Sinorgchem in the first round of noip preliminary csp-j1 csp-s1 (I)
- NOIP初赛 CSP-J1 CSP-S1 第1轮 初赛 信奥中的数学知识(一)
- 技术探秘: 360数科夺得ICDAR OCR竞赛世界第一
- 英特尔发展史概述
- 2021 CSP-J1 CSP-S1 第一轮 初赛 相关题解及视频等
猜你喜欢

Farm Game

Commission contract on BSV (3)

Shardingsphere-proxy-5.0.0 implementation of distributed hash modulo fragmentation (4)

【第 20 章 基于帧间差法进行视频目标检测--MATLAB软件深度学习应用】
![[Chapter 10: a website digital verification code recognition based on moment invariants matlab deep learning practical application case]](/img/19/867c03660cb9127dbb967402d8ca8f.png)
[Chapter 10: a website digital verification code recognition based on moment invariants matlab deep learning practical application case]

【Proteus仿真】INT0和INT1中断计数

acwing 835. Trie string statistics

The 8th "Internet +" competition - Bi ran, an outstanding architect of Baidu, interprets the proposition of industrial circuit

Redis缓存异常及处理方案总结

Recommended by Ali, Tencent and Baidu software testing engineers - waterfall model of software testing model
随机推荐
Five strokes first lesson fingering
Commission contract on BSV (2)
第298场力扣周赛个人题解
acwing 838. Heap sort (write a heap)
Rational rose 安装教程
【第 06 章 MATLAB实现基于分水岭分割进行肺癌诊断】
shadertoy 实现简易指南针
第 09 章 基于特征匹配的英文印刷字符识别 MATLAB深度学习实战案例
How to restore the IE browser auto jump edge
谁会用pyspark将筛选过后本地数据上传到spark sql
NOIP初赛 CSP-J1 CSP-S1 第1轮 初赛 信奥中的数学知识(一)
【AMD 综合求职经验分享618】
出现UnicodeDecodeError: ‘ascii‘ codec can‘t decode byte 0xe9 in position 0: ordinal not in range解决方法
全行业数字化转型加速,到底什么存储会更吃香?
[amd comprehensive job search experience sharing 618]
ASEMI肖特基二极管1N5819参数,1N5819代换,1N5819货源
联发科技 --联发科技简介++附上笔经面经
Copy in pytorch_ Summary of differences between (), detach (), data (), and clone () operations
Mathematical knowledge in the first round of noip preliminary round csp-j1 csp-s1 Sinorgchem (III)
[AMD Comprehensive Search Experience Sharing 618]