Hii Koushik, could you ping here the background music name that you have used in this series videos?
@letcode Жыл бұрын
I don't remember now, I chose random music from sound cloud. In a few of the video descriptions I have added are the music link.
@ramyap5130 Жыл бұрын
@@letcode oh, ok thanks for this reply.
@tsiporche8 ай бұрын
Thanks 🙏
@letcode8 ай бұрын
You’re welcome 😊
@HemaLatha-cq7bi Жыл бұрын
Hi Koushik.. your explanation is awesome... I have a doubt... While i try to overload int and byte in same constructor as arguments say (int a,byte b)it always considers byte as int.. how to classify and specify in constructor ()
@letcode Жыл бұрын
actually byte has value from -127 to 128, so when u pass byte by default it is accepted as int. You have to cast it. Constructor((byte)2)
@HemaLatha-cq7bi Жыл бұрын
@@letcode thank you Kaushik.. 👍will try this one 👍🤝
@ashokravi59535 ай бұрын
bro oru doubt help me bro ithu la constructer ah parameter la kudukum pothu integer ok but string ku epdi parameter la kudukurathu? package seventhDayClass; public class Constructor { public Constructor (int x) { this.x= x; this.name=name; } int x; String name; void display() { System.out.println(x+ "-->" +name); } public static void main(String[] args) { Constructor ra = new Constructor(100); ra.display(); Constructor ra1 = new Constructor(200); ra1.display(); } }
@letcode5 ай бұрын
Same bro, constructor( int, string)
@ashokravi59534 ай бұрын
@@letcode thanks brother problem solved
@karthickchandran72472 жыл бұрын
@Letcode with Koushik... Bro, i have a doubt in the practice homework i have done for Constructor.. Please let me know where should i post it... Can i post the code here...
@letcode2 жыл бұрын
U can post in our discord bro. discord.gg/dUCKvYdt
@karthickchandran72472 жыл бұрын
@@letcode Thanks Bro, i Have posted in discord, under Selenium#.. Please have a look when you have time, and clarify.
@kumaraguru5353Ай бұрын
Bro as per homework 5 - I'm using all variables types except int & string. Nan main method la object constructor ku value kuduthu run panna pakura but I'm getting an error called "The constructor Homework5(int, float) is undefined. But nan byte & float ku output varanum nu declare panni iruka..
@letcodeАй бұрын
For a byte you have to do casting, check the other comments bro, you'll get the answer.
@kumaraguru5353Ай бұрын
Ama bro thanks for the quick reply 🙏. Nethu half hour ha mulichutu irutha bro. Then work time ayduchu close pannita. Ipo few mins Google search panna. Stack overflow la athey concept soli iruthanga ipotha cast panni run panna. Ipo code work aguthu bro.
@letcodeАй бұрын
Super bro, welcome.
@yaserarafath6581 Жыл бұрын
Selenium java in tamil, Selenium related video practice panninal company survive panna mudiumaa ji or bro. I am manual testing experience only thats why asking due to no experience in automation
@letcode Жыл бұрын
3 to 5 years experience ku podhum bro
@yaserarafath6581 Жыл бұрын
@@letcode thanks a lot for your prompt reply ji/bro/BOSS
@letcode Жыл бұрын
@@yaserarafath6581 Koushik nu solllam bro
@the-brownwhale3 жыл бұрын
3:07 I think it is access 'specifier'!! bro. Edit: I think both are same!
@letcode3 жыл бұрын
Yeah ok bro, will do it correct in upcoming videos.
@the-brownwhale3 жыл бұрын
@@letcode illa bro check pannen both are same I think so!
@letcode3 жыл бұрын
Bro first adhu dha reply pannan, then I thought u r pointing the graphic so I deleted that comment. Yeah access modifier and access specifier are both same.
@the-brownwhale3 жыл бұрын
@@letcode thanks bro inniki dhan I saw your channel and subscribed, mathavunga solradhavida you are teaching well, thanks ❤️
@letcode3 жыл бұрын
Thanks bro 😊
@domselenium69043 жыл бұрын
Hi bro, in homework part default value for the datatype 'char' shows nothing. what i have to consider default value for char datatype?
@letcode3 жыл бұрын
The minimum value char can hold is 'u0000' which is a Unicode value denoting 'null'
@domselenium69043 жыл бұрын
@@letcode Thanq bro
@SudhaMahendhiran-o8c Жыл бұрын
Hi bro - Can u pls share the discord link to post the code and doubts
@letcode Жыл бұрын
discord.gg/ECd4UWPsth
@RajeshKumar-01012 жыл бұрын
Default and private access specifier -- rendume we can't access from other class thane so what is the difference between them bro?
@letcode2 жыл бұрын
Bro default can be accessed from other classes but should be in the same package. Private only in that class only.
@RajeshKumar-01012 жыл бұрын
@@letcode thanks bro
@GK-tq3uz2 жыл бұрын
bro neenga sna maari instance variable elam declare pani then object vachu call panalu entha outputu varala console la ethunaala apdi . Please clarify
@GK-tq3uz2 жыл бұрын
completely blanka iruku console la
@letcode2 жыл бұрын
Syso la variable eh use panni irukangala?
@GK-tq3uz2 жыл бұрын
@@letcode ama bro
@GK-tq3uz2 жыл бұрын
Method onu create pani athula syso la variable print panna kuduthutu then main method la object vachu call panna pathaen but console completely blank
@letcode2 жыл бұрын
Screenshot eh discord la share pannunga bro.
@yaserarafath6581 Жыл бұрын
Thirukurral explanation text pottal nabdraaga irukkum ji/ bro
@letcode Жыл бұрын
Videos yellam mudinjichu, neenga rombo late ah ketutinga 😄
@bharathimaran2353 Жыл бұрын
Hi Koushik, What is the use of assigning a Scanner input to a variable with Class? Ex: Scanner refName = new Scanner(System.in); Byte getbyte = refName.nextByte(); I usually declare a variable with data type and assign the Scanner input as below. How Class 'Byte' differs from data type 'byte' in this case? byte bytVal = refName.nextByte();
@letcode Жыл бұрын
Both will be the same, byte is the data type. You cannot call any method on it, whereas the class will have functions.
@bharathimaran2353 Жыл бұрын
@@letcode Thank you!
@sadhiq45512 жыл бұрын
Hello bro I have checked the default value of instance variable like int, string, boolean, float, double but in char datatypes it won't show anything in output. Is this correct?
@letcode2 жыл бұрын
It will null character bro.
@sadhiq45512 жыл бұрын
Ana enaku null nu print agale I think na mistake panni irupen nu nineikiren
@letcode2 жыл бұрын
@@sadhiq4551 ila null nu katathu, empty dhan varum adha null nu solluvom