查看: 1185|回复: 16
|
询问面试VB。net Developer时的test基本上出什么问题?
[复制链接]
|
|
我下星期三将到新加坡面试VB。net Developer。我想询问一下,基本上面试VB。net时大多数公司会出什么样的考题呢?我的意思是基本上在test的试卷里他们都是问什么? |
|
|
|
|
|
|
|
发表于 11-7-2007 09:51 AM
|
显示全部楼层
我公司大概问了这些问题:
1) What is .Net framework?
2) What are assemblies?
3) How do you debug an ASP.NET application?
4) Describe 3 caching techniques used in the .Net framework.
5) Discuss the usage of appSettings in the Config file.
6) Discuss the steps to deploy an installer for a standard windows application.
剩下的就是出一些programming logic的问题.譬如说最简单的:
write a function that outputs the number 1 to 100, when the number is divisible by 3, output YAHOO, when the number is divisible by 7, output GOOGLE, and when the output is divisible by both 3 and 7, output MICROSOFT.
然后就希望你能用最短的CODE写出来. |
|
|
|
|
|
|
|
发表于 11-7-2007 10:00 AM
|
显示全部楼层
原帖由 阿牙木 于 11-7-2007 09:51 AM 发表 
我公司大概问了这些问题:
1) What is .Net framework?
2) What are assemblies?
3) How do you debug an ASP.NET application?
4) Describe 3 caching techniques used in the .Net framework.
5) Discu ...
全部都不会答。。。尤其是那个coding更加难想到 |
|
|
|
|
|
|
|

楼主 |
发表于 11-7-2007 07:01 PM
|
显示全部楼层
|
|
|
|
|
|
|
发表于 11-7-2007 09:35 PM
|
显示全部楼层
这些问题都是基本问题,可以在网上找到
注意caching 不是error handling, 你所说的try...catch 是error handling method, caching 指的是 web cache, page cache 和 data cache |
|
|
|
|
|
|
|

楼主 |
发表于 11-7-2007 10:33 PM
|
显示全部楼层
|
|
|
|
|
|
|

楼主 |
发表于 11-7-2007 11:12 PM
|
显示全部楼层
回复 #5 阿牙木 的帖子
Page caching == Page Output caching???  |
|
|
|
|
|
|
|
发表于 12-7-2007 09:14 AM
|
显示全部楼层
对.
还有,如果你说第五你知道的话,那你知道:
The differences between configuration files in framework 2.0 and 1.1x? |
|
|
|
|
|
|
|

楼主 |
发表于 12-7-2007 06:18 PM
|
显示全部楼层
|
|
|
|
|
|
|
发表于 12-7-2007 06:56 PM
|
显示全部楼层
原帖由 阿牙木 于 11-7-2007 09:51 AM 发表 
我公司大概问了这些问题:
1) What is .Net framework?
2) What are assemblies?
3) How do you debug an ASP.NET application?
4) Describe 3 caching techniques used in the .Net framework.
5) Discu ...
我用了幾年.NET居然不知道怎樣答
除了第3用F9和F5
是時候多“背”書了
不再專心在pratical方面 |
|
|
|
|
|
|
|
发表于 16-7-2007 12:03 PM
|
显示全部楼层
各位,
以上的问题,你的PRACTICAL再厉害还是有个限度,
你必须先知道.NET FRAMEWORK后面的结构,才能往ADVANCED 方面进程.
而那些THEORY都是最基本的,可以让你避开很多冤枉路,朝对的方向发展.
还有,我们公司的政策是,连这些THEORY都不会的, 和它们相关的PRACTICAL更不用说了.
像第三题的DEBUGGING, 对你们来说,PRACTICAL就是按F5 和F9吗?
那你们知道DEBUGGING可以ENABLE TRACING, 放TRACE LISTENER, 还有在网页上显示TRACING INFO? 我们要的答案是这些,不是按什么做什么.
是否也有些公司会问有关Multi treading, Polymophism, Inheritance之类的?请问你是否有类似的相关问题跟答案呢?
这些都是课本教的,你要会实际运用才能回答那些问题. |
|
|
|
|
|
|
|
发表于 16-7-2007 10:02 PM
|
显示全部楼层
|
|
|
|
|
|
|

楼主 |
发表于 16-7-2007 10:42 PM
|
显示全部楼层
|
|
|
|
|
|
|
发表于 19-7-2007 02:04 PM
|
显示全部楼层
write a function that outputs the number 1 to 100, when the number is divisible by 3, output YAHOO, when the number is divisible by 7, output GOOGLE, and when the output is divisible by both 3 and 7, output MICROSOFT.
dim i as int = 0
while (i<100){
if (i%3=0)and (i%7=0) then
print "MICROSOFT"
elseif (i%3=0) then
print "YAHOO"
elseif (i%7=0) then
print "GOOGLE"
end if
i+=1
end while
大概是这样吧。=)
just some logic o |
|
|
|
|
|
|
|
发表于 19-7-2007 02:07 PM
|
显示全部楼层
3 caching..
我不是很记得。
first, on demand type, whenever a user click refresh, it will only show the latest result,
second, set a time limit, when the time reach, it will refresh
third, whenever an update in DB, it will trigger and refresh the page itself.
=) |
|
|
|
|
|
|
|
发表于 19-7-2007 06:02 PM
|
显示全部楼层
|
|
|
|
|
|
|
发表于 22-7-2007 10:57 AM
|
显示全部楼层
原帖由 阿牙木 于 16-7-2007 12:03 PM 发表 
各位,
以上的问题,你的PRACTICAL再厉害还是有个限度,
你必须先知道.NET FRAMEWORK后面的结构,才能往ADVANCED 方面进程.
而那些THEORY都是最基本的,可以让你避开很多冤枉路,朝对的方向发展.
还有,我 ...
谢谢版主指点
让我意识我的不足 |
|
|
|
|
|
|
| |
本周最热论坛帖子
|