|
More site info...
Software Development | Forum profile
|
|
Forum profile page for Software Development on http://www.techarena.in.
This report page is the aggregated overview from a single forum: Software Development, located on the Message Board at http://www.techarena.in.
This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional forum profile information for "Software Development" on the Message Board at http://www.techarena.in is also shown in the following ways:
1) Latest Active Threads
2) Hot Threads for Last Week
Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.
|
|
|
|
|
Posting activity on Software Development:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
269
|
608
|
1,054
|
|
Post:
|
1,011
|
2,316
|
3,848
|
|
|
Software Development Posting activity graph:
|
Top authors during last week:
user's latest post:
What is Heap and Stack?
Published (2009-11-27 01:10:00)
Hi, I don't have more knowledge about the heap and stack. I Just know that Stack is used for storage of the value types and heap is used for storage of the reference type. And also stack provide you temporary memory allocation space and heap provides you memory allocation until you want the memory to be used.
user's latest post:
What is Heap and Stack?
Published (2009-11-27 01:10:00)
Hi, the stack is the section of memory that is allocated for automatic variables within Methods. When data is stored in stack memory it is stored with the form of Last In First Out (LIFO) method. That means that whenever the deallocation of the memory will be done it can be done from one end only, that is from the top of the stack. Basically it is temporary storage memory where you will able to remove the data which is added at first. Heap is...
user's latest post:
What is Heap and Stack?
Published (2009-11-27 01:10:00)
Hi, you want to know what is heap and stack, right? There are basically three segments of memory and they are used when any program is loaded into the memory. They are as follows: text segment: Here compiled code of the program resides stack segment: This memory segment is allocated for automatic variables. It uses Last In First Out pattern. That means, it is a storage device where new storage is allocated and deallocated at only one end....
user's latest post:
What is Heap and Stack?
Published (2009-11-27 01:10:00)
Hi friends, Stacks is memory regions where data is added or removed in a last-in-first-out manner. In many computer programs region of memory referred to as its stack. It may add some data to the top of the stack at the time of execution of the program. And when the function terminates whole execution all data from the stack regarding that program will be removed by either the program itself or by the garbage collector. Heap is the memory...
user's latest post:
What does nested loops means?
Published (2009-11-27 01:09:00)
Hi Friend, Below is the syntax for the Nested loops : Nested loops syntax :- Quote: for (initialization ; condition to test; decrement/increment ) { //body of loop for (initialization ; condition to test; decrement/increment) { loop body; } } hopefully It will helps you...
user's latest post:
What does nested loops means?
Published (2009-11-27 01:09:00)
Hi All, *. Nested loops comprises statement of another looping within single loop. Usually nested loops are useful while creating the "matrix". *. I hope you aware that loop can include any number of statement of the loops in it. If you use any "Loop" inside other "Loop" is known as loop nesting . *. Mostly loop of the inner side is used to for row counting, While outer is for column...
user's latest post:
Late Binding in C#
Published (2009-11-27 01:11:00)
Hi, Basically when compiler connects the method call to the method body is called as binding. So when this binding is done at the time of compiling it is termed as early binding. And if at the time of compilation compiler don't get the method body to which the method call has to be binded, it is called as late binding. As then that method is binded at run time. Late binding is also called dynamic binding or run-time binding. This...
user's latest post:
What is Heap and Stack?
Published (2009-11-27 01:10:00)
Hi, I don't think that you will get in details about the stack and heap from me, but basically Stack is memory to store objects in Ram memory and Heap is kernal alloted memory to store objects while making any type of script or any type of program. From this you will get the actual logic, what exactly the stack and heap is. But, I don't know why these two types of memory allocation was used to create any program.
user's latest post:
What is shtml
Published (2009-11-26 01:05:00)
SHTML is really not a "thing" so much as an extention used by Web servers to define a document that has Server Side Includes (SSI).Server Side Includes (SSI) is a simple interpreted server-side scripting language.The most frequent use of SSI is to include the contents of one or more files into a web page on a web server. SSI allows you to add real-time interactivity to your Web pages without programs or CGI. The drawback is...
user's latest post:
What is shtml
Published (2009-11-26 01:05:00)
shtml is 'server parsed' for server side includes. SHTML is a file extension that lets the web server know the file should be processed as using Server Side Includes (SSI).Most commly you see it used in custom error pages where it displays things like referring page, IP address etc.
|
|
|
|
Latest active threads on Software Development::
Started 1 day, 1 hour ago (2009-11-28 17:35:00)
by Praetor
Using the keyword 'new' a programmer can hide an inherited method . This is termed as Shadowing concept of Object Oriented Programming . And C Sharp also includes this shadowing concept. Let us assume that two elements of a program have the same name. in such a situation we can use one program element to hide another. This forms the Shadowing concept in C Sharp .
Started 5 months ago (2009-07-02 00:00:00)
by Steinbach
You can simply use this code: Quote:
<EMBED SRC="movie.mpg" AUTOPLAY=true WIDTH=160 HEIGHT=120>
</EMBED>
I have tested it and am happy with the same.
Started 1 day, 9 hours ago (2009-11-28 09:37:00)
by Zecho
Linked list is a type of datastructure that collect either different type of data or same type of data. These data are basically stored in node. Usually node have non primitive data that are stored in to two parts. One part have data and other part have address of next node.
Started 1 day, 7 hours ago (2009-11-28 11:37:00)
by Reegan
Don't just copy paste, tried to understand each step. Code: import java.io.*;
class FactorialNumber
{
public static void main(String[] args) {
try{
BufferedReader obj1 = new BufferedReader(new InputStreamReader(System.in));
System.out.println("Enter the number");
int A= Integer.parseInt(object.readLine());
int F= 1;
System.out.println("...
Started 1 day, 8 hours ago (2009-11-28 10:39:00)
by Bharat89
Hello folks,
Posting a new query about the LINQ. I am using SQL EXPRESS for my database and i have created a datatable in it. But the problem is that i am unable to run the LINQ code onto it. The datatable code is generated automatically. Whenever i am running the command it prompt me error about the definition of SingleOrDefault and no extension for the same. Now you help me ...
Started 1 day, 7 hours ago (2009-11-28 11:38:00)
by Katty
Hey I am not writing any program for you rather I give you logic behind it. You have to use following formula to calculate area of circle.
The formula is as follows:
Area of circle=Pi *r*r
where r=radius of circle,pi=3.14
You have to take radius from the user and save it in "r".
Started 1 day, 8 hours ago (2009-11-28 10:40:00)
by opaper
Hi there,
I am having the same issue which i sorted out with some of the method which i am discussing with you i hope you will like the idea. For validating the text boxes you need RequiredFieldValidator or instead of that CustomVadlidator. The CustomVadlidator are useful when one of the text box is not empty to validate the textbox
Say thanks if you like the idea
Started 1 day, 9 hours ago (2009-11-28 09:40:00)
by Sheena_thakkar
Hi,
My problem is with the pdf file. I need to convert my PDF file to the SWF file format but i am not getting any help to do the same. Is there any thing by using that i can do so or any software is available online to convert the same. Please help me to fine the solution. I have already searched for the same but could not find any help regarding this. So finally i am passing ...
Started 1 day, 9 hours ago (2009-11-28 08:42:00)
by Katty
For decoding UNICODE Microsoft has specified some of the coed which are as given below justgo through it i hope it will help you out. So one of these and enjoy with decoding in Devanagari.
For Visual Basic user Code: Dim instance As UnicodeEncoding
Dim returnValue As Decoder
returnValue = instance.GetDecoder()
For Visual C++ Code: public:
virtual Decoder^ GetDecoder() ...
|
|
Hot threads for last week on Software Development::
Started 5 days, 11 hours ago (2009-11-24 06:45:00)
by KALANI84
Thank you for your explanations, what I want is basic, I will explain:
I want to create an object type Price
public class Price {
String departure;
String arrival;
double price;
}
the class server and create an array of type Price
Price [] tablePrice;
but after I blocked I can not see how the rest.
I must also create another class of Tickets that must be ...
Started 2 days, 17 hours ago (2009-11-27 01:13:00)
by Praetor
HI, which version of .net are you using to develop your code? If you are using version which is below .NET 2.0, then you will get error while assigning null value to value type in c#. After .Net 2.0 is is possible to assign null value to value type. You need to use following code to do this Code: System.Nullable<int> Num = new System.Nullable<int>;
Try this, This would work. I had ...
Started 2 days, 17 hours ago (2009-11-27 01:12:00)
by Modifier
Hi, You want to know about Sealed Classes. It is very simple. A class which wont allow you to inherit the base class for security reason is know as sealed class. That's it. So, now you can say that, sealed class is the last class in hierarchy. It is possible that the class which is declared as sealed is a derived from the base class, but it is never a base class. Now, if you want to access the...
Started 2 days, 17 hours ago (2009-11-27 01:11:00)
by Zecho
Hi, you can make use of the Late Binding in C# with the help of Virtual function. When compiler finds virtual keyword in an function defination, while compiling, instead of binding to the function directly, it wait for the runtime to execute further. You will get it by taking look at following: Code: class base
{
protected virtual void PrintMessage()
{
Console.WriteLine("You are...
Started 5 days, 23 hours ago (2009-11-23 19:11:00)
by Zecho
Most POS or EPOS systems can be connected to your network. Most systems for all manufacturers are designed to support a single connection standard. Most POS or EPOS systems are now PC's. A complete EPOS system consist of both hardware and software the cash register and credit card processing system, and the electronic software that controls it.
Started 1 day, 9 hours ago (2009-11-28 09:37:00)
by Zecho
Linked list is a type of datastructure that collect either different type of data or same type of data. These data are basically stored in node. Usually node have non primitive data that are stored in to two parts. One part have data and other part have address of next node.
Started 1 day, 10 hours ago (2009-11-28 07:43:00)
by Luis-Fernando
Hi,
I am working on java project in my company. While working on project yesterday our team leader asked me How do you synchronize java? I am not able to explain exactly how it works that's why I decided to taking your help. If you have any idea about this please help me.
Thank you.
Started 1 day, 9 hours ago (2009-11-28 08:41:00)
by Katty
When an parent class is assigned to its child class, the parent class takes up only the parent member data leaving the data members of child class.This process is called as object slicing.
Started 1 day, 17 hours ago (2009-11-28 00:58:00)
by Reegan
Code: public class pyramid
{
public static void main(String args[])
{
int c=1;
for(int x=1;x<5;++)
{
for(int y=x;y<5;++)
{
System.out.print(" ");
}
for(int t=1;t<=c;t++)
{
if(t%2==0)
System.out.print(" ");
else
System.out.print("*");
c+=2
}
}}
Started 1 day, 7 hours ago (2009-11-28 11:37:00)
by Reegan
Don't just copy paste, tried to understand each step. Code: import java.io.*;
class FactorialNumber
{
public static void main(String[] args) {
try{
BufferedReader obj1 = new BufferedReader(new InputStreamReader(System.in));
System.out.println("Enter the number");
int A= Integer.parseInt(object. readLine());
int F= 1;
System.out.println("...
|
|