Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #2K
~4K People Reached
About Me

Boring

Interests
Programming
Favorite Tags

16 Posted Topics

Member Avatar for Rameshwar Soni

Hello, I want to do horizontal fragmentation of a table say employee. But fragmentation is often related to distributed databases. So i want to ask how can i do this on my single home computer? Could anyone list out the steps that should be performed. I saw the concept of …

Member Avatar for Rameshwar Soni
0
355
Member Avatar for Jimakoss

html is not a programming language. I support Java but that doesn't mean other languages like c# are not capable which Java is capable of. Choosing a programming language also depends on an individual, his/her interest etc. Some people also have a view that learning multiple programming languages instead of …

Member Avatar for WolfShield
0
314
Member Avatar for hszforu

I don't know whether this is an good way of coding but i tried converting String to binary and i don't think Java uses ASCII it uses UNICODE CODE POINT. Anyways what you can do is first convert your String to byte array by using the [B]getBytes()[/B] method and then …

Member Avatar for hszforu
0
812
Member Avatar for hardsoft123

I think you are unnecessarily making your code tough [QUOTE]System.out.println("Enter the two integers to be used: "); [/QUOTE] Just get these two numbers.[CODE]double op1=scanner.nextDouble();[/CODE] Similarly the second operand and then after asking the operator from the user check the operator in if statement whether it is '+' or "*" etc …

Member Avatar for Rameshwar Soni
0
310
Member Avatar for stevanity

As per my information there is no prerequisite for becoming an OCPJP (Oracle Certified Professional Java Programmer). Yes for becoming an OCPWCD, OCPBCD you have to be a OCPJP. For more inforamtion you can visit the official site or just google it.

Member Avatar for peter_budo
0
132
Member Avatar for chiiqui

i am also a beginner in Java so this code is tough for me but then also i would like to advice you that why are you increasing your LOC(Line of Code) by doing[CODE]private int a = 0; private int b = 6; private double myAmount = 0; private double …

Member Avatar for JamesCherrill
0
188
Member Avatar for Duki

You mean to say you want to achieve console clearance through Java code? Or your aim is to just clear console screen not considering the java code?

Member Avatar for ~s.o.s~
0
428
Member Avatar for NexG

@NexG-- this is because you are putting a semi-colon at the end of for loop. What you have written is[CODE]for(int i=1; i <= n; i=i+2);[/CODE] It should have been [CODE]for(int i=1; i <= n; i=i+2)[/CODE]i.e without semi-colon.So this was the correction from SYNTAX-POINT-OF-VIEW but i think the summation answer will …

Member Avatar for Rameshwar Soni
0
215
Member Avatar for mrjillberth

[QUOTE]// i was able to determine whether it is a prime number or not.[/QUOTE] Your program to find a prime number is incorrect.

Member Avatar for mrjillberth
0
168
Member Avatar for Rivka Schwartz

I am not able to understand your problem perfectly.See as and when versions are upgraded new facilities are added. I think you are saying first the method foo() was taking 1 argument and now 2 arguments but from Java 5 i.e. Tiger if you are not sure that a method …

Member Avatar for Rivka Schwartz
-1
172
Member Avatar for manish250
Member Avatar for mith_cool

[CODE]RequestDispatcher rd= request.getRequestDispatcher("/Addtocart");[/CODE] I think it should have been [CODE]RequestDispatcher rd= request.getRequestDispatcher("Addtocart");[/CODE]

Member Avatar for Rameshwar Soni
0
121
Member Avatar for miltondollar

@miltondollar- what are you trying to achieve? According to your program you are trying to print "*" in a particular fashion and you are importing the swing package?????

Member Avatar for Rameshwar Soni
-1
105
Member Avatar for Onlineshade

You want to enter numbers in an array then why are you declaring an String array. Go for an integer array. You can do it this way [CODE] int[] num; // declaring an integer array Scanner s=new Scanner(System.in); System.out.println("How many numbers ?"); int how_many=s.nextInt(); num=new int[how_many]; // creating the array …

Member Avatar for Ezzaral
0
115
Member Avatar for slasherpunk

I think when we are taking an numeric value like an int, double from user as an input it is always better to go for the Scanner class instead of BufferedReader class because if we are using the latter one then we have to again parse it.

Member Avatar for Rameshwar Soni
0
210
Member Avatar for coco24

@coco24----what are you trying to achieve through your code...? As you said " I need to take the value from the arguments in the run configuration" So you are passing the value of counter variable i to method f() instead of taking the value from user at run time.

Member Avatar for Rameshwar Soni
0
148

The End.