Posts

Showing posts from May, 2021

I Know Why the Caged Bird Sings poem and tricky context questions | Study Table

Image
 I Know Why the Caged Bird Sings 

Essay - Life in Lockdown | Study table

Image
Essay - Life in Lockdown

Write an email to a swimming champion to be a guest of honor for the Swimming competition.

Image
              Email  

Write a notice for your school notice board, regarding an interschool swimming competition.

Image
Write a notice for your school notice board, regarding an interschool swimming competition.

You have accidentally left your suitcase behind when you got off the train. You only realized it after the train left the platform. Write a letter to the station master reporting your loss and request that the suitcase is located and kept till you claim it.

Image
  You have accidentally left your suitcase behind when you got off the train. You only realized it after the train left the platform. Write a letter to the station master reporting your loss and request that the suitcase is located and kept till you claim it. 

Array program for declaring, initializing and using an array.

Image
 Array Concept

Selection Sort Program Concept with Java code.

Image
               Selection Sort Program Concept

Bubble Sorting Concept and Program for Java

Image
    Bubble Sort Pro gram for Java What is Bubble sort?

Shorthand Assignments Program for Java

Image
          Shorthand Assignment Operators                                                   Java  offers special shorthands that simplify the coding of a certain                                      type of Assignment statement. For example,            a = a+10; can be written as,      a+=10;   The operator pair += tells the compiler to assign to a the value of    a+10.  This shorthand works   for all the binary operators in Java( those that requires two operands ).  The general form of Java Shorthand is :                                              ...