Posts

Showing posts from April, 2025

Miss daksha

  You  to  Everyone 15:11 Good Afternoon ma'am Robin  to  Everyone 15:12 Good Afternoon ma'am Aswathy Ammu  to  Everyone 15:12 Good afternoon ma'am Hasna fathima  to  Everyone 15:12 Good afternoon ma'am Sreelakshmi  to  Everyone 15:12 Good afternoon ma'am Amarjith As  to  Everyone 15:12 Good Afternoon ma'am Amal Moncy  to  Everyone 15:12 Good Afternoon ma'am Jithu  to  Everyone 15:12 Good Afternoon madam Elizabeth Ann Chacko  to  Everyone 15:12 Thank you so much for the love and that amazing surprise today. I honestly didn’t see it coming, I was completely shocked and just sat there for a few minutes, not knowing what to say. 🥹 It’s been such a pleasure and privilege to mentor you all. I’ve worked with many batches, but each one holds a special place in my heart and you are no exception. 🫶 I’ll miss you all dearly. 💫 Even though I’m stepping away from this role, I’m not disappearin...

Email writing - 10

  Subject: Request for Extension Dear sir, I hope you are doing well. I’m writing to kindly ask for an extension on the for UI Design. Due to 29th April, I will need a bit more time to complete it properly. If possible, I would like to request a new Design of 31st Wednesday. I’ll make sure to finish everything by then. Thank you for your understanding. Best regards, Khayoom

Email writing-9

  Subject: Web Development on project work update Hi Robin, l hope you're doing well. I wanted to share update on the web development project. List is completed: Chair page design completed and responsive,      List is two point below:               1) Navbar                2) Footer I am currently on track to full website by 28/ 04/ 25. Let me know if you want more details or if there's anything you’d like me to test. Thank you for support. Khayoom

USA Deaf

  Oorjja  to  Everyone 8:21 Who all join from G1 Pls switch on the video daksha foundation  to  Everyone 8:23 Do you know why we are meeting so early on zoom adhil (vennala)  to  Everyone 8:24 I do not know madam daksha foundation  to  Everyone 8:24 We are going to meet and interact with Destiny Aneesha Pn  to  Everyone 8:24 I don't know madam daksha foundation  to  Everyone 8:24 She is living in the United States of America And she teaches coding She wanted to meet you all Amarjith As  to  Everyone 8:25 Ok ma'am daksha foundation  to  Everyone 8:25 And interact with you Hima  to  Everyone 8:25 ok madam Aneesha Pn  to  Everyone 8:25 ok madam Paul Jose (vennala)  to  Everyone 8:25 ok madam Haritha (Vennala)  to  Everyone 8:25 Ok madam daksha foundation  to  Everyone 8:25 So it's a good opportunity for all of you to understand how they learn i...

Creative Writing-6

 Write down how you are going to spend this weekend in 200 words. This should include, the time for productive activities and others. This weekend, I plan to balance work. On Saturday, I’ll wake up at 10:00 AM, exercise, and do some reading. From 11.30 AM to 1:00 PM, I’ll work on my website project and explore CSS techniques. After lunch, I’ll relax by watching a show or taking a walk. In the evening, l with my family some function and uncle are car then city in shop ice cream our enjoy. On Sunday, I’ll sleep 9:00 AM, l staying some rest home. In afternoon my home near anywhere home her marriage from l ate lunch. after l was going to ernakulam junction back hostel night at 8.30 pm

Email- writing-8

 Write a follow-up mail for a report you submitted Subject: Follow-Up on Submitted Report Dear Sir, I hope this message finds you well. I’m writing to follow up on the software that I submitted on two days. I wanted to confirm that you received it and see if there are any updates or feedback. Let me know if you need anything else from me. Best regards, Khayoom

Java MCQ Question for Answer

QUESTION - 1   1. What does encapsulation mean in java? a) Grouping data and methods  b) Hiding data  c) Inheritance  d) Overloading  Ans : Hiding data Reason : encapsulation is used for hide the data from user setter function is hide function in setter function data is visible Example :   public class Student {     // private data - encapsulated     private String name;     // public getter for name     public String getName() {         return name;     }     // public setter for name     public void setName(String name) {         this.name = name;     } } 2. Which keyword prevents method overriding?  a) static  b) private  c) final  d) super  Answer : Final Reason : This method is complete and should not be changed by subclasses. Example :  class Parent {     public final void show()...