nitin sharma

Ranch Hand
+ Follow
since Feb 24, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by nitin sharma

hello,
could anyone of u tell me which version of internet explorer is required to learn XML?.I have IE 5.0, can i practice xml using internet explorer 5.0 if not then please let me know the exact version of IE.
Please tell me the version i am having an internet explorer 5.0.
Please tell me which version of internet explorer is required to learn XML.
import java.io.*;
class FileWriterDemo
{
public static void main(String ar[]) throws Exception
{
FileWriter fw;
String s ="abcdefghi";
int a = s.length();
char c[]= new char[a];
s.getChars(0,a,c,0);
fw = new FileWriter("in.txt");
for(int i=0;i<a;i++)>
{
fw.write(c[i]);
}
}
}
The above given code is working fine.I have compiled it and no runtime exception was thrown.
Mapruta,
Please tell me what all software i have to install on my pc to learn xml.
hello everybody,
I am new to XML forum.I would like to know a name of a good book which a person with a little bit background in IT can understand with ease.As i am starting to prepare for XML cert, please tell me the good book availabe with easier explaination in it.
Hello everybody,
I need yours advice.I just want's to know how much is the exam fee and what all software is needed to learn XML.Do we need to have any previous background in related technology to clear this exam.Like if a person knows c++ he can easily learn and clear scjp.
Hello everybody,
I need yours advice.I just want's to know how much is the exam fee and what all software is needed to learn XML.Do we need to have any previous background in related technology to clear this exam.Like if a person knows c++ he can easily learn and clear scjp.
Hello everybody,
I need yours advice.I just want's to know how much is the exam fee and what all software is needed to learn XML.Do we need to have any previous background in related technology to clear this exam.Like if a person knows c++ he can easily learn and clear scjp.
hi mikael,
It's depends on the type of scheduler whether the thread will run to it's end before continuing with other thread.If the scheduler is time slice then u certainly cannot be sure of the completion of thread in one slice of time.
What will happen if two threads are of same priority in the ready state.?
Acoording to a book introduction to software the scheduler will adopt a first come first served approach(FiFo).The thread which it runs first will run till it ends completly.But the java on a preemptive system does not do that it run's both the threads simultaneously.
Any comment's on that are welcome.
HI ZHEESHAN,
constructor does not have an explicit return type not even void.The implicit retun type of a class's constructor is the class type itself.
hi zeeshan,
Only transient varibles are there,transient method's sortt of a thing is not there in java.Best thing is to just write a method with a transient keyword and see what happens.
Somebody please come up with something.
22 years ago