1: public class Egret { 2: private String color; 3: public Egret() { 4: this("white"); 5: } 6: public Egret(String color) { 7: color = color; 8: } 9: public static void main(String[] args) { 10: Egret e = new Egret(); 11: System.out.println("Color:" + e.color); 12: } 13: }
❌ A. Color: ✅ B. Color:null ❌ C. Color:White ❌ D. Compiler error on line 4. ❌ E. Compiler error on line 10. ❌ F. Compiler error on line 11.
Explanation: Line 10 calls the constructor on lines 3–5. That constructor calls the other constructor. However, the constructor on lines 6–8 assigns the method parameter to itself, which leaves the color instance variable on line 2 set to its default value of null
1: public class Egret { 2: private String color; 3: public Egret() { 4: this("white"); 5: } 6: public Egret(String color) { 7: color = color; 8: } 9: public static void main(String[] args) { 10: Egret e = new Egret(); 11: System.out.println("Color:" + e.color); 12: } 13: }
❌ A. Color: ✅ B. Color:null ❌ C. Color:White ❌ D. Compiler error on line 4. ❌ E. Compiler error on line 10. ❌ F. Compiler error on line 11.
Explanation: Line 10 calls the constructor on lines 3–5. That constructor calls the other constructor. However, the constructor on lines 6–8 assigns the method parameter to itself, which leaves the color instance variable on line 2 set to its default value of null
BY Explanations “Top Java Quiz Questions”
Warning: Undefined variable $i in /var/www/tg-me/post.php on line 283
Mr. Durov launched Telegram in late 2013 with his brother, Nikolai, just months before he was pushed out of VK, the Russian social-media platform he founded. Mr. Durov pitched his new app—funded with the proceeds from the VK sale—less as a business than as a way for people to send messages while avoiding government surveillance and censorship.
Telegram Auto-Delete Messages in Any Chat
Some messages aren’t supposed to last forever. There are some Telegram groups and conversations where it’s best if messages are automatically deleted in a day or a week. Here’s how to auto-delete messages in any Telegram chat. You can enable the auto-delete feature on a per-chat basis. It works for both one-on-one conversations and group chats. Previously, you needed to use the Secret Chat feature to automatically delete messages after a set time. At the time of writing, you can choose to automatically delete messages after a day or a week. Telegram starts the timer once they are sent, not after they are read. This won’t affect the messages that were sent before enabling the feature.