由买买提看人间百态

topics

全部话题 - 话题: brainbench
首页 上页 1 2 3 4 下页 末页 (共4页)
a***o
发帖数: 19
1
来自主题: JobHunting版 - CLRS要整本读完吗?
我是怕连第一关的在线C test都过不了
Brainbench的题目很难很偏
网上又找不到题库练习
d********t
发帖数: 9628
2
来自主题: JobHunting版 - brainbench值得花钱买题做吗?
想做他们的C++测试,不过价格不便宜啊。有什么类似的免费网站吗?谢谢!
S**I
发帖数: 15689
3
☆─────────────────────────────────────☆
careerchange (Stupid) 于 (Sat Jun 4 20:25:58 2011, 美东) 提到:
void reversePrint(Node* head) {
if(head=NULL) {
cout << "Empty List. No node to print." << endl;
return;
}
if(head->next=NULL) {
cout << head->data << endl;
return;
} else {
Node* temp=head;
head=temp->next;
reversePrint(head);
cout << temp->data << endl;
return;
}
}
☆─────────────────────────────────────☆
speeddy (Wade) 于 (Sat Jun 4 20:30:33 ... 阅读全帖
z*********8
发帖数: 2070
4
来自主题: JobHunting版 - 最近有些onsite, 求祝福
嗯我没有包子, 就把从brainbench上面搜集的上千题关于C++, JAVA, HTML, CSS,
JAVASCRIPT, DBMS, SQL, OO DESIGN的题目压缩包发给大家吧
做完c++的应该能过BB家的online test了吧
谢谢!
x******a
发帖数: 6336
5
概念还是给一段程序问输出?
多谢
l*****a
发帖数: 14598
6
选择题
基本都是问输出
似乎也有理解概念的
s**m
发帖数: 1564
7
来自主题: Database版 - Programming Concepts & SQL 大侠请进
your understanding is correct. for test coverage you'd better check with
course syllubus or test guidelines. for example and for your reference, you
can take a look at this site (although this site's tests and certifications
have little authority).
http://brainbench.com/xml/bb/common/testcenter/taketest.xml?testId=38
also there are a variety of SQL. however fundementals are same.
f*****n
发帖数: 64
8
来自主题: DotNet版 - Brainbench .NET有人做过么?
是太难还是我太蠢?苦啊。
f*****n
发帖数: 64
9
来自主题: DotNet版 - Brainbench .NET有人做过么?
自己顶顶。这个题怎么解答?
f*****n
发帖数: 64
10
来自主题: DotNet版 - Brainbench .NET有人做过么?
Which one of the following is NOT guaranteed through the use of a unique .
NET Framework application domain?
Choice 1
Static variable isolation
Choice 2
Elimination of naming conflicts
Choice 3
Elimination of versioning conflicts
Choice 4
Security sandboxing
Choice 5
Elimination of domain conflicts
k****i
发帖数: 1072
11
来自主题: DotNet版 - Brainbench .NET有人做过么?
5
d*r
发帖数: 238
12
来自主题: DotNet版 - Brainbench .NET有人做过么?
Those questions are nonsense. Most of them are not used in daily work. I gave
the test a negtive evaluations. :)
b******r
发帖数: 1106
13
来自主题: DotNet版 - proveit C# test
有谁做过proveit C# test的吗?一般考哪类问题?比起brainbench怎么样?多谢。
W******c
发帖数: 23
14
来自主题: Java版 - Brainbench ejb exam
I really doubt the value of such a certificate. It costs $19.95.
The same as SCEA-J2EE part 1, while it costs $150.
Here is all the 90 questions. some have more than 2 answers.
I also have the OO Design Patterns.
w*******o
发帖数: 6125
15
Depends on the company and the level you apply,
but you can expect to get the java fundamental
stuff, like polymorphism, thread, and data structure
and algorithms(e.g, implement function to reverse a link list)
Here is some sample:
http://www.brainbench.com/xml/bb/common/testcenter/subcatresults.xml?cat1=9&cat2=26&cat3=18
Good luck
o**1
发帖数: 6383
16
来自主题: Java版 - Brainbench test (转载)
这东西速成可有点难度。
b******y
发帖数: 1684
17
来自主题: Java版 - Brainbench test (转载)
google 1 down down
go to the tutorial, 1 day gaoding fundamental.
A**o
发帖数: 1550
18
来自主题: Java版 - Brainbench test (转载)
你是老神童,不是常人,不算数的。
b******y
发帖数: 1684
19
来自主题: Java版 - Brainbench test (转载)
这个跟考试划了范围一样啊
人家都说了spring mvc,难道还不容易应付一般的面试?
当然你如果考高级的fancy的东西,有N多的老年工程师也不见到会
除非自己肯钻研或者team里面有牛人传帮带
b****a
发帖数: 4465
20
来自主题: Java版 - Brainbench test (转载)
what is "1 down down"
thanks
z***h
发帖数: 405
21
来自主题: Java版 - Brainbench test (转载)
一下
d**n
发帖数: 198
22
来自主题: Java版 - Brainbench test (转载)
一下下
q*********u
发帖数: 280
23
考sun certificate?
如果是面试的话,现在直接上机也有点普及了,搞的和国内一样。
我上个月面试,做了1个半小时,做brainbech, 还拿了一个brainbench的证书
国内的话上来就是写一个login logout
我总感觉这样不是那么回事情,但是也没有更好的办法发现骗子,
小印骗子多,中国人说起来小屁孩出来混的也不少。
q*********u
发帖数: 280
24
来自主题: Java版 - Java练习题 7
b
你这些题是不是brainbench上面的阿

int i;
URL url = new URL("http://www.cnn.com");
InputStream input = url.openConnection().getInputStream();
//add a line here
while( (i=in.read())!=-1 )
{
System.out.print((char)i);
}
Add which of the following line to the above 'add a line here
will print out the context of the website
A. BufferedInputStream in = new BufferedInputStream(input);
B. BufferedReader in = new BufferedReader(new InputStr
i***0
发帖数: 55
25
我的选了一个expert level,结果只有70%,结论如下,被猎头伤心的责备了好久
应该是expert level八
我考,哪些问题,都不知道从哪里蹦出来的
============
Test: C++
This report is confidential and its contents are intended to assist in
the prediction of an applicant's work behavior. If you would like more
information about this interpretive report or other products that PreVisor
offers, please contact your account representative.
Score: 2.66
Proficiency Level: Proficient (2.51 - 3.50)
The candidate has mastered the basic concepts of
t******e
发帖数: 185
26
来自主题: Programming版 - C语言练习题 (转载)
【 以下文字转载自 JobHunting 讨论区 】
发信人: takecare (subjam), 信区: JobHunting
标 题: C语言练习题
发信站: BBS 未名空间站 (Thu Feb 21 12:08:10 2008)
要到brainbench做C测试题目,版上有人有经验么?
能否推荐一点C语言的练习题?虽然C平时用的多,
但是还是想做点题目热身一下。谢谢!
b********n
发帖数: 609
27
来自主题: Programming版 - C++证书
brainbench
c***c
发帖数: 21374
28
我做过brainbench的,应该和这个类似
考的比较详细,覆盖的知识点很全面
不能体现一个人的编程能力,但是一定可以反映一个人对某种语言/技术基本知识点的
记忆
g********e
发帖数: 1142
29
来自主题: Programming版 - Brainbench test (转载)
这套题偶做到99%,哼哼。
S*********u
发帖数: 106
30
来自主题: Programming版 - Brainbench test (转载)
这么牛逼???
t*********l
发帖数: 566
31
来自主题: Programming版 - Brainbench test (转载)
Me 99%, too!
n*****3
发帖数: 1584
32
Ding! -)
h****8
发帖数: 599
33
弱问这个是面试的practice?
m*****m
发帖数: 242
34
yes, it is, a good one
h****8
发帖数: 599
35
I am interested. How to contact you guys?
m****o
发帖数: 114
36
来自主题: Programming版 - 也问个STL的问题, 谢谢
brainbench has a lot of stuff like this.
s*******e
发帖数: 27
37
来自主题: Programming版 - 7年C的经验想转去C++开发难不难?
Some people say C++ is hard to learn but easy to use.
They say C++ is like black gold.
If you don't have much time or don't want to put too much effort, it is
really better off just to use c# or java.
Right now c++ interviews could be arbitrarily hard, for the good companies
or some brainbench tests.
h****b
发帖数: 157
38
来自主题: Programming版 - 问一道brainbench上的问题
size_t sizestr(const char *s)
{
const char * const start =s;
while(*s!='\0')
{
s++;
}
return(s-start);
}
which state below is true
1)the proposed return type deviates standard
2)the suggested implementation is incorrect because a differencing
operation is performed on pointer of unlike type
3) C does not support autoincrement for const qualified pointers. the body
of the loop is invalid
4) By the standard of C, the implementation miscalculates the length of
string
Q**g
发帖数: 183
39
来自主题: Programming版 - 问一道brainbench上的问题
1). ptrdiff_t
f******y
发帖数: 2971
40
来自主题: Programming版 - 问一道brainbench上的问题
3
g**********d
发帖数: 24
41
来自主题: Programming版 - 问一道brainbench上的问题
我也没看出错来。编译的代码运行成功。 请高人指点
B*******g
发帖数: 1593
42
来自主题: Programming版 - 问一道brainbench上的问题
2楼牛人答对了
a****l
发帖数: 8211
43
来自主题: Programming版 - 问一道brainbench上的问题
Actually the code is probabily very correct in every way, but the only "problem" is that it might not be doing what the coder "think" it should be doing. On the other hand, the original question did not state what it is supposed to do, so in this case it is hard to say whether anything is wrong with this code.
This is a typical "school" style question, where you would need to guess what is the intention of the question thus choosing the answer.
S*********g
发帖数: 5298
44
来自主题: Programming版 - 还是咱们这儿,亲。
this is test problems from brainbench?
h****b
发帖数: 157
45
来自主题: Programming版 - 看看这个题吧brainbench上的c
int fabonacci(int n)
{
if (n<0)
return (-1);
switch(n)
{
default: return(fabonacci(n-1)+fabonacci(n-2));
case 0: return 0;
case 1:
case 2:;
}
return(1);
}
有啥错?偶没看出来。
1) break should be inserted after each clause
2) fibonacci include calls to itself, it is not supported by standard c
3) since default is given first, it will be executed before any case
matching n
4) for some values of n, the environment will certainly exhaust its
stack space before the c
h****8
发帖数: 599
46
来自主题: Programming版 - 看看这个题吧brainbench上的c
3
你不妨试一下输入n=1的情况
h****b
发帖数: 157
47
来自主题: Programming版 - 看看这个题吧brainbench上的c
没错啊,我试了,结果是1.default可以放在任何地方的
B*******g
发帖数: 1593
48
来自主题: Programming版 - 看看这个题吧brainbench上的c
4.
我开始还以为如果没有break会一定进入default哩。。。tricky啊
h****b
发帖数: 157
49
来自主题: Programming版 - 看看这个题吧brainbench上的c
能不能解释一下。我试过了,没发现问题。
B*******g
发帖数: 1593
50
来自主题: Programming版 - 看看这个题吧brainbench上的c
我觉得程序逻辑上没有问题。 f(1) f(2)都是return 1...再往上开始递归 就是进入
switch 的
default
递归的话返回前所有变量都储存在stack上 所以有可能耗尽
首页 上页 1 2 3 4 下页 末页 (共4页)