IBM 2022 技术面试题(应聘 求职 面试准备资料)_第1页
IBM 2022 技术面试题(应聘 求职 面试准备资料)_第2页
IBM 2022 技术面试题(应聘 求职 面试准备资料)_第3页
IBM 2022 技术面试题(应聘 求职 面试准备资料)_第4页
IBM 2022 技术面试题(应聘 求职 面试准备资料)_第5页
已阅读5页,还剩10页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、IBM 2022技术面试题第1题:EDCBACADEBADBCEB E D ACDCAE BStart at the fourth letter of Column 5 and follow the letters around the outside of the pattern in a clockwise direction. What is the second letter between the second E and the second B you come to?第 2 题: AB2C311 B3 DA1BC45A5 2 BE5 D2CIn the row that has

2、 more letters than numbers, in which the numbers are separated by only one letter, and in which the numbers sum to less than the sum of the numbers in the second column, which letter comes just before the second number, counting from right to left?(a,b)= (a+b)/2/(a,b)= a/b*(a,b)= abIf a=l, b=2 then

3、findi)/(a,(a,b)z*(a,b)*/(a,(*(a,b) 16. In UNIX a files i-node?第 23 题: enum number b= 4,c,d,e What is the value of e ?(a) 7(b)4(c)5(d) 15(e)3第 24 题: The very first process created by the kernal that runs till thekernal process is halts isinitgettyboth (a) and (b)none of these-io - 第 25 题: Output of t

4、he following program is main() int i=0; for(i=0;i20;i+) switch(i) case 0:i+=5; case l:i+=2; case 5:i+=5; default i+=4; break; printf(”d,”,i);0,5,9,13,175,9,13,1712,17,2216,21Syntax error第 26 题: What is the ouptut in the following programmain() char c=-64; int i=-32 unsigned int u =-16; if(ci) printf

5、(passl/);if(cu) printf(pass2); else printf(Fail2); else printf(Faill);if(iu) printf(pass2); else printf(Fail2)Passl,Pass2Passl,Fail2Faill,Pass2FaillzFail2None of these-ii - 第 27 题: In the process table entry for the kernel process, the process id value is(a)0(b)l(c)2(d)255(e) it does not have a proc

6、ess table entry第 28 题: Which of the following API is used to hide a windowShowWindowEnableWindowMoveWindowSetWindowPlacementNone of the above第 29 题: What will the following program do?void main() int i; char a=String; char *p=New Sring; char *Temp; Temp=a; a=malloc(strlen(p) + 1); strcpy(a,p); /Line

7、 number:9/ p = malloc(strlen(Temp) + 1); strcpy(p,Temp); printf(%s, %s)za,p); free(p);-12 -free(a); /Line number 15/Swap contents of p a and print:(New string, string)Generate compilation error in line number 8Generate compilation error in line number 5Generate compilation error in line number 7Gene

8、rate compilation error in line number 1第 30 题: In the following code segment what will be the result of the function,value of x , value of y unsigned int x=-l; int y; y =0; if(x = y) printf(same); else printf(not same);same, MAXIN7; -1not same, MAXIN1; -MAXINTsame, MAXUNIT,-1same, MAXUNIT, MAXUNITno

9、t same, MAXIN MAXUNIT第 31 题: PATH = /bin : /usr: /yourhome The file /bin/calender has the following line in it cal 10 1997 The file /yourhome/calender has the following line in it cal 5 1997 If the current directory is /yourhome and-13 -calender is executedThe calendar for May 1997 will be printed o

10、n screenThe calendar for Oct 1997 will be printed on screenThe calendar for the current month( whatever it is) will be printedNothing will get printed on screenAn error massage will be printed第 32 题: What will be the result of the following program ?char *gxxx() static char xxx1024; return xxx;main(

11、) char *g=string; strcpy(gxxx(),g); g = gxxx();strcpy(g,oldstring); printf(The string is : %s/gxxx();The string is : stringThe string is :OldstringRun time error/Core dumpSyntax error during compilationNone of these第 33 题: What will be result of the following program?void myalloc(char *x, int n) x=

12、(char *)malloc(n*sizeof(char);memset(x,0/n*sizeof(char);-14 -main() char *g=String; myalloc(g,20); strcpy(g,Oldstring); printf(The string is %s,g);The string is : StringRun time error/Core dumpThe string is : OldstringSyntax error during compilationNone of these第 34 题: Which of the following functio

13、n is used to repaint a window immediatelySendmessage(hWnd,WM_PAINt,)lnvalidateRect()MoveWindowWM_COPYNone第 35 题: Which function is the entry point for a DLL in MS Windows 3.1a) Mainb) Winmain-15 -DllmainLibmainNone第 36 题: The standard source for standard input, standard output and standard error ist

14、he terminal/dev/null/usr/you/input, /usr/you/output/, /usr/you/error respectivelyNone第 37 题: What will be the result of the following program? main() char p=String;int x=0; if(p=String) printf(Pass 1);if(psizeof(p)-2=g)printf(Pass 2); else printf(Fail 2); else printf(Fail 1); if(psizeof(p)-2=,g,) pr

15、intf(Pass 2); else printf(Fail 2);Pass 1, Pass 2Fail 1, Fail 2Pass 1, Fail 2Fail 1, Pass 2-16 syntax error during compilation第 38 题: Which of the choices is true for the mentioned declaration ? const char *p; and char * const p;You cant change the character in bothFirst : You cant change the charact

16、err Second : You can;t change the pointerYou cant change the pointer in bothFirst: You cant change the pointer Second : You cant chanage the characterNone第 39 题: The redirection operators anddo the same functiondiffer: overwrites, while appendsdiffer: is used for input while is used for outputdiffer

17、: write to any file while write only to standard outputNone of these-17 -第 40 题: The command grep first second third /usr/you/myfileprints lines containing the words first, second or third from the file /usr/you/myfilesearches for lines containing the pattern first in the filessecond, third, and /us

18、r/you/myfile and prints themsearches the files /usr/you/myfiel and third for lines containing the words first or second and prints themreplaces the word first with the word second in the files third and /usr/you/myfileNone of the above-18 第 3 题: If a salesmans average is a new order every other week

19、, he will break the office record of the year. However, after 28 weeks, he is six orders behind schedule. In what proportion of the remaining weeks does he have to obtain a new order to break the record?第4题:在房里有三盏灯,房外有三个开关,在房外看不见房内的状况,你只 能进门一次,你用什 么方法来区分那个开关掌握那一盏灯.第5题:一个粗细匀称的长直管子,两端开口,里面有4个白球和4个黑球,

20、球的直径、两 端开口的直径等于管子的内径,现在白球和黑球的排 列是wbbbb,要求不取出任何一个球,使得排列变为bbwbb。第6题:一只蜗牛从井底爬到井口,每天白天蜗牛要睡觉,晚上才出来活动, 一个晚上蜗牛可以向上爬3尺,但是白天睡觉的时候会往下滑2尺, 井深10尺,问蜗牛几天可以爬出来?第7题:在一个平面上画1999条直线最多能将这一平面划分成多少个局部?第8题:在太平洋的一个小岛上生活着土人,他们不情愿被外人打搅,一天, 一个探险家到了岛上,被土人抓住,土人的祭司告知他,你临死前还 可以有一个机会留下一句话,假如这句话是真的,你将被烧死,是 假的,你将被五马分尸,可怜的探险家如何才能活下来

21、?第9题:怎样种四棵树使得任意两棵树的距离相等。第10题:27个小运发动在参与完竞赛后,口渴难耐,去小店买饮料,饮料 店搞促销,凭三个空瓶可以再换一瓶,他们最少买多少瓶饮料才能 保证一人一瓶?第11题:有一座山,山上有座庙,只有一条路可以从山上的庙到山脚,每周 一早上8点,有一个聪明的小和尚去山下化缘,周二早上8点从山 脚回山上的庙里,小和尚的上下山的速度 是任意的,在每个来回中, 他总是能在周一和周二的同一钟点到达山路上的同一点。例如,有 一次他觉察星期一的8点30和星期二的8点30他都到了山路靠山脚 的3/4的地方,问这是为什么?第12题:有两根不匀称分布的香,每根香烧完的时间是一个小时,

22、你能用什 么方法来确定一段15分钟的时间?第13题:In 1978, a kg of paper was sold at Rs25/-. If the paper rate increases at 1.5% more than the inflation rate which is 6.5% a year, then what wil be the cost of a kg of paper after 2 years?(a) 29.12 (b) 29.72 (c) 30.12 (d) 32.65 (e) none of these第14题:In A,B,C are having some

23、marbles with each of them.A has given B and C the same number of marbles each of them already have. Then, B gave C and A the same number of marbles they already have. Then C gave A and B the same number of marbles they already have. At the end A,B,and C have equal number of marbles.If x,y,z are the

24、marbles initially with A,B,C respectively. Then the number of marbles B have at the end2(x-y-z)4(x-y-z)2(3y-x-z)x + y-zIf the total number of marbles are 72, then the number of marbles with A at the starting203032(d)39第 15 题: If a car starts from A towards B with some velocity. Due to some problem i

25、n the engine after travelling 30km, the car goes with 4/5 th of its actual velocity The car reaches B 45 min later to the actual time.If the car engine fails of ter travelling 45km, the car reaches the destination B 36min late to the actual time What is the initial velocity of car and what is the di

26、stance between A and B in km第16题:A person has Rs 100/- in his pocket, he can as 25 pencils or 15 books.He kept 15% of the money for travelling expenses and purchased 5 pencils. So how many books he can purchase with the remaining money.第17题:The values of shares (in Rs).of A, B and C from January to

27、June are as follows.MonthABCJanuary306080February356585March457565April407582May557585June507580During this period which share has undergone maximium fluctuation?In which month it is possible to buy B and C selling A?In which month the share values are very low? iv) By purchasing one share of A and

28、4 each of B and C in the beginning of the period, when shoudl these be sold to get maximum profit?第 18 题: In a computer institute 9 languages can be taught. The module is of 6 months duration and of the six languages only one can be taught each month . In addition to that BASIC is always taught and should be in first month itself WORD PERFECT is to be taught in the preceeding week of WORD STAR. FORTRAN can not be taught until CO

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论