I'm interested in a list of publicly available programming exams which can be taken online. E.g. Brainbench offers a broad range of tests and certifications (including .NET technologies). ExpertRating is an option as well. Any similar services?
I'm also interested knowing if there are any Microsoft exams available online.
Thanks guys f...
Can someone tell me if are the answers for this questions are correct
Q: Type-hinting and the instanceof keyword can be used to check what types of things about variables?
Answers (choose 3)
a) If a particular child class extends from it
b) If they are an instance of a particular interface
c) If they are an abstract class
d) If they h...
elloo,
i've done some more php 5 certification mock exam questions however i cannot be sure that i'm right with some of the questions so i have decided to post them here. my answers are below each question
if i'm wrong please feel free to criticise. many thanks in advance
Q2. The _____ keyword is used to indicate an incomplete class o...
class Top{
public Top(String s){System.out.print("B");}
}
public class Bottom2 extends Top{
public Bottom2(String s){System.out.print("D");}
public static void main(String args[]){
new Bottom2("C");
System.out.println(" ");
} }
In the above program, I guessed the output must be BD, but in the book they said the...
class Building{
Building(){
System.out.print("b ");
}
Building(String name){
this();
System.out.print("bn "+name);
}
}
public class House extends Building{
House(){
System.out.print("h ");
}
House(String name){
this();
System.out.print("hn "+name);
}
publ...
Hi,
I looking for practical(with computer) web client side exams (javascript, css) because I have 3 hours exam with javascript + css without internet only notepad+browser.
I dont know if i will able to use JQUERY, I should prepare for use only regular javascript.
(If you know good books or tutorial its may helps too).
Edit:
my ideas f...
BlackBeltFactory.com uses a 'belt system' as a proxy for how much you know and how far you are in their certification system, sort of like martial arts belts.
The belt system seems like it does a better job of showing progress. Instead of all-or-nothing tests, it breaks the certification process down into smaller steps.
I see that they...
What are the various certifications available related to UML? Please give your suggestions with the exam number so that I can do further Google search on them.
Thanks!
...
Is there a webpage whith good level where I can test my skills in this languages:
Actionscript
php
c++
java
ruby
ruby on rails
python
pl/sql
sql
I'm looking for a multiplechooice page with question in language with the same or more skill level as it would be this one for an algorithm test:
What is the time complexity of
calculatin...
I was looking at some practice questions, and one had me curious. Do I need to answer based on how the test was probably written as opposed to what is currently true, or am I reading the question wrong?
Question: Which of the following pieces of information is available through the SqlServerEnumerator object (choose all that apply).
A. ...
I have a Databases exam tomorrow and I have been running over some past papers to check whether my relational algebra knowledge is up to a decent standard or not.
If it isn't I'm going to stop working on it now and focus on other possible question types (DDL, Normalization) that may also arise.
If it needs just a little bit of work the...
I am planning to get my MCTS for Visual Studio 2010. The list of exams I need along with descriptions and topics covered can be found here.
There is now no equivalent of exam 70-536 for the new exams. I did some searching and although it is clear to me there is no replacement of the exam, it is not clear to me whether there are .NET fr...
class CardBoard {
Short story = 200;
CardBoard go(CardBoard cb) {
cb = null;
return cb;
}
public static void main(String[] args) {
CardBoard c1 = new CardBoard();
CardBoard c2 = new CardBoard();
CardBoard c3 = c1.go(c2);
System.out.println("c3 value : "+c3);
c1 = null;
System.out.println("c1 val...
Hello,
When practising mock exams (for Java certification, but this question could apply to any language), I often look at the code in question and struggle to find somewhere to start
Often, one of the answers may be "code does not compile", therfore you need to carefully examine the source code, and a good logical structure of doing t...
Command that provides mysql server information?
what are properties of myisam dynamic row format?
what is the maximum value allowed for tinyint(2)
...
I'm planning on taking mcts 70-515 exam. where do I start?
are any of these things good/proven to work?
http://www.exampapers.me/best-70-515-test-paper-23563.htm
has anyone use these before?
any input greatly appreciated. thanks
...
I just completed the "Practice test" from the ETS website:
http://www.ets.org/gre/subject/about/content/computer_science
and I've just noticed that you have to post it off to them to get it marked! Is there any list of answers for this booklet anywhere that I can use to grade myself?
...