Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Reply
 
Thread Tools Display Modes
Old Sep 19th, 2007, 10:38 AM   #11
DaWei
Resident Grouch
 
DaWei's Avatar
 
Join Date: Jun 2005
Posts: 6,453
Rep Power: 10 DaWei is on a distinguished road
Pseudo code is merely an expression of the logic in your natural language. For example,
Set variable A to 1
Loop:
   Add 1 to A
   If A is less than 10, return to top of Loop
   Else continue from end of loop
End of Loop
Print the value of A.
End of Program
__________________
Abstraction doesn't make it impossible to write bad code; it makes it possible to write superior code.
Contributor's Corner: Grumpy on C++ Exceptions DaWei on Pointers
DaWei is offline   Reply With Quote
Old Sep 19th, 2007, 12:07 PM   #12
peace_of_mind
Professional Programmer
 
peace_of_mind's Avatar
 
Join Date: Sep 2004
Location: Hell if I know most of the time
Posts: 439
Rep Power: 5 peace_of_mind is on a distinguished road
Send a message via MSN to peace_of_mind Send a message via Yahoo to peace_of_mind
Quote:
Originally Posted by Ooph View Post
peace_of_mind I sent you a PM, thanks a lot.
I sent both of the ones I mentioned earlier. You should have two emails with attachments waiting shortly.
__________________
Amateurs built the ark
Professionals built the Titanic

peace_of_mind is offline   Reply With Quote
Old Sep 19th, 2007, 2:11 PM   #13
Ooph
Newbie
 
Ooph's Avatar
 
Join Date: Sep 2007
Posts: 8
Rep Power: 0 Ooph is on a distinguished road
Just got back from lunch, hey thanks dude for the eBooks. One more question before I begin learning. Is there a certain method to studying a language? note taking etc? Any methods that have worked for you guys, would be appreciated .
Ooph is offline   Reply With Quote
Old Sep 19th, 2007, 8:03 PM   #14
Kelvoron
Programmer
 
Kelvoron's Avatar
 
Join Date: Aug 2007
Location: Ohio
Posts: 46
Rep Power: 0 Kelvoron is on a distinguished road
I fined that just jumping in helps me the best. I am a verry hands on learner so i sit down at the computer with my book learn the syntex and theory behined it and start codeing it untill i know what i am doing. (i am trying the just read the book thin with notes right now and it is driveing me bonkers though i have learnd quite a bit so i guess both aproaches work. One thing i do sugest when doing console applications at the verry top of the docuament you may want to put somthing like this

using sc = System.Console

this will keep you from going insane, none of the books i have read show you this but it cuts down on typing a good bit. you can do this with other things of the same nature but do not go overboard, this will turn:

System.Console.WriteLine("blah");
into
sc.Writeline("blah");

wich dosent seem like much but once you write a program with a few hundred lines of code it adds up.
__________________
Good better best, never let it rest, untill your good is better and your better is the best.
Kelvoron is offline   Reply With Quote
Old Sep 19th, 2007, 9:05 PM   #15
DaWei
Resident Grouch
 
DaWei's Avatar
 
Join Date: Jun 2005
Posts: 6,453
Rep Power: 10 DaWei is on a distinguished road
Quote:
I am a very hands on learner
I'll bet you loved learning about sex .
__________________
Abstraction doesn't make it impossible to write bad code; it makes it possible to write superior code.
Contributor's Corner: Grumpy on C++ Exceptions DaWei on Pointers
DaWei is offline   Reply With Quote
Old Sep 20th, 2007, 12:39 PM   #16
Ooph
Newbie
 
Ooph's Avatar
 
Join Date: Sep 2007
Posts: 8
Rep Power: 0 Ooph is on a distinguished road
Haha @ DaWei

I just want to thank all of you guys again for the great input. I hope this will help me begin .
Ooph is offline   Reply With Quote
Old Oct 2nd, 2007, 8:26 PM   #17
Canis Major
Some C++ guy
 
Canis Major's Avatar
 
Join Date: Aug 2007
Posts: 14
Rep Power: 0 Canis Major is on a distinguished road
Also, don't forget to keep programming. While you're still learning, it may take a while before the language becomes somewhat "intuitive" for you. So, I suggest doing it frequently. So, you won't have any problems if you're enjoying it.

Once you get used to programming a language, you should be able to learn similar languages quicker.
Canis Major is offline   Reply With Quote
Old Oct 3rd, 2007, 9:20 PM   #18
Bharathi
Programmer
 
Join Date: Apr 2005
Posts: 32
Rep Power: 0 Bharathi is on a distinguished road
For C# beginner

Hi,

For a beginner, you can learn about variables, strings, loops, functions, procedures in the first capsule.

Once you are familiar with this, you should learn about OOPs programming which includes developing classes, inheritance, polymorphism etc.

Next, you can jump on to application development which includes database design, interface design using Visual studio IDE and program using C#.

If you are developing a database application using C# and SQL server 2005, which is in demand in job market, then you can try this book

Database programming using Vb 2005, C# and sql server 2005
Bharathi is offline   Reply With Quote
Old Oct 4th, 2007, 8:17 AM   #19
Sil3ncer7
Programmer
 
Join Date: Sep 2007
Posts: 33
Rep Power: 0 Sil3ncer7 is on a distinguished road
Quote:
Originally Posted by Bharathi View Post
If you are developing a database application using C# and SQL server 2005, which is in demand in job market, then you can try this book

Database programming using Vb 2005, C# and sql server 2005


Just put in my order for my books.. I am looking forward to them coming in.
__________________
Slowly but surly trying to learn C#, SQL, VB.Net, and wondering if a tornado crosses the equator if it spins backwards....
Sil3ncer7 is offline   Reply With Quote
Old Oct 19th, 2007, 6:43 AM   #20
Bharathi
Programmer
 
Join Date: Apr 2005
Posts: 32
Rep Power: 0 Bharathi is on a distinguished road
Re: C# Beginner

Hi,

Try this book

"Database programming using visual Basic, C# and sql server 2005".
Bharathi is offline   Reply With Quote
Reply

Bookmarks

« Previous Thread in Forum | Next Thread in Forum »

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
beginner question dchankhour C 9 Jan 19th, 2006 7:55 AM
Beginner PhilBon Assembly 1 Jan 7th, 2006 4:56 AM
what open source code is good to read for a beginner? linuxpimp20 Other Programming Languages 22 Aug 30th, 2005 3:01 PM
HARDCORE..um beginner Stash Community Introductions 12 Jul 1st, 2005 1:38 PM
Beginner Q: Need help linking... majesticreality PHP 6 Mar 6th, 2005 3:19 PM




DaniWeb IT Discussion Community
All times are GMT -5. The time now is 6:03 PM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC