71 Posted Topics
I have starting my third year of the bachelors degree in IT next month and am doing my first ASP.NET paper. So far I have done: - C# - Java - PHP - VB - JavaScript - HTML I know that with ASP.NET you create web applications. My questions are: … | |
Re: I think it is a hoax. 1. Why would they display realtime cyber attacks? 2. How can they catch cyber attackts in 'real time'? They first need to figure out if a ddos is a legit high number of users or really a ddos attack before they can call it … | |
1. What is the difference betwen high level languages and low level languages? 2. What does a high level language do that a low level language cant? 3. Is c# an extnsion to c++? | |
If a object can have multiple references which can have their own state, does this mean that references are also objects themselves? I only ask this because because references have their own individual definitions of the objects fields that are not shared between other references. | |
Re: Its better if you: 1. Make your questions abit more declarative i.e help with what exactly? 2. If you cant do something yourself after reading books or doing tutorials etc... then ask here 3. People here are happy to help you but you need to put the work in your … | |
Here is a piece of C++ code that seems very peculiar. For some strange reason, sorting the data miraculously makes the code almost six times faster: #include <algorithm> #include <ctime> #include <iostream> int main() { // Generate data const unsigned arraySize = 32768; int data[arraySize]; for (unsigned c = 0; … | |
I have a home project that I am working on that manipulates the network cards state ie on or off. I have already completed this usinng WFA, it runs with batch scripts that takes the adapters name and sets its state. However doing it through batch scripts, If I wanted … | |
Everyone says the same thing: "a real programmer knows how to handle real problems." But they forget how they learned this ability or where: it's not taught in schools. 1. What can I do to improve my ability to tackle complex programming problems? 2. What strategies have worked for you? … | |
1. What is the difference between a static class and a static member variable or method? 2. If a method is static but a class is not, do you need to make an instance of the class to access its static method? | |
I have converted the value of my text box to an int by using the Convert.ToInt32 method. I tried doing this a second time by using the explicit cast (int) but it returns the connot convert type 'string' to 'int'. I was wonderding if it does the same thing as … | |
I tend to get abit confused with the assignment operators such as: += & -=. If i have this code int i = 3; i += 3; Does that say i + i = 3 which will make i have a new value of 6? This is another example that … | |
Re: Im not too sure I get what you mean as you have left it abit bland, Iv got things to do so ill try answer as best as I can: 1. Are you using JavaScript or another scripting language? 2. Do you want to multiply the value 9 by the … | |
As a beginner at programming, I have been programming with OO languages for 3 years and I can not really imaging programming in a non OO environment so I have a few questions: 1. Is there any advantage using procedural than oo? 2. What kind of programmes do you write … | |
I am taking a Middleware paper next semester, I know that middleware is a bridge in between a database or operating system and an application. That is all I know so I have a few questions if somebody dosent mind answering: 1. What is the purpose of middleware? 2. Do … | |
1. What is the common language to write for a handheld gps? 2. How are they written to communicate with satellites? Generally speaking, in IT most devices are programmed to communicate with ground devices (on earth) but what methods are used to be able to communicate with satellites? | |
1. At what age and how long have you been programming for? 2. Whats your favorite languages and why? 3. Did you find it hard to get started? I am on my third year in the bachelors degree of IT and am enjoying programming but i feel that I take … | |
Re: Just a heads up, your question is abit bland, spice it up abit with some more detail! :) | |
I have been doing some exercises out of the Head First C# book and have just done this exercise where you write a complete sentence using a while loop. The book dosent explain how the while loop puts together the string. I am looking if someone could please explain the … | |
Re: 1. Assign a variable and set it to your elements id attribute: video1 = document.getElementById('myVideo') 2. give 'video1' a boolean value: true: will replay the video when the loop has stopped, false: will not replay the video when the loop has stopped video1.loop = true; video1.loop = false; So your … | |
Hey, My name is Keil, I am 24 years of age and from New Zealand. I have just finished my second year of the bachelor of IT and am looking foward to starting third year next month. I am also abit nervous about finishing because I still am not too … | |
Re: You are not closing off your google.maps.Marker code block for the first marker: var placeMarker = new google.maps.Marker ({ position: myLatLng, map: map, icon: image }); |
The End.