Helo guys…pls tell me…which version of core java…is kishan sir teaching?

|
pritikesh Sahoo 2022-09-15 21:49:35
I thik in youtube its available
Mohnish Singh 2022-09-16 05:57:33
justin 2022-09-15 20:12:39
Helo guys…pls tell me…which version of core java…is kishan sir teaching?

Java 8

ShatathA 2022-09-16 06:42:01
scrum hyd : ttps://chat.whatsapp.com/G0lr4KzPPT908QAS6HiMRy
Games 2022-09-16 06:54:05
Anyone have MATERIAL UI AND BOOTSTRAP LECTURES
SankarKarra 2022-09-16 06:59:35
package com.util;
public class BinaryConversionUtil {
private static final int NUM=10;
public static void main(String[] args) {
//Conversing number into binary
String binaryValue=Integer.toBinaryString(NUM);
//replace o to x
String result=binaryValue.replace(“0″,”x”);
System.out.println(result);
}
}

//choose one option

A 1010

B 10

C 100x

D 1x1x

Ankita Patil 2022-09-16 07:33:00
Please any explain me when to use abstract class and interface?
SankarKarra 2022-09-16 07:36:36
Ankita Patil 2022-09-16 07:33:00
Please any explain me when to use abstract class and interface?

interface: I don’t now about anything to implement…. Then go.

abstract: I know some part of implementation then go..

Ankita Patil 2022-09-16 07:37:18
But in interface some default and static method also allow
Jitendra bansal 2022-09-16 07:37:34
Ankita Patil 2022-09-16 07:37:18
But in interface some default and static method also allow

Yes

Ankita Patil 2022-09-16 07:38:06
So it’s same as abstract class na..
SankarKarra 2022-09-16 07:38:30
Ankita Patil 2022-09-16 07:37:18
But in interface some default and static method also allow

Above answer is good for interview….Those are java 8 features
new enhancements

Ankita Patil 2022-09-16 07:39:46
So that why I confused whrnto use because both have some implementations
Jitendra bansal 2022-09-16 07:39:58
Ankita Patil 2022-09-16 07:39:46
So that why I confused whrnto use because both have some implementations

No

Ankita Patil 2022-09-16 07:41:27
Please explain me
SankarKarra 2022-09-16 07:42:54
Ankita Patil 2022-09-16 07:37:18
But in interface some default and static method also allow

Some times not possible to add another abstract method in the interface because of that interface lot of implemented classes are there, which will affect implemented classes, without affecting existing we can add static or default methods.

Ankita Patil 2022-09-16 07:45:10
Means after application in prod at that time we use java 8 enhanced features
Ankita Patil 2022-09-16 07:45:40
Without affecting other services correct?
Ankita Patil 2022-09-16 07:46:10
Means classes that implements interface
SankarKarra 2022-09-16 07:46:22
Ankita Patil 2022-09-16 07:45:10
Means after application in prod at that time we use java 8 enhanced features

If you want to add new functionality to the existing interface then use static or default methods…

Venu Gopal 2022-09-16 07:46:31
Ankita Patil 2022-09-16 07:33:00
Please any explain me when to use abstract class and interface?

in java there is no multiple inheritence we can achieve multiple inheritence through interfaces

Venu Gopal 2022-09-16 07:48:09
and abstract works the same i dono why they even created them in the first place?
Venu Gopal 2022-09-16 07:49:36
so if we want to have a class which containd multiple methods which can be accessed within the program we use interface class
Lakku Venki 2022-09-16 07:57:28
Please use interface and abstract class approach, will solve the problem
Lakku Venki 2022-09-16 07:59:21
Create interface with all abstract methoda
Lakku Venki 2022-09-16 07:59:59
Implement interface with abstract class
Lakku Venki 2022-09-16 08:00:52
Then provide default implementation for all the methods available in interface into abstract class
Lakku Venki 2022-09-16 08:01:28
Then extend abstract class into your concrete classes
Lakku Venki 2022-09-16 08:03:19
Then when you add any new methods also system cannot break without implement methods in concrete class
Lakku Venki 2022-09-16 08:03:50
try this approach
Vishal Singh 2022-09-16 08:08:13
Hi team
Vishal Singh 2022-09-16 08:08:58
Hi team
Vishal Singh 2022-09-16 08:10:07
From 9 am batch, I think I was late in class today, when did the class over?
Vishal Singh 2022-09-16 08:11:16
Anyone?
Ankit Singh 2022-09-16 10:29:52
Anyone have notes natraj sir batch code NTAJ915 servlet
Sushree 2022-09-16 10:51:07
Vishal Singh 2022-09-16 08:10:07
From 9 am batch, I think I was late in class today, when did the class over?

Today class is suspended due to some issue(rally) in hyd…

jeevanchinnualex 2022-09-16 11:10:10
Anyone knows when html new batch will start…??
Someshwar_dh 2022-09-16 11:11:30
Anyone having oracle 4pm batch Google classroom code plz share
maachittibabu 2022-09-16 11:30:55
New Online Batch from TODAY.

DevSecOps for Full Stack Java Students@ 2.00 PM
by Mr. Kiran

Demo Link: zoom.us/j/86345669935


040-23746666
Naresh I

Hansraj 2022-09-16 11:34:59
maachittibabu 2022-09-16 11:30:55
New Online Batch from TODAY.

DevSecOps for Full Stack Java Students@ 2.00 PM
by Mr. Kiran

Demo Link: zoom.us/j/86345669935


040-23746666
Naresh I

Next batch ?

Mhsfh 2022-09-16 11:49:42
Yes
Please change the time to morning 9AM
Samiksha 2022-09-16 11:58:53
Mhsfh 2022-09-16 11:49:42
Yes
Please change the time to morning 9AM

+1

SankarKarra 2022-09-16 12:12:07
package com.ex;
public class ChooseOptionEX {
public static void main(String[] args) {
System.out.println(10+20+”Cap”);
System.out.println(“Cap”+10+20);
}
}
//choose one option.

A 1020Cap
Cap1020

B 30Cap
Cap30

C 30Cap
Cap1020

D Cap1020
Cap30

Saiteja 2022-09-16 12:20:11
SankarKarra 2022-09-16 12:12:07
package com.ex;
public class ChooseOptionEX {
public static void main(String[] args) {
System.out.println(10+20+”Cap”);
System.out.println(“Cap”+10+20);
}
}
//choose one option.

A 1020Cap
Cap1020

B 30Cap
Cap30

C 30Cap
Cap1020

D Cap1020
Cap30

C

J7162 Md Kamran 2022-09-16 12:22:51
C
Tipu Sultan 2022-09-16 12:23:13
C
Ram 2022-09-16 12:59:53
Yes
Venu Gopal 2022-09-16 13:04:07
i really am confused about the course of full stack java developer in online naressh it if any one have a clear idea please help me understand the course
Venu Gopal 2022-09-16 13:04:40
dm me plz
Venu Gopal 2022-09-16 13:12:13
so do we get a full staff of that when we pay the 12k?
SankarKarra 2022-09-16 13:13:53
Venu Gopal 2022-09-16 13:04:07
i really am confused about the course of full stack java developer in online naressh it if any one have a clear idea please help me understand the course

Full stack means
back end
( java, spring, microservices, etc)
+
front end(ui)
(HTML,thyme leaf, angular, react js)

|