es
Feedback
TechShiksha by Badkul Technology

TechShiksha by Badkul Technology

Ir al canal en Telegram

https://www.youtube.com/@TechShikshaBT Learn Java programming for free Free hand written notes Free ebooks Free assignment support Paid assignment support

Mostrar más
4 983
Suscriptores
-324 horas
-157 días
-6530 días
Archivo de publicaciones
Can we create an instance of final class in another class?
Anonymous voting

#Quiz_Java (Question - 44) What is the original name of Java Programming language?
Anonymous voting

Newly Joined Members subscribe to our channel to learn programming and crack written exams. https://tinyurl.com/dzrt4f7d Discuss doubts in @tcs_infosys_accenture

Newly Joined Members subscribe to our channel to learn programming and crack written exams. https://www.youtube.com/c/frbjava Discuss doubts in @tcs_infosys_accenture

Can you change the value of a variable declared as "final"?
Anonymous voting

for more susch interview questions please follow our linkedin page https://www.linkedin.com/feed/update/urn:li:share:7028945918791925760/

Why a constructor cannot be final in Java? Ans: If a method is marked as final it means we do not want any class to override it. As per Java Language Specification, a constructor cannot be overridden. So, there is no use in declaring a constructor as final.

How to declare a constant in Java?
Anonymous voting

#Quiz_Java (Question - 31) boolean valid declaration of a?
Anonymous voting

#Quiz_C (Question - 16) An array elements are always stored in ________ memory locations.
Anonymous voting

we try to bring lot of content, with great effort. Please subscribe to our youtube channel as token of appreciation of our work. Below is the link to our youtube channel. https://www.youtube.com/c/frbjava

which access modifier is the most strict(provides least visibility) in java
Anonymous voting

Newly Joined Members subscribe to our channel to learn programming and crack written exams. https://www.youtube.com/c/frbjava Discuss doubts in @tcs_infosys_accenture

How to call one constructor from the other constructor ? answer : With in the same class if we want to call one constructor from other we use this() method. Based on the number of parameters we pass appropriate this() method is called. Restrictions for using this method : 1) this must be the first statement in the constructor 2)we cannot use two this() methods in the constructor

solving data structures questions .pdf1.07 KB

SQL.pdf3.33 KB

Newly Joined Members subscribe to our channel to learn programming and crack written exams. https://www.youtube.com/c/frbjava Discuss doubts in @tcs_infosys_accenture

what are static blocks and static initalizers in Java ? answer : Static blocks or static initializers are used to initalize static fields in java. we declare static blocks when we want to intialize static fields in our class. Static blocks gets executed exactly once when the class is loaded . Static blocks are executed even before the constructors are executed.