Suhita Reddy

Ranch Hand
+ Follow
since Jun 09, 2006
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 Suhita Reddy

Hi Jeanne,


I am searching for jobs in testing.I need manual testing material and basics of testing.
16 years ago
Hi All,


I am new to testing.Where can i find the testing information,material online?

Thanks
Suhita
16 years ago
Hi,

I started my preparation 3 days ago.I am studying K&B second chapter now.Do you have yahoo mail id?
Hi,

I am also preapring for scjp1.5.I want to join with you.

Thanks
Suhita
SORRY FOR ASKING THAT.I WILL BUY IN THE NET.
Hi,

I am writing scjp1.5.where can i find the Katherine Sierra, Bert Bates book?

[moderator edit] removed request for illegal, pirated material [/moderator edit]
[ February 01, 2007: Message edited by: Bert Bates ]
Hi all,

I perared scjp1.4 2 months ago.Now i want to write scjp1.4 exam.My question
is it better to write scjp1.4 now or else i have to take scjp1.5.i am in confusion.can any one give me suggestion which one i have to take scjp1.4 or scjp1.5.i didn't work on java.i am searching for jobs now.this is right time t o take scjp1.4 or 1.5
Hai,

I m learning J2EE now.I want to learn EJB.Can any one suggest the good material for ejb?
Hi,

How to create hyperlink in struts using struts html tags?
17 years ago
Hi,

i want learn jdbc.can any one tell me the good jdbc site?
Hi,

can anybody preparing for 1.4 exam?
Hi,

There are 3 shift operators.>>,>>>,<<.

>> : x>>y means x/2powery.
<< : x<<y means x*2powery.
>>> : x>>>y means?
Hi,


public class TestGC
{
public static void main(String [] args)
{
Object o1 = new Integer(3); // Line 1
Object o2 = new String("Tutorial"); // Line 2
o1 = o2; // Line 3
o2 = null; // Line 4
// Rest of the code here
}
}

In this program after assiging o2 value to o1 we arr nulling o2.That means it is eligible for garbage colection.in the line 4 it is eligible to gc.but answer is not garbage collected.how it is?
Hi,

Without writing scjp can we write webcomponent exam
Hi,

I m learning Jsp now..First i created a login page with userid nd password with name test.jsp

html>
<body>
<form action="Test1.jsp" method="post">
User ID :
<input type="text" name="name"><br><br>
Password :
<input type="password" name="password"><br><br>
<input type="submit" name="submit">
</form>
</body>
</html>

and i created another program with test1.jsp


<html>
<body>
<form action="Test2.jsp" method="post">

<%

String sname=request.getParameter("name");
String spassword=request.getParameter("password");
%>

UserName : <%= sname %><br><br>
Password : <%= spassword %><br><br>


Enter Your Name :
<input type="text" name="rname"><br><br>
Enter Your Age :
<input type="text" name="age"><br><br>
Enter Your Sex :
<input type="radio" name="sex" value="male">Male
<input type="radio" name="sex" value="Female">Female
<br><br>
<input type="submit"name="add">
</form>
</body>
</html>


and i created another pgm with Test2.jsp

<html>
<frameset rows="25%,75%">

<frame src="Test.jsp">
<frame src="Test1.jsp">
</frameset>
</html>


My aim is when enter username and password in first pgm it will directly go to second page and the tesi.jsp asks some more information and it will directly goes to test2.jsp.In test2 .jsp the userid and passwd are displayed in form and remaing details are displayed in another frame.I m trying using this code.But i didn't get o/p.Can anyone solve my pblm?

Thanks
Suhita
17 years ago
JSP