← prev | next →
shyam 2022-07-04 19:12:36
Backhere 2022-07-04 17:51:07
hi bhai thodi help chaiye apki .
Bolo bhai
Edersix 2022-07-04 19:29:01
How I can parse this 0000000} as double in java
Ambar Gupta 2022-07-04 19:33:13

Pls answer this question
Java Developer hyderabad 2022-07-04 19:34:06
Ambar Gupta 2022-07-04 19:33:13
Pls answer this question
A
krishnamoorthi1804 2022-07-04 19:43:25
Java Developer hyderabad 2022-07-04 19:34:06
A
Y pls explain little bit
pseudo_eu 2022-07-04 19:46:16
krishnamoorthi1804 2022-07-04 19:43:25
Y pls explain little bit
If unknow string is null in 2th case you get Null Pointer Except, in first no.
krishnamoorthi1804 2022-07-04 19:47:24
pseudo_eu 2022-07-04 19:46:16
If unknow string is null in 2th case you get Null Pointer Except, in first no.
Tq understood
Riya R 2022-07-04 20:36:49
static int partition(int[] arr, int start, int end)
{
int pivot=arr[start];
int i=start;
int j=end;
while(i<j)
{
while(i<=end && arr[i]<=pivot)
{
i ;
}
while(arr[j]>pivot)
{
j–;
}
if(i<j)
{
int temp=arr[i];
arr[i]=arr[j];
arr[j]=temp;
}
}
arr[start]=arr[j];
arr[j]=pivot;
return pivot;
}
static void quickSort(int[] arr, int start, int end)
{
if(start>=end)
{
return;
}
int pivot=partition(arr,start,end);
quickSort(arr,start,pivot-1);
quickSort(arr,pivot 1,end);
}
public static void main(String[] args)
{
int[] arr = {10,7,4,3,1,8,9,6};
int n= arr.length;
quickSort(arr,0,n-1);
System.out.println(Arrays.toString(arr));
}
Riya R 2022-07-04 20:37:27
Can someone please explain what’s going wrong in this….code…
It’s quick sort in java
Clipboard 2022-07-04 21:03:15
Hi all I am looking for good backend Java project for my resume, if any one recommend anything it would be great .
Thanks
Ven 2022-07-04 21:06:18
Clipboard 2022-07-04 21:03:15
Hi all I am looking for good backend Java project for my resume, if any one recommend anything it would be great .
Thanks
1
luseefr 2022-07-04 21:08:07
Clipboard 2022-07-04 21:03:15
Hi all I am looking for good backend Java project for my resume, if any one recommend anything it would be great .
Thanks
Just try book store app using spring boot and use react js for frontend
luseefr 2022-07-04 21:08:19
Its a e-commerce website
H S 2022-07-04 22:05:52
Hi All,
Can someone help me with pointers on how to start interview preparations for a software Architect ..haven’t attended an interview in ages so it’s giving me an edgy feeling
Ramakrishna 2022-07-05 03:56:23
Is there anyone from guntur or tenali. I need work support for java
Avi 2022-07-05 05:55:06
Hi All,
Anyone please suggest/provide
Spring professional certification practice questions for practice.
Kiran 2022-07-05 06:17:18
Riya R 2022-07-04 20:37:27
Can someone please explain what’s going wrong in this….code…
It’s quick sort in java
You can put logs and sysout
i aspirant 2022-07-05 07:21:22
hi folks, in Indian context, is it true tat Java jobs mostly available only at big mncs and big corporations?
this I can find when I search for java jobs indeed, naukri, linkedin, job listing are mostly from big corporations only.
Kiran 2022-07-05 07:22:05
i aspirant 2022-07-05 07:21:22
hi folks, in Indian context, is it true tat Java jobs mostly available only at big mncs and big corporations?
this I can find when I search for java jobs indeed, naukri, linkedin, job listing are mostly from big corporations only.
Nah
Yogesh 2022-07-05 07:30:00
H S 2022-07-04 22:05:52
Hi All,
Can someone help me with pointers on how to start interview preparations for a software Architect ..haven’t attended an interview in ages so it’s giving me an edgy feeling
Hi…Just update your resume in Naukri…once you have 3-4 interviews scheduled…You will automatically get to know what to prepare…Where you lack and what you need to focus on .
Ankit_8404 2022-07-05 09:23:51
Ankit_8404 2022-07-05 09:24:14
While creating a new component.. I’m getting this error.. how to solve it?
shiv 2022-07-05 10:25:18
Ankit_8404 2022-07-05 09:24:14
While creating a new component.. I’m getting this error.. how to solve it?
Open commands prompt and run the command from there
RadhaKrishna 2022-07-05 10:56:41

Help me please
Debiprasad Dash 2022-07-05 10:57:27
RadhaKrishna 2022-07-05 10:56:41
Help me please
Add jar to Class path
RadhaKrishna 2022-07-05 10:57:59
Debiprasad Dash 2022-07-05 10:57:27
Add jar to Class path
How to add the jar to class path
RadhaKrishna 2022-07-05 10:58:08
Which kar file
Debiprasad Dash 2022-07-05 10:58:27
RadhaKrishna 2022-07-05 10:58:08
Which kar file
Ojdbc6
RadhaKrishna 2022-07-05 10:58:44
I don’t have that jar file
Debiprasad Dash 2022-07-05 10:58:55
Do you have any desk
← prev | next →