9
votes
22answers
589 views
What tips can you offer for programming on paper?
In exams and interview situations, it's common to need to either write or review code that's not on a screen.
Whether it's on paper or a whiteboard, what tips can you offer for both the writing and …
7
votes
5answers
237 views
.NET Optimized Int32
While reading through the 70-536 training kit, it states:
The runtime optimizes the performance
of 32-bit integer types (Int32), so
use those types for counters and other
frequently …
6
votes
7answers
315 views
Is it possible to call subclasses’ methods on a superclass object?
Hi, sorry for such a novice question, just wanted to check my answer as I think it might be wrong :S
Animal is a superclass of Dog
and Dog has a method called bark
public void bark()
{
…
4
votes
1answer
126 views
Why is memory area $1020 unwriteable on M68HC12 with staa?
I have the following asm code:
org $1000 ;Table Origin is at $1000
fcb $02,$04,$06,$08 ; values of table from $1001 - $1004
fcb $0a,$0c,$0e,$10 ; values of table from $1005 - …
4
votes
7answers
414 views
Do you think exams that test rote memorization are worthwhile?
I usually do very well on tests, because I have a capacious memory. However, I know many programmers who are excellent at what they do, but have to drop to Google more often than I to figure something …
3
votes
5answers
313 views
70-536 exam, same for 2.0 and 3.5
Hi,
I have recently booked the 70-536 Application Development Foundation exam. On the above link it says that
"If you are a .NET 2.0 developer, you
do not need to learn .NET 3.5 to pass
…
2
votes
4answers
61 views
Optimal Search criteria in this array?
I just wrote this exam, in which there was question: Consider a array of size 2n, where the numbers in odd positions are sorted in ascending order and the the numbers in even positions in descending …
2
votes
4answers
160 views
Certification for Asp.net MVC
Is there any certification aimed at Asp.net MVC developers?
Either from Microsoft or any other vendor?
EDIT:
If there's not are there any plans to be?
2
votes
5answers
122 views
Any Good Certification in Testing
Which exam is better for TEsting engineer, ISEB or CSTE? Any other good ones you suggest? Anyone know about any Microsoft certification in Testing?
Kind Regards
Sam
2
votes
3answers
378 views
Probability problem - Duplicates when choosing from large basket.
I need to explain to the client why dupes are showing up between 2 supposedly different exams. It's been 20 years since Prob and Stats.
I have a generated Multiple choice exam.
There are 192 …
1
vote
7answers
179 views
Writing a test case that checks for memory leaks in C++
NOTE: THIS IS NOT HOMEWORK IT IS FROM A PRACTICE EXAM GIVEN TO US BY OUR PROFESSORS TO HELP US PREPARE FOR OUR EXAM
I'm currently studying for a programming exam. On one of the sample tests they gave …
1
vote
5answers
132 views
How to compute the output ?
How to compute the output for the recursive functions ? I know recursion invokes a stack, but am confusing while solving some aptitude question.
Given the following code snippet:
#include …
1
vote
2answers
146 views
Confused by Exam Question
I have got this question from past exam papers and I can't figure out what it is trying to ask me to say...
The question is...
Explain the difference between HREF and IMG tags used in HTML …
1
vote
2answers
387 views
Studying for the 70-564 exam
Besdies the searching MSDN with the course outline, there is little out there to help prepare for the 70-564 exam . Some say that using the 70-547 Training Kit book helps, but does anyone know (as a …
1
vote
1answer
252 views
Oracle - NULLS in foreign keys?
Hi,
I'm trying to answer the following question...
"Explain the issues that arise when NULLs are present in columns that make up foreign keys. Discuss how ANSI have attempted to resolve this issue …
