| Subject | Date Asked | Expert |
|
| Inheritance | 7/1/2009 | Marty Landman |
Q: What is inheritance in detail with one fair example. A: Pavan, Inheritance is a way to provide reusability automatically and in a common sense way. For ...
|
| C++ Programming | 6/3/2009 | Marty Landman |
Q: How can I create multiple C++ files (.cpp) in one project using Microsoft Visual C++? Is there an ... A: Angela, You open your project and then go to files > new and select the files tab. There is no ...
|
| C++ Literals | 6/1/2009 | Marty Landman |
Q: I'm confused about literals. From its definition, it seems like every value in C++ are literals, so ... A: Angela, A literal is data where a keyword is an instruction. Escape sequences would be literals, ...
|
| processor run through machine code? | 2/26/2009 | Marty Landman |
Q: sir iam a computer science student.i got in my subject(principles of programing language)that ... A: Venkatesh, AFAIK this is done very much as in Windows. The C or C++ source code gets compiled into ...
|
| Confused Beginner | 1/9/2009 | Marty Landman |
Q: I'm a beginner and want to start on learning designing webpages. I'm currently learning Think in ... A: Angela, If your goal is to write webpages suggest starting out learning HTML. There are many online ...
|
| ASP Update | 7/11/2008 | Marty Landman |
Q: I can't get the update statement to work, can u please help thanks. <% sSQL = "SELECT * FROM Detail ... A: Phares, Please print out sSQL before the execute, and also the results of the execute statement, ...
|
| phpMyAdmin | 5/25/2008 | Frank Natividad |
Q: Do you know anything about this open source software? I am trying to download it to my computer so ... A: To Run this software you need the following. A server with php enabled A Mysql Server And to ...
|
| please help me | 5/10/2008 | Frank Natividad |
Q: please tell me the code for finding the square root of a number in c++ thanks. A: Here is the code for finding out the square root. #include <iostream> #include <math.h> int main () ...
|
| c++ | 4/25/2008 | Marty Landman |
Q: I am trying to make a program that lets a user input 3 sentences. Then the program displays those ... A: Ken, Look over the material at http://littlelink.webtrouble.com/?6CI5 and write back if you have ...
|
| fibonacci's sequence | 4/18/2008 | Marty Landman |
Q: Good morning I v been trying to find the nth term of the fibonacci sequence. i have tried many ... A: Berthe, I fixed some of your errors and came up with this // fibonacci.cpp : Defines the entry ...
|
| Screen saver customer text | 4/17/2008 | Marty Landman |
Q: Marty. Why can I only put no more than 20 words on my computer screen saver to see? Is it possible ... A: Sterling, I hit the same limitation of 20 characters on my XP computer. Don't know any way to ...
|
| difference between structured approuch and objected oriented approuch | 4/10/2008 | Marty Landman |
Q: what is the difference between structured approach and objected oriented approach A: Siseko, Please have a look at the Wikipedia article on ...
|
| word processor programming | 2/16/2008 | Frank Natividad |
Q: how are you? What are some functions of a word processor in C/C++ programming?in other word how can ... A: I stated that I didn't do the "save as" function which saves file into itself but ill help you with ...
|
| C++ Pi | 2/8/2008 | Marty Landman |
Q: I would like to see an example of a program that computes the value of Pi to the number of digits ... A: Chris, There's some code at http://littlelink.webtrouble.com/?4eAh. Let me know if that helps. -- ...
|
| Pi? | 2/8/2008 | Frank Natividad |
Q: I would like to see an example of a program that computes the value of Pi to the amount of digits ... A: Heres a c++ program you could use to calculate PI. #include<stdio.h> // ** add prototype void ...
|
| Programming Examples | 2/5/2008 | Frank Natividad |
Q: , Can you give me a website with an examples of different programming languages? program that is ... A: As for a simple program will do equations like adding. C++ #include <iostream> using namespace std; ...
|
| word processor programming | 2/5/2008 | Marty Landman |
Q: how are you? What are some functions of a word processor in C/C++ programming?in other word how can ... A: Sarah, See if the links on this page are of help http://littlelink.webtrouble.com/?QqT4 -- Marty ...
|
| word processor programming | 2/5/2008 | Frank Natividad |
Q: how are you? What are some functions of a word processor in C/C++ programming?in other word how can ... A: I couldn't really find any source so I made a simple text editor it opens and saves onto the opened ...
|
| c++ | 2/3/2008 | Frank Natividad |
Q: program to generate sinusoidal wave using c++ concepts A: I don't know much about sinusoidal waves so I looked it up and came up with this. #include ...
|
| C++ and Visual Basic | 2/2/2008 | Frank Natividad |
Q: , Can you give me a very simple program for C++ with the same program as Visual Basic? I want to ... A: Well c++ and VB are very different the simple version of vb in c++ is writing a long page of code to ...
|
| has-a relationship | 2/2/2008 | Frank Natividad |
Q: I have read about has-a relationship that an object has a "has-a" relationship with its fields or ... A: The only thing that comes to mind when reading this is theirs a lot of conflicting method names ...
|
| C++ language | 1/25/2008 | Marty Landman |
Q: plz send me the example of c++ in which we can add the data in files and then read it and can also ... A: Kifayat, Here are links to a couple of good explanations. Please try them out and write back with ...
|
| creating links for database results | 12/22/2007 | Frank Natividad |
Q: i have a some data in a mysql database, and i'm building a php based site. i would like to retreive ... A: Sorry for the late response, Christmas worries were at me. Alright so let me explain how this works ...
|
| Socket programming In C or C++ | 11/12/2007 | Frank Natividad |
Q: Sir, I ve been asked to do socket programmming in C or C++ i dont know anything about it. please ... A: Socket programming is pretty simple but its also quite complex it creates servers or clients that ...
|
| Help with OOP bank account in VB.Net | 10/29/2007 | Frank Natividad |
Q: sorry if my last question wasn't clear...let me try again... I am working on an OOP bank account ... A: I looked something up for you: http://www.devcity.net/Articles/25/1/20020316.aspx Basically You ...
|
| C++ | 10/20/2007 | Frank Natividad |
Q: Pls give an example for programs that use recursion? What is the main disadvantage of recursion ... A: Ok Simple Recursion. Before I write it the only main disadvantage to this is if not done correctly ...
|
| type conversion | 10/18/2007 | Frank Natividad |
Q: #include<iostream> #include<conio.h> #include<string> #include<stdlib.h> using namespace std; ... A: #include<iostream> #include<conio.h> #include<string> #include<stdlib.h> using namespace std; ...
|
| asking for a c program | 10/16/2007 | Frank Natividad |
Q: I AM VERY MUCH INTRESTED IN WRITING C PRORAMS.PLS SEND ME THE PROGRAM TO PRINT THE NUMBERS IN ... A: Try this code out: #include<stdio.h> void main() { int ary[i][j],n; printf("\nEnter the number of ...
|
| taking input | 8/2/2007 | Marty Landman |
Q: plz tell me how can i take input from a user in the form of "a/b". and seperating two entities in ... A: Depends on the language you're using. For example Perl and PHP both have split functions which will ...
|
| php | 7/30/2007 | Marty Landman |
Q: what is the difference between php4 and php5 A: They are different releases of the same software product. There are some details available on the ...
|
| appending excel files in perl | 7/27/2007 | Marty Landman |
Q: Marty I have opened the directory using the code I have written below but I am not able to append ... A: Perl has a package designed to read and write Excel files - ...
|
| perl | 7/23/2007 | Marty Landman |
Q: I have a directory in which I have 10 to 15 excel files . have to read each file and then append the ... A: This code should do what you need: opendir DIR,$path_to_directory or die "open directory ...
|
| OOP | 7/15/2007 | Marty Landman |
Q: Sir, where can i get best website about oop using C++? because its our subject.. i need some example ... A: There are so many good resources on the web. Start with these: ...
|
| what are differences between oop and c | 7/7/2007 | Marty Landman |
Q: I'm a C programmer and DBA, and I'm trying to understand concept of oop, but I have difficulty. ... A: Inheritance has to do with class properties. Here's an example I read once that made sense to me. ...
|
| php | 6/5/2007 | Marty Landman |
Q: ..can u help me to find what are the best site or tutorial site for php?and can u tell me something ... A: There are lots of tutorial sites for PHP. PHP is a hypertext processing language intended mostly for ...
|
| C++ | 3/19/2007 | Marty Landman |
Q: Sir, We have been assigned to do a mini project on C++. I am confused about what topic to choose. ... A: I suggest using Google to start looking up sample C++ code and after looking these over decide what ...
|
| New Learner - Programming | 3/14/2007 | Marty Landman |
Q: I have always wanted to know more about computer science. I know more than your average person ... A: Yes. You're thinking about it intelligently in my opinion. Any scripting language is a good way to ...
|
| Generating Sinusoidal waves through C Programming | 3/13/2007 | Marty Landman |
Q: I want to generate sinusoidal waves in c programming.Can you please provide me the snippet of the ... A: Sorry this is a little out of my area. Suggest first decide on how you are going to represent the ...
|
| php script | 2/20/2007 | Marty Landman |
Q: I'm currently trying to run a very basic script, however the coding seems very untidy. Can you ... A: Ruby, I can't see the screenshot - could you explain what the problem is with the program? -- ...
|
| *embarrrased* hello world problems | 2/18/2007 | Marty Landman |
Q: Hey, I can't believe I'm asking this, but oh well. When I wrote my "Hello World" C++ program, ... A: Carson, My answer may seem silly too but before I can answer your question would like to know - ...
|