473,396 Members | 2,158 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

C # and C ++ learning curve

Hi Complete ass here trying to get his feet wet in .NET programming. I want
to start easy, understanding what is talked about. Which of these two would
be a better choice, if same, which one is consider easier to learn first?
Thanks for any advice
Jan 19 '07 #1
12 2838
I agree with Mike. C++ is an excellent language that gives you
tremendous control over what is going on inside the machine. Perhaps
too much control for beginners: too many picky details to keep track
of. You'll learn much more about foundational stuff programming in C++,
but you may find it very difficult and not a bit frustrating.

C# takes care of a lot of the details for you (particularly memory
management and pointers, which are particularly tricky). I would start
there, if I were you, but do learn C++ at some point: it will open your
eyes to what is "really going on" inside the machine.

Mike Buckingham wrote:
C# is a much easier language to learn. So from that stand point it's the best
one to learn. It is also a purely .Net language while C++ can have native
code that does not use the CLR and is not managed. From an acedemic stand
point you will learn more about low level programming by learning C++. It
supports things like points and memory allocation that occur behind the
scenes in C#. So if you want to get a good understanding of what is going on
beind the scenes then study C++. If you just want to get up and running in
.Net C# is a much better choice.

Mike

"Peter@POLKO" wrote:
Hi Complete ass here trying to get his feet wet in .NET programming. I want
to start easy, understanding what is talked about. Which of these two would
be a better choice, if same, which one is consider easier to learn first?
Thanks for any advice

Jan 19 '07 #2
On Thu, 18 Jan 2007 19:03:00 -0800, Mike Buckingham
<Mi************@discussions.microsoft.comwrote:
>C# is a much easier language to learn. So from that stand point it's the best
one to learn. It is also a purely .Net language while C++ can have native
code that does not use the CLR and is not managed. From an acedemic stand
point you will learn more about low level programming by learning C++. It
supports things like points and memory allocation that occur behind the
scenes in C#. So if you want to get a good understanding of what is going on
beind the scenes then study C++. If you just want to get up and running in
.Net C# is a much better choice.

Mike
Echo what Mike said, plus I would add the fact that the C# compiler is
v. v. fast, which helps a lot in turnaround when you are trying to
learn/debug something.

--
Philip Daniels
Jan 19 '07 #3
I'll side with everyone else (well it is a c# group). C++ is great, but
I can't see the point of learning it over c# for dotnet development.
Outside of dotnet, it's still popular with game developers, certain
financial institutions, Linux developers, etc. Again though I'm seeing
a move away from C++ and Java in finance to c#. Games developers still
predominantly use C++ but do use C# for building tools and I can
imagine a transition to C# for the AI and scripting portions of games
in the not too distant future if not the graphics just yet. Linux
stuff, you really need C/C++ skills although mono is coming along
nicely.

If you want to give it a try Microsoft have the freely available Visual
studio express which comes in editions supporting C#, C++, j# and
VB.net (I'd say avoid VB.net and j# at any cost). There's a web version
as well and SQL Server Express.

They also have the XNA version which allows you to develop games for
windows or the 360 (the latter costs money, the former is free).

Finally there's an open source IDE called SharpDevelop (? I think)
which is impressive, I don't use it though so can't comment in detail.
The express versions of VS are slightly cut down from the base
commercial VS but I don't think that will hurt you at this point.

If you prefer Linux over windows take a look at Mono, dotnet for Linux,
probably before the MS implementation as it misses some features at the
moment.

Peter@POLKO wrote:
Hi Complete ass here trying to get his feet wet in .NET programming. I want
to start easy, understanding what is talked about. Which of these two would
be a better choice, if same, which one is consider easier to learn first?
Thanks for any advice
Jan 19 '07 #4
Thank You all for help. I,ll start as you advised with C#, digging later
into C ++. One more question, Developer said to avoid VB, I was planning to
do it next, why should I avoid it?
Thanks again
"DeveloperX" <nn*****@operamail.comwrote in message
news:11**********************@m58g2000cwm.googlegr oups.com...
I'll side with everyone else (well it is a c# group). C++ is great, but
I can't see the point of learning it over c# for dotnet development.
Outside of dotnet, it's still popular with game developers, certain
financial institutions, Linux developers, etc. Again though I'm seeing
a move away from C++ and Java in finance to c#. Games developers still
predominantly use C++ but do use C# for building tools and I can
imagine a transition to C# for the AI and scripting portions of games
in the not too distant future if not the graphics just yet. Linux
stuff, you really need C/C++ skills although mono is coming along
nicely.

If you want to give it a try Microsoft have the freely available Visual
studio express which comes in editions supporting C#, C++, j# and
VB.net (I'd say avoid VB.net and j# at any cost). There's a web version
as well and SQL Server Express.

They also have the XNA version which allows you to develop games for
windows or the 360 (the latter costs money, the former is free).

Finally there's an open source IDE called SharpDevelop (? I think)
which is impressive, I don't use it though so can't comment in detail.
The express versions of VS are slightly cut down from the base
commercial VS but I don't think that will hurt you at this point.

If you prefer Linux over windows take a look at Mono, dotnet for Linux,
probably before the MS implementation as it misses some features at the
moment.

Peter@POLKO wrote:
>Hi Complete ass here trying to get his feet wet in .NET programming. I
want
to start easy, understanding what is talked about. Which of these two
would
be a better choice, if same, which one is consider easier to learn first?
Thanks for any advice

Jan 19 '07 #5
POLKO wrote:
Thank You all for help. I,ll start as you advised with C#, digging later
into C ++. One more question, Developer said to avoid VB, I was planning to
do it next, why should I avoid it?
Well, first be aware that there's an anti-VB sentiment in the C# crowd
(I admit that I share it). Mostly it's for historical reasons, but
those reasons are still valid. C# was born out of the C, C++, Delphi
line of languages, which encourage rigour and precise specification of
exactly what it is you want to do. VB.NET was born out of VB and VBA,
which are much looser languages, the latter being an interpreted
scripting language. VB, historically, has not bothered with things like
precise definitions of types (or even precise typing at all) or
explicit type conversions. Historically, VB has encouraged programmers
to just write some code and the compiler (or interpreter) will do its
best to figure out what you meant. C, on the other hand, never cut you
any slack: you had to say _precisely_ what you wanted or the compiler
would kick your butt.

The general philosophies that underly the two camps are that C# (and C
/ C++ / Delphi) people tend to plan more carefully and be more
detail-oriented. They're into stuff like test-driven development. In
fact, it's mostly this camp that talks about programming as an
engineering discipline, and is concerned with development processes and
how to ensure correct code.

The VB camp is more concerned with rapid prototyping: throw something
together quickly and see if it works. The prejudice that we C-type
people hold regarding VB programming is that it encourages sloppy
development. The perjorative term that you'll see here from time to
time is "script kiddies": toss something together, try it out a few
times, then throw it to the users to see if it flies.

With the advent of VB.NET, there is little or nothing left in the
language, per se, that precludes careful, engineering-style
development. It's more the history behind the language and, as a
result, the types of programmers who are attracted to it (out of
familiarity) that continue its fast-and-loose reputation.

Jan 19 '07 #6
At this point, there's not a lot of difference between C# and VB;
it's just a prejudice that C# programmers have. What Bruce said about
earlier versions of VB is true, although a good programmer would make
sure his or her code was done the right way in any language.

Being completely anal-retentive, my old VB6 code had everything
typed specifically and was not sloppy in any way, shape or form.
Sure, there are sloppy programmers, but they exist in any language,
although some languages (like the prior versions of VB) allowed more
people to be sloppier than necessary.

I think VB.Net is easier to read and program in, but I also think
there are more jobs in C#.

Robin S.
---------------------------------------

"POLKO" <PO***@verizon.netwrote in message
news:Ea6sh.7$FN1.6@trnddc08...
Thank You all for help. I,ll start as you advised with C#, digging
later into C ++. One more question, Developer said to avoid VB, I was
planning to do it next, why should I avoid it?
Thanks again
"DeveloperX" <nn*****@operamail.comwrote in message
news:11**********************@m58g2000cwm.googlegr oups.com...
>I'll side with everyone else (well it is a c# group). C++ is great,
but
I can't see the point of learning it over c# for dotnet development.
Outside of dotnet, it's still popular with game developers, certain
financial institutions, Linux developers, etc. Again though I'm
seeing
a move away from C++ and Java in finance to c#. Games developers
still
predominantly use C++ but do use C# for building tools and I can
imagine a transition to C# for the AI and scripting portions of games
in the not too distant future if not the graphics just yet. Linux
stuff, you really need C/C++ skills although mono is coming along
nicely.

If you want to give it a try Microsoft have the freely available
Visual
studio express which comes in editions supporting C#, C++, j# and
VB.net (I'd say avoid VB.net and j# at any cost). There's a web
version
as well and SQL Server Express.

They also have the XNA version which allows you to develop games for
windows or the 360 (the latter costs money, the former is free).

Finally there's an open source IDE called SharpDevelop (? I think)
which is impressive, I don't use it though so can't comment in
detail.
The express versions of VS are slightly cut down from the base
commercial VS but I don't think that will hurt you at this point.

If you prefer Linux over windows take a look at Mono, dotnet for
Linux,
probably before the MS implementation as it misses some features at
the
moment.

Peter@POLKO wrote:
>>Hi Complete ass here trying to get his feet wet in .NET programming.
I want
to start easy, understanding what is talked about. Which of these
two would
be a better choice, if same, which one is consider easier to learn
first?
Thanks for any advice


Jan 20 '07 #7
I should of qualified my dislike of vb.net, so I'll do so now.

I'm a huge fan of vb6. Some truly heroic software has been developed
with it, but it did not transition well to the dotnet platform.
the c# syntax is cleaner than the vb.net syntax and it doesn't need to
make consessions to backwards compatability that vb.net has. For
developers moving from vb6 to dotnet I'd say go for c# because it will
help annex your vb6 knowledge and embrace a better way of progamming.
You get the RAD benefits of VB6 with the power of C++. You do need to
stop thinking in VB6 though and going vb.net does not help that.
Another good reason to avoid vb.net is a bit more scary. I'm aware of a
number of companies who have converted vb6 code into vb.net code using
the MS sponsored tools (Sorry I forget the names). All I can say is try
and avoid working on any project developed this way. The code generated
is painful.
RobinS wrote:
At this point, there's not a lot of difference between C# and VB;
it's just a prejudice that C# programmers have. What Bruce said about
earlier versions of VB is true, although a good programmer would make
sure his or her code was done the right way in any language.

Being completely anal-retentive, my old VB6 code had everything
typed specifically and was not sloppy in any way, shape or form.
Sure, there are sloppy programmers, but they exist in any language,
although some languages (like the prior versions of VB) allowed more
people to be sloppier than necessary.

I think VB.Net is easier to read and program in, but I also think
there are more jobs in C#.

Robin S.
---------------------------------------

"POLKO" <PO***@verizon.netwrote in message
news:Ea6sh.7$FN1.6@trnddc08...
Thank You all for help. I,ll start as you advised with C#, digging
later into C ++. One more question, Developer said to avoid VB, I was
planning to do it next, why should I avoid it?
Thanks again
"DeveloperX" <nn*****@operamail.comwrote in message
news:11**********************@m58g2000cwm.googlegr oups.com...
I'll side with everyone else (well it is a c# group). C++ is great,
but
I can't see the point of learning it over c# for dotnet development.
Outside of dotnet, it's still popular with game developers, certain
financial institutions, Linux developers, etc. Again though I'm
seeing
a move away from C++ and Java in finance to c#. Games developers
still
predominantly use C++ but do use C# for building tools and I can
imagine a transition to C# for the AI and scripting portions of games
in the not too distant future if not the graphics just yet. Linux
stuff, you really need C/C++ skills although mono is coming along
nicely.

If you want to give it a try Microsoft have the freely available
Visual
studio express which comes in editions supporting C#, C++, j# and
VB.net (I'd say avoid VB.net and j# at any cost). There's a web
version
as well and SQL Server Express.

They also have the XNA version which allows you to develop games for
windows or the 360 (the latter costs money, the former is free).

Finally there's an open source IDE called SharpDevelop (? I think)
which is impressive, I don't use it though so can't comment in
detail.
The express versions of VS are slightly cut down from the base
commercial VS but I don't think that will hurt you at this point.

If you prefer Linux over windows take a look at Mono, dotnet for
Linux,
probably before the MS implementation as it misses some features at
the
moment.

Peter@POLKO wrote:
Hi Complete ass here trying to get his feet wet in .NET programming.
I want
to start easy, understanding what is talked about. Which of these
two would
be a better choice, if same, which one is consider easier to learn
first?
Thanks for any advice
Jan 20 '07 #8
into C ++. One more question, Developer said to avoid VB, I was planning
to
do it next, why should I avoid it?
Because developerX does not know anything about it.
By instance he wrote that VB.Net did take things from the past. So did C#.

Where VB.Net got a library to enhance the performance did C# inherit unsave
code.

Both are absolute not important for 99% of the developers.

We can see you are biased on C languages, so take C#.

Just my idea,

Before you understand me wrong, I use both languages and while busy I almost
don't aware the difference.

Cor

Thanks again
"DeveloperX" <nn*****@operamail.comwrote in message
news:11**********************@m58g2000cwm.googlegr oups.com...
>I'll side with everyone else (well it is a c# group). C++ is great, but
I can't see the point of learning it over c# for dotnet development.
Outside of dotnet, it's still popular with game developers, certain
financial institutions, Linux developers, etc. Again though I'm seeing
a move away from C++ and Java in finance to c#. Games developers still
predominantly use C++ but do use C# for building tools and I can
imagine a transition to C# for the AI and scripting portions of games
in the not too distant future if not the graphics just yet. Linux
stuff, you really need C/C++ skills although mono is coming along
nicely.

If you want to give it a try Microsoft have the freely available Visual
studio express which comes in editions supporting C#, C++, j# and
VB.net (I'd say avoid VB.net and j# at any cost). There's a web version
as well and SQL Server Express.

They also have the XNA version which allows you to develop games for
windows or the 360 (the latter costs money, the former is free).

Finally there's an open source IDE called SharpDevelop (? I think)
which is impressive, I don't use it though so can't comment in detail.
The express versions of VS are slightly cut down from the base
commercial VS but I don't think that will hurt you at this point.

If you prefer Linux over windows take a look at Mono, dotnet for Linux,
probably before the MS implementation as it misses some features at the
moment.

Peter@POLKO wrote:
>>Hi Complete ass here trying to get his feet wet in .NET programming. I
want
to start easy, understanding what is talked about. Which of these two
would
be a better choice, if same, which one is consider easier to learn
first?
Thanks for any advice


Jan 20 '07 #9

Cor Ligthert [MVP] wrote:
into C ++. One more question, Developer said to avoid VB, I was planning
to
do it next, why should I avoid it?

Because developerX does not know anything about it.
By instance he wrote that VB.Net did take things from the past. So did C#.
If you are looking strictly at the language syntax and semantics, it
makes little difference which one you choose.

In my opinion the big difference between working in the languages is
the programmer culture, and, as DeveloperX pointed out, the kind of
code you run across.

True, there is some awful C# code out there. There's awful code in
every language.

VB.NET, however, has the unfortunate distinction of fostering bad code
for historical reasons. As DeveloperX pointed out, there's some
auto-converted code from VB6. Auto-converted code almost always sucks,
particularly from a non-OO language to an OO language. Just run
screaming from that mess. As well, there's the mental disconnect
problem: lots of programmers who wrote procedural code in VB6 have
moved to VB.NET and continue to write in the same style, thus making a
mess. The worst code I've ever read in my life came from programmers
who moved from one language they knew well to another language they
didn't know and, rather than learning the new idioms, just used their
old programming style in the new language. (Ever seen C written as
COBOL? I have, complete with comments saying "/* WORKING STORAGE
SECTION */" and "/* PROCEDURE DIVISION */". Gross.) Unfortunately,
VB.NET encourages this.

True, the C to C# transition would be the same, but most C programmers
moved to C++ first, made an ugly mess there, and so by the time they
made it to C# they'd made most of their blunders already.

Again, there's nothing about the two languages per se that would make
VB.NET "worse" than C#. With LINQ it even sports some cool new features
that can make it even more readable than C#. The problem is more the
culture thing, which I believe will work itself out over time.
Disciplined programmers will write good code in either language. Hacks
will write bad code in either language. The difference is that, at
present, IMHO, there are more hacks writing in VB.NET than in C#.

Jan 20 '07 #10
One thing I like about C# is the fact that if and when you need to jump
into other languages they are many that look/feel like c#.

For example Java, ActionScript( Flash ), JavaScript, PHP and others.

They all borrow from the family of C languages but more languages like
C# are offering memory managed environments therefore making C# (in my
opinion) the better choice.

I have the utmost respect for any true C++ programmer and I can only
wish that I understood the hardware and memory aspect of things like
they do but the fact is, it's becoming more specialized.

Companies are looking for rapid development over speed and control. I
mean, imagine programming a Web Application in c++. Of course it can
be done but the C# team will pump it out faster. True, they may not
understand data structures, hardware, and memory management as much as
a c++ programmer would but in many settings rapid development is
favored over those things then if need be performance is squeezed out
by moving to the lower level (read: c++).

I'm sure I might get people who would argue this fact but all you need
to do is look at the market. Like I said I give it up to c++ coders
but I'll stick with my managed world until the need arises and the
ground opens up and eats me alive. Which I know will happen someday.

Haha,

-Ralph

Sidenote: The only reason I say that some people may not understand
data structures, hardware and memory management is for some obvious
reasons and some not so obvious. I love the fact that the .net
framework has all these built in classes ready to go. But the downside
is unless I truley delve into these classes and figure out in detail
how they work I may not understand them as effectively as someone who
has to build these structures from scratch. True story: a programmer
interviewed for this company. He was asked when he would use some data
structures over others. His argument was that it was all user
preference. Meaning they all did the same thing...but you just had to
choose what you preferred. Nevermind having to worry about sorting,
lookup speed, hash collisions, etc. Forget about O notation...he just
figured it was all preference and that all data structures performed
the same. Unfortunately this is common in the managed, framework world
of developers. I'm guilty of it sometimes too. People can have a
tendancy to not really understand why different classes exist in the
first place.
Peter@POLKO wrote:
Hi Complete ass here trying to get his feet wet in .NET programming. I want
to start easy, understanding what is talked about. Which of these two would
be a better choice, if same, which one is consider easier to learn first?
Thanks for any advice
Jan 21 '07 #11
On 20 Jan 2007 20:20:25 -0800, "Deckarep" <de******@gmail.comwrote:
>One thing I like about C# is the fact that if and when you need to jump
into other languages they are many that look/feel like c#.

For example Java, ActionScript( Flash ), JavaScript, PHP and others.
To be honest, Java, JavaScript, PHP, etc. were all invented *before*
C#.
(However, C# has several improvements over Java.)

>They all borrow from the family of C languages but more languages like
C# are offering memory managed environments therefore making C# (in my
opinion) the better choice.
Java offered garbage-collector memory management *before* C#.
If I recall correctly, also Visual Basic 6 offered automatic memory
management (but I'm not sure about this).

>Companies are looking for rapid development over speed and control. I
mean, imagine programming a Web Application in c++. Of course it can
be done but the C# team will pump it out faster.
I like C and C++, but you're absolutely right here.

Languages are tools, and one must choose the best tools for the given
job.

For web apps, I think the way to go is C#.
(And for some web development, also PHP would be OK, and PHP is much
simpler than C#.)

>True, they may not
understand data structures,
C++ has STL, so also a C++ programmer "may not understand data
structures".

But I think that basic understanding of data structures (lookup speed,
sorting, etc.) should be a common denominator of all programmers
(whether they use C# or C++ or other languages)

>hardware, and memory management as much as
a c++ programmer would but in many settings rapid development is
favored over those things then if need be performance is squeezed out
by moving to the lower level (read: c++).
Moreover, the WWW and Internet have some latency, so some clock cycles
that a C++ .exe may save on a local machine are absolutely irrelevant
in this context.

And there is the problem of security: it is possible to cause buffer
overflows with C++ arrays (not if one use std::vector with at()
method, however). While C# (and Java) arrays are bounds-checked. This
is very important to build secure software.
MrAsm
Jan 21 '07 #12
Anybody using the MS tools to convert a VB6 app to VB.Net has
serious stupidity issues, and if they had a converter to
convert to C#, they would use that, too.

The entertaining thing about this whole discussion is that if
someone posted the same question in the VB newsgroup, they
would have just as many reasons to use VB over C# as the
C# newsgroup does for using C# over VB.

So maybe we could all just agree that if you're a good programmer,
either language will work, and both languages have features that
work better in some cases than the other one.

Robin S.
-----------------------------------------

"DeveloperX" <nn*****@operamail.comwrote in message
news:11*********************@q2g2000cwa.googlegrou ps.com...
>I should of qualified my dislike of vb.net, so I'll do so now.

I'm a huge fan of vb6. Some truly heroic software has been developed
with it, but it did not transition well to the dotnet platform.
the c# syntax is cleaner than the vb.net syntax and it doesn't need to
make consessions to backwards compatability that vb.net has. For
developers moving from vb6 to dotnet I'd say go for c# because it will
help annex your vb6 knowledge and embrace a better way of progamming.
You get the RAD benefits of VB6 with the power of C++. You do need to
stop thinking in VB6 though and going vb.net does not help that.
Another good reason to avoid vb.net is a bit more scary. I'm aware of
a
number of companies who have converted vb6 code into vb.net code using
the MS sponsored tools (Sorry I forget the names). All I can say is
try
and avoid working on any project developed this way. The code
generated
is painful.
RobinS wrote:
>At this point, there's not a lot of difference between C# and VB;
it's just a prejudice that C# programmers have. What Bruce said about
earlier versions of VB is true, although a good programmer would make
sure his or her code was done the right way in any language.

Being completely anal-retentive, my old VB6 code had everything
typed specifically and was not sloppy in any way, shape or form.
Sure, there are sloppy programmers, but they exist in any language,
although some languages (like the prior versions of VB) allowed more
people to be sloppier than necessary.

I think VB.Net is easier to read and program in, but I also think
there are more jobs in C#.

Robin S.
---------------------------------------

"POLKO" <PO***@verizon.netwrote in message
news:Ea6sh.7$FN1.6@trnddc08...
Thank You all for help. I,ll start as you advised with C#, digging
later into C ++. One more question, Developer said to avoid VB, I
was
planning to do it next, why should I avoid it?
Thanks again
"DeveloperX" <nn*****@operamail.comwrote in message
news:11**********************@m58g2000cwm.googlegr oups.com...
I'll side with everyone else (well it is a c# group). C++ is
great,
but
I can't see the point of learning it over c# for dotnet
development.
Outside of dotnet, it's still popular with game developers,
certain
financial institutions, Linux developers, etc. Again though I'm
seeing
a move away from C++ and Java in finance to c#. Games developers
still
predominantly use C++ but do use C# for building tools and I can
imagine a transition to C# for the AI and scripting portions of
games
in the not too distant future if not the graphics just yet. Linux
stuff, you really need C/C++ skills although mono is coming along
nicely.

If you want to give it a try Microsoft have the freely available
Visual
studio express which comes in editions supporting C#, C++, j# and
VB.net (I'd say avoid VB.net and j# at any cost). There's a web
version
as well and SQL Server Express.

They also have the XNA version which allows you to develop games
for
windows or the 360 (the latter costs money, the former is free).

Finally there's an open source IDE called SharpDevelop (? I think)
which is impressive, I don't use it though so can't comment in
detail.
The express versions of VS are slightly cut down from the base
commercial VS but I don't think that will hurt you at this point.

If you prefer Linux over windows take a look at Mono, dotnet for
Linux,
probably before the MS implementation as it misses some features
at
the
moment.

Peter@POLKO wrote:
Hi Complete ass here trying to get his feet wet in .NET
programming.
I want
to start easy, understanding what is talked about. Which of these
two would
be a better choice, if same, which one is consider easier to
learn
first?
Thanks for any advice

Jan 22 '07 #13

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
by: Chris | last post by:
I've written a small QBASIC program which draws a spiral. Here is the code: SCREEN 12 CLS FOR t = 1 TO 400 STEP .01 x = .5 * t * COS(t) y = .5 * t * SIN(t) PSET (x + 320, y + 240) NEXT t
8
by: Lennart | last post by:
Hi everybody, Can someone advice me with the following issue: i want to learn python in my summer vacation (i try to ...:-) So, a good start is buying a good book. But wich? There are many ... ...
6
by: kneejerkreaction | last post by:
I'm seeking advice on learning .NET I have experience in ASP, HTML, Vb, Vbscript and Javascript but want to learn .NET I also have some experience with SQL Server and Oracle databases. My...
18
by: davineastley | last post by:
Hello, My name is Davin Eastley and I'm 13 years old. I live in Tasmania, Australia and am training for MCAD Certification in C#. I was interested to know what the best resources for learning...
8
by: Mantorok | last post by:
Hi all I'm looking to learn C and/or C++ and I was wondering if there were any good on-line resources and books. I am currently a C# developer but I'm keen to discover C/C++ as I feel it...
8
by: scorpion53061 | last post by:
Hi, I am a vb.net guy......(I know boo hiss LOL) I was thinking of learning C# as well. Can I expect a hard road of it as far as a learning curve? As as side note, what made you choose...
2
by: Jeremy S. | last post by:
I know these questions can have no objective and definitive/correct answer - but I'm looking for some general insight, non specific as it may be. So, from those of you who have actually worked...
78
by: arnuld | last post by:
hai all, i am standing on a "crossroad to C++". I am here in front of you as i have a problem. i will be brief. Please do not think: "arnuld is sick", i am really struggling & doing hard-work to...
26
by: K.J.Williams | last post by:
Hello, A friend and I want to learn PHP but we have two totally different programming backgrounds. I have experience with procedural programming in C, and he has experience with Visual BASIC....
8
by: Chris Asaipillai | last post by:
Hi there I have some questions for those experienced Visual Basic 6 programmers out there who have made the transition from VB6 to Vb.net. How long did it take you to learn at least the basic...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.