Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
8answers
243 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 ...
10
votes
11answers
438 views

Best way to solve programming problem without a computer?

What is the best way to solve programming questions when you are given a question to write a program, in an exam for example, where you have no computer to test it. Is there a certain technique that ...
10
votes
22answers
1k views

What tips can you offer for programming on paper? [closed]

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 ...
9
votes
4answers
488 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 ...
9
votes
12answers
1k views

C++ exam on string class implementation

I just took an exam where I was asked the following: Write the function body of each of the methods GenStrLen, InsertChar and StrReverse for the given code below. You must take into consideration ...
8
votes
3answers
556 views

JavaScript Exam

Are there any exams for advanced JavaScript? I've already seen the W3C's School, but this is too easy. Thanks!
8
votes
8answers
3k views

Is it possible to call subclasses' methods on a superclass object?

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() { ...
8
votes
5answers
310 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 ...
7
votes
5answers
4k 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?
7
votes
7answers
6k views

Is there any free online exam/quiz for jQuery?

Is there any free online exam/quiz for jQuery?
6
votes
4answers
5k views

MCTS 70-515 Exam [closed]

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 ...
6
votes
2answers
601 views

Programming certification and exams which can be taken online [closed]

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 ...
6
votes
1answer
167 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 - ...
5
votes
2answers
512 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 ...
5
votes
4answers
3k views

Where can I take an online programming aptitude test/exam? [closed]

A potential employer requires me to take an online aptitude test before my interview (in this case the test is for C, from Previsor). Where can I take the same (or similar) test so I have a rough idea ...
4
votes
1answer
55 views

SQL: Statement Triggers VS For Each Row

EDIT: I don't know what distro it is, it's in an exam paper. I'm just not getting this, sadly. I'm quite happy with Row level triggers but could someone explain to me how the results would differ if ...
4
votes
5answers
209 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 ...
4
votes
5answers
156 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 ...
4
votes
1answer
114 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 ...
3
votes
1answer
58 views

SQL troubling exam query

So I have a Databases exam in the coming weeks, and as usual I decided to go over the past papers to see how the question might be. Everything went along fine until I came across this question. ...
3
votes
2answers
60 views

Graph Minimum Spanning Tree using BFS

This is a problem from a practice exam that I'm struggling with: Let G = (V, E) be a weighted undirected connected graph, with positive weights (you may assume that the weights are distinct). ...
3
votes
1answer
56 views

Dynamic Programming to Minimize Sum of Squares

I have this question on a practise exam, and have no idea how to solve it, so I'm very scared for the final. Anyways, finding that this problem has an answer would be relieving and would help me ...
3
votes
2answers
571 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 ...
3
votes
3answers
284 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 ...
3
votes
4answers
213 views

Tips regarding the .NET 3.5 ASP.NET Application Developmens Self Paced Training Kit

I'm starting on this book for the MCTS Exam 70-562 and i'm wondering if there are people around that can describe their feeling on how to work through this book most efficiently. Is the content in ...
3
votes
6answers
302 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?
3
votes
7answers
784 views

Do you think exams that test rote memorization are worthwhile? [closed]

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 ...
2
votes
2answers
95 views

Explaining some simple code

The below is an exam question: /* 1 */ string s1 = "FRED"; /* 2 */ string s2 = s1; /* 3 */ string s3 = "DERF"; /* 4 */ s3 = s1; For the second and the fourth lines above, name ...
2
votes
3answers
93 views

Overloading static_cast?

So, I had an exam the other day, and one of the questions was something very similar to this: We have a class called Square which holds a variable int side. How can we make it possible that cout ...
2
votes
3answers
69 views

Mark the Mark Scheme

I have successfully completed an AQA Computing exam (June 2011) in Delphi. Out of curiosity, I read the mark scheme for it. One thing I can't get over is that the C language mark scheme seems to be ...
2
votes
1answer
385 views

Diferent answers for the same questions, exam 70-515

I have two diferent answers for same questions (taken from a study guide). The Questions are: 1. You are implementing an ASP.NET Web application. Users will authenticate to the application with an ...
2
votes
1answer
53 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
662 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 ...
2
votes
2answers
589 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 ...
2
votes
2answers
417 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 ...
2
votes
7answers
164 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 ...
2
votes
1answer
82 views

What is a good approach when tackling technical questions in an exam? How to “be” the compiler?

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 ...
2
votes
4answers
232 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 ...
2
votes
4answers
131 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
7answers
3k views

Java Aptitude Test Tips

I'm applying for as a Java software engineer in a company in a couple of days. I really want to get hired in this company. Do you guys have any suggestions on what I should review or learn so that ...
2
votes
2answers
166 views

Recommended on-line SQL-92 certification?

I'm interested in measuring and improving (where necessary) my team's SQL-92 skills. Can anyone recommend an appropriate on-line course and/or examination? Ideally it would be vendor-neutral, but it ...
2
votes
3answers
656 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
5answers
50 views

Making a SQL query (cross table)

I am revising for my exam and I am a bit struggling with SQL queries.. Task for me is: write a SQL query to list the full names of all the clients that attend Allen Moore‟s classes, in ...
1
vote
2answers
60 views

fork() used as for cycle condition generates race condition?

alright so here is an excersise we had on today's exam of operating systems given this program in C #include <unistd.h> #include <stdlib.h> int main(){ int i; ...
1
vote
2answers
68 views

PERL databases to file

Currently I am working on my exam project and I require some assistance. The goal from this script is to select data from a MySQL database and put this in a file with a specific line length and even ...
1
vote
2answers
120 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
461 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?
1
vote
1answer
381 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
92 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
95 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 ...

1 2 3