Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
50% Quality Score
Upvotes Received
3
Posts with Upvotes
3
Upvoting Members
3
Downvotes Received
3
Posts with Downvotes
3
Downvoting Members
3
3 Commented Posts
0 Endorsements
Ranked #2K
~9K People Reached
Favorite Tags

29 Posted Topics

Member Avatar for adnan121

change your scores from a double to a struct. You need two types, one for quizzes and one for exams.

Member Avatar for gusano79
0
187
Member Avatar for castajiz_2
Member Avatar for shyam47

You should investigate the singleton pattern (http://www.oodesign.com/singleton-pattern.html)

Member Avatar for Mitja Bonca
0
207
Member Avatar for omojolinho

The game functionality should be seperate from the graphic representation of the game. Try to write the game in a command prompt mode only. Then you can represent the board as a 2-dim array and each array item contains a class of type official or is empty You shoould have …

Member Avatar for vadriaan
0
158
Member Avatar for superjj

Best is to try for hands-on experience. Down load and install MySQL, then you have all the resources and tutorials online. Google 'MySQL tutorial' and take your pick

Member Avatar for superjj
0
331
Member Avatar for geeerald1131
Member Avatar for Mitja Bonca
0
201
Member Avatar for stereomatching

The idea of a "short" variable name only made sense when memory was very expemsive and the maximum was only 640K RAM. Giving it a meaningfull name is more important and helps with self-documenting e.g. [CODE]int lstr_this_variable_will_only_be_used_under_certain_conditions;[/CODE]makes more sense than [CODE]int maybe;[/CODE]

Member Avatar for stereomatching
0
141
Member Avatar for stakeMyHeart

A flat file is a file that contains a set of records. The records are normally seperated from each other by a space, a comma, or a new line. You could export a spreadsheet file to a comma seperated list i.e. a text file where every item is seperated by …

Member Avatar for stakeMyHeart
0
4K
Member Avatar for bettybarnes

One of the classes I did was called "System Analisys" which teaches all about determining the exact requirements of a software application. You use things like 'use cases' to seperate the 'must haves' from the 'nice to haves' to determine the core functionality of an application. Somewhere along the process …

Member Avatar for harinath_2007
0
190
Member Avatar for Macksh

My guess would be there is something wrong with your .NET installation, such as a missing or corrupt component. You can spend days hunting for the faulty component or just reinstall Visual Studio.

Member Avatar for thines01
0
182
Member Avatar for cypher1

I had similar problems even while connected directly to the router (no WIFI), so I called the ISP. They tried very hard, even replaced the underground wiring from their box outside the house to the next point after confirmiong the wires from their box to the house was fine. I …

Member Avatar for cypher1
0
148
Member Avatar for deva89

If you use the * in your search staement, you ask for and get everything. Remove the * and only list the columns you want. e.g. SELECT Batch_Number, Medicine_Name, Mfg_Company FROM

Member Avatar for kamilacbe
0
158
Member Avatar for youngdream

When matching the computer hardware with the OS you should consider the avaiability of hardware drivers in the chosen OS. If the system video or sound hardware is not recognized by the OS, you have to perform magic to get it to work. Try to be more adventurous and experiment …

Member Avatar for vadriaan
0
86
Member Avatar for techvillian

Here is the blind leading the blind...(I have never worked with touch screens) With any touch screen, the hardware drivers should be installed. This will result in an event being generated if you touch the screen. You should be able to trap that event in debugging mode and see what …

Member Avatar for vadriaan
0
121
Member Avatar for oldezwe

If you look at the value of 'insert' the statement will read: [CODE]INSERT INTO userInfo VALUES(John,John1,0,1)[/CODE] [B]John[/B] and [B]John1[/B] is interpreted as column names since they are not integers. Try placing the values inside ''. e.g. VALUES('" + username + "',etc will be read as VALUES('John',

Member Avatar for vadriaan
0
213
Member Avatar for pseudorandom21

If you need a Computer Science degree to operate a CNC lathe, no lathe would ever be sold. If I were to write the system to control a lathe I would make it "money-see-monkey-do", like generating a keystroke macro. The operator would make a cut and the machine would learn …

Member Avatar for jwenting
0
95
Member Avatar for gameguy91

I agree with CrisHunter: If you want to bring religion into it, we would much rather teach you to fish than give you a fish.

Member Avatar for Ezzaral
-1
94
Member Avatar for eoop.org
Member Avatar for vadriaan
0
336
Member Avatar for Andy90
Member Avatar for king03

More like a one-way relationship: Network admin do not need programming skilles except to write some small scripts Programmers need networking skills because they might be required to write a networking application

Member Avatar for martin11ph
0
265
Member Avatar for hericles

[url]http://www.infoworld.com/d/applications/25-free-open-source-projects-it-pros-will-love-180638[/url]

Member Avatar for vadriaan
0
128
Member Avatar for anum zaeii

The best way to learn it is by doing it. Start by writing a "Hello World" program. Then start refining it by adding bells and whistles. You will need to read a lot.

Member Avatar for ChrisHunter
0
74
Member Avatar for louguzzo

I suppose the 4 classes is a hint to use a two-dimentional array. Visualize 100 shoe boxes places on four shelves, 25 per shelf. So your class(0) would refer to one shelf. Now, how would you refer to any one of those boxes on that shelf? (0,x), (1, x), etc. …

Member Avatar for snipsala
0
181
Member Avatar for ffakih08

This thread resulted in me discovering the name of the paradigm I have been using for the past two years: "Prototype-based programming" as applied to PowerBuilder.

Member Avatar for vadriaan
0
140
Member Avatar for sirlink99

In my opinion Computer Science teaches you to code (anything from a ‘hello world’ to your own operating system) Then when you know how to code you get into Software Engineering where you learn how to develop and maintain large systems, topics such as the most efficient life cycle, most …

Member Avatar for Netcode
0
313
Member Avatar for sirlink99

The question should be "How to study Programming" Relying only on one (unwiling/ignorant) teacher is the same as Googling a problem and then only read the first link.

Member Avatar for sirlink99
0
223
Member Avatar for Panathinaikos22

You are asking the wrong question to the wrong people. Ever heard of the term "Outsourcing" ?

Member Avatar for vadriaan
0
52
Member Avatar for zeshansajid

I suggest you re-arrange the labeling of the input. If you compare this circuit with the circuit of a normal full adder then B and C are the standard inputs (A, B) and D is the carry. I am not sure what A does, except to act as a carry-enable. …

Member Avatar for vadriaan
0
275
Member Avatar for Arjun_Sarankulu

Two choices, copy the content of the file to an array or convert the content of the file to a stream. You can discard the first line when you process the array or stream

Member Avatar for wishesqq
0
239

The End.