The exam tag has no wiki summary.
1
vote
2answers
565 views
How does one prepare for the ColdFusion 9 ACE exam?
I tried searching here first, sure that this questions had been asked before, but could not find anything. I apologize if this is a repeat.
I tried doing a Google search and was surprised this this ...
1
vote
1answer
1k views
Study materials for exam 70-519: Designing and Developing Web Applications Using Microsoft .NET Framework 4 [closed]
Could anyone advise some material for preparing to exam 70-519? What books can I read? What kind of questions could be on this exam?
4
votes
5answers
843 views
Object composition promotes code reuse. (T/F, why)
I'm studying for an exam and am trying to figure this question out. The specific question is "Inheritance and object composition both promote code reuse. (T/F)", but I believe I understand the ...
1
vote
1answer
739 views
Microsoft certification, exam 70-515 [closed]
Hello guys I am going to take this exam and it is interesting to know how similar questions from preparation material to questions on exam? I use "Microsoft Press Training Kit Exam Prep" for 70-515 ...
1
vote
3answers
994 views
Exam question about inserting to a empty binary search tree
I'm having trouble interpreting a certain question about inserting elements to a binary search tree. I'm familiar with preorder, postorder, and inorder traversals, but I'm unfamiliar with the ...
1
vote
2answers
319 views
Exam question about hash tables (interpretation of wording)
I was confused about the wording of a particular exam question about hash tables. The way I understand it there could be two different answers depending on the interpretation. So I was wondering if ...
2
votes
1answer
83 views
Epipopolar Geometry
I'm currently studying for an exam (which is in two days) for computer vision but am getting pretty confused with the epipolar geometry stuff. I'm going through some past exam papers and I'm stuck on ...
2
votes
1answer
6k views
Find the critical path and slack time [closed]
Its just a simple problem from a question paper. I have drawn the network diagram but I need help on critical path and slack time.
I cannot add images because of spam protection please have look at ...
0
votes
3answers
553 views
public class PriorityQueue <T extends Comparable<T>>
I am having some difficulty in being able to come up with an answer to the following question. I was able to know that it uses Generics and known that it would help it help to remove some run time ...
1
vote
1answer
246 views
Advice on passing programming certification exams
I would love to hear from developers who have passed multiple programming certification exams.
Can you offer advice on how you passed these exams? Do you have specific study techniques? Do you have ...
0
votes
0answers
211 views
Examination software [closed]
I'm working on an examination software similar to the http://www.exam-software.com/screenshots.htm
I would like to find some open-source clones of such software but I could not.
Have you ever seen ...
1
vote
2answers
289 views
Big Theta problem
I have two functions:
f(n) = 2;
g(n) = 10 ^ 100;
I have to justify if f(n) = BigTheta(g(n)) or not.
My guess is that f(n) is BigTheta(g(n)), since both functions are constants (wich means the ...
1
vote
5answers
575 views
java dividing an array by its elements
I want to divide the elements of my array for the first element of the array, the method is working ok, but the last element is not been divided.
I think I had to use <= array.length..., but it ...
0
votes
4answers
789 views
C# exam question
Write a function named nextPerfectSquare that returns the first perfect square that is greater than its integer argument. A perfect square is an integer that is equal to some integer squared. For ...
1
vote
1answer
110 views
SCJP analog for JavaScript
Is there analog of SCJP exam for JavaScript?
points for exam(certification):
1. coverage and knowledge level:
core of JavaScript, without AJAX and OOP for novice and experienced developers
2. exam ...
0
votes
3answers
479 views
Help creating exam grading program in Python
I am trying to create a program that reads multiple choice answers from a txt file and compares them to a set answer key. This is what I have so far but the problem is that that when I run it, the ...
-2
votes
2answers
235 views
Random question in question paper [closed]
i am developing online exam. my application contains multiple tests example Test1,Test2.when i click Test1 questions related to Test1 should display Randomly similar to Test2.i am using sinle table it ...
3
votes
2answers
6k views
Multi-level page tables - hierarchical paging
Example question from a past operating system final, how do I calculate this kind of question?
A computer has a 64-bit virtual address space and 2048-byte pages. A page table entry takes 4 bytes. A ...
5
votes
5answers
311 views
What benefit do method-local inner classes provide in Java?
I've just read through the chapter on method-local inner classes in the SCJP book, and I'm really struggling to think of any practical use for them.
I've always been under the impression, that ...
-1
votes
2answers
249 views
Must a JCP/SCJP exam question be complete (i.e. compilable)?
Just reading Kathy "Sierra/Bert Bates: JSCP Java6 Study Guide" and found contradicting mock exam questions:
In one of the self-test questions, the correct answer was "Code does not compile" due to ...
10
votes
4answers
2k views
Tricky pointer question
I'm having trouble with a past exam question on pointers in c which I found from this link,
http://www.cl.cam.ac.uk/teaching/exams/pastpapers/y2007p3q4.pdf
The question is this:
A C programmer is ...
0
votes
1answer
495 views
creating online exam using python
I've been asked to make an online exam using python programming language , it should be a multiple answer question and has a time limit .
is there any ready python module for such a task , i don't ...
11
votes
8answers
315 views
Strictly typed pointers in C (hypothetically)
Here's a question I got in an exam today:
In C, suppose the pointers are strictly typed (ie, a pointer to an int cannot be used to point to a char). Does this reduce its expressive power? If no, why ...
1
vote
1answer
227 views
Trigger calling a Stored Procedure
I couldn't get the output also couldn't find the problem.
Question:
Table : rent_info(cust_id,date_out,date_due_in,date_returned,fine)
This table is for a book rental one. At first while inserting ...
1
vote
2answers
639 views
Keeping choice questions on the same page in LaTeX exam class
I am composing a multiple choice exam in LaTeX using the exam class (\documentclass{exam}) and questions are being broken across 2 pages at the end of a page. Is there a way to force LaTeX to keep ...
1
vote
3answers
684 views
Finding Consecutive numbers From a Arithmetic series in an Array of random numbers
I had an exam question asking the solution to find how many consecutive numbers in the arithmetic series n, n*2, n*3, n*i ( where i is array length - 1 ) are in an array of random numbers. The ...
0
votes
1answer
240 views
About HTML capability
Hey all here is one question from Gate exam which i found a bit confusing:
HTML (Hyper Text Markup Language) has language elements which permit
certain actions other than describing the structure of ...
4
votes
2answers
2k views
A c program from GATE paper
Hey all yesterday i have given my GATE exam and in this exam there was a question:
What does the following fragment of C-program print?
char c [] = "GATE2011";
char *p =c;
printf ( "%s", p+p [3] − p ...
0
votes
1answer
564 views
5
votes
2answers
705 views
split a linked list into 2 even lists containing the smallest and largest numbers
Given a linked list of integers in random order, split it into two new linked lists such that the difference in the sum of elements of each list is maximal and the length of the lists differs by no ...
4
votes
1answer
300 views
searching in an unsorted array in logrithmic time
I am currently studying for an exam in Introduction to algorithms, and I came across a question that I can't really solve, the question is this: You have an array of n integers, the first m elements ...
1
vote
3answers
1k views
Questions about MCPD Exam 70-523
It's time to update my MCPD from 3.5 to 4.0 and I have searched for information on how the exam (70-523) is setup but can't find any so I ask here. The update from 2.0 to 3.5 was 2 tests with 20-25 ...
0
votes
2answers
134 views
tactics to think as a computer
I have some question from the exam in which I need to deduce the output of the following code:
01 int foo(int a) {
02 print 'F';
03 if (a <= 1) return 1;
04 return bar(a, foo(a-1));
05 }
06
07 int ...
1
vote
1answer
354 views
Exam question about DTD/XML/DOM
i was recently browsing my resources in preparation for an exam when i came across the following question-
With reference to a situation where a programmer uses a DOM program to process an
XML ...
2
votes
2answers
627 views
is sql exam 70-451 simpler than 70-433? or vise-versa?
I am setting to take the Microsoft sql server exams 70-451 and 70-433 and wanted to know is there an order they should be taken in?
Intuitively I would thing the 70-433 exam should go first but read ...
1
vote
8answers
4k views
recursive factorial function
how can I combine these two functions in to one recursive function to have this result:
factorial(6)
1! = 1
2! = 2
3! = 6
4! = 24
5! = 120
6! = 720
these are the codes
def factorial( n ):
if n ...
8
votes
4answers
2k views
JavaScript Exam [closed]
Are there any exams for advanced JavaScript?
I've already seen the W3C's School, but this is too easy.
Thanks!
3
votes
7answers
434 views
Advantages of passing a function as a parameter
Just studying for an exam and I can't find the answer to this question in our notes. Any help would be great.
Many languages permit subroutines/functions to be passed as
parameters. List two ...
0
votes
1answer
67 views
I need sql certifications explained [closed]
ok so i am royally confused about the certifications Microsoft has out for SQL server.
from what i can gather from reading their site as well as others is there are various levels of tests (like in ...
0
votes
2answers
188 views
Restrict a page navigation to one control
I am making an online exam website where a user is taken to a page where there are multiple choice questions. I want to set it up so that once a user navigates to this exam page, he cannot navigate ...
-3
votes
1answer
630 views
Using the Z-transform properties with the inverse z transform by MATLAB
I am using the Z-transform properties with the inverse Z-transform by MATLAB.
I cannot find a function that would apply the Z-tranform properties to convert the result by residuez to the time domain. ...
-1
votes
2answers
175 views
please explain this mat lab script, thankyou
Please explain, or provide a link to an explanation, of the underlined portion.
function [y, n] = sigadd(x1, n1, x2, n2)
n = min(min(n1), min(n2)):max(max(n1), max(n2));
y1= zeros(1, length(n));
...
0
votes
3answers
136 views
I think the examiner has made several errors when correcting my VHDL/digital design-exam. Please help
I was just returned my exam from a course in digital design with VHDL. Marks have been deducted from 3 answers which I don't understand why. I've included the problem specification and my answer for ...
3
votes
4answers
426 views
Which objects are eligible for GC?
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 ...
3
votes
2answers
1k views
How much .NET Framework material will .NET 4.0 MCTS cert exam questions cover?
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 ...
4
votes
3answers
500 views
Where to test my skills? [closed]
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 ...
0
votes
2answers
479 views
UML Certification [closed]
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!
0
votes
3answers
1k views
Is scoring high on the Java Black Belt site any indication of real world success? [closed]
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 ...
-1
votes
1answer
410 views
Looking for practical(with computer) web client side exams (javascript, css) [closed]
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 ...
1
vote
2answers
185 views
Doubt based on program in SCJP(EXAM 310-065)
class Building{
Building(){
System.out.print("b ");
}
Building(String name){
this();
System.out.print("bn "+name);
}
}
public class House extends Building{
...
