Completed the biography of the 4th writer for Hindi project
Get link
Facebook
X
Pinterest
Email
Other Apps
I completed the biography of the 4th writer Siyaramsharan Gupt today at around 1:30 am IST. I had wasted a lot of time since morning and now preparing to write about the 5th writer which is Yashpal.
Letter to SBI Bank Manager of Local Branch to reduce the interest rate on home loan House no. , Road no. , Bistupur, Jamshedpur - 831002. 18th December, 2023. The Manager, SBI, Road no. , Bistupur, Jamshedpur - 831002. Subject [To reduce the interest rate for Home Loan] Sir, I am [Name] and I have an account in your bank (A/C ......). I have been authorized a home loan from your bank which currently has an interest rate of 9.35%. The interest rates have resulted in a huge financial burden for me. I request you to reduce it to a moderate rate which I can cope with. Yours faithfully, [Name]
Upagupta, the disciple of Buddha, lay asleep in the dust by thr city wall of Mathura. Lamps were all out, doors were all shut, ans stars were all hidden by the murky sky of August. Whose feet were those tinkling with anklets, touching his breast of a sudden? He woke up startled, and the light from a woman's lamp fell on his forgiving eyes. It was Vasavadatta the dancing girl, starred with jewels, Clouded with a pale blue mantle, drunk with the wine of her youth. She lowered her lamp and saw the young face, austerely beautiful. 'Forgive me, young ascetic,' said the woman, 'Graciously come to my house. The dusty earth is not a fit bed for you.' The young ascetic answered, 'Woman, go on your way; When the time is ripe I will come to you.' Suddenly the black night showed its teeth in a flash of lightning. The storm growled from the corner of the sky, and the woman trembled in fear. A year had not yet passed. It was eveing of a day in April, in the Spring. The b...
Summers are getting hotter with each passing year Essay on "Summers are becoming hotter with each passing year. Write a description of one such very hot day. What did you see and hear as you walked outside? How were birds and animals affected?" India is famous all around the world for its different seasons and extreme as well as pleasant climate. The unique features of the Indian subcontinent are found nowhere else. India mainly experiences five seasons Spring, Summer, Monsoon, Autumn and Winter. Summer is considered the best among other seasons by the Indians, but its popularity is decreasing drastically each day as the temperatures are constantly increasing because of climate change. Summer is when the country experiences most death because of extreme weather conditions. It is becoming unbearable for the people as the day temperatures outside reach 50°C. Summer was often associated with fun and enjoyment, but that is not the case anymore. Summers are one of the most excitin...
Java Program to input a number and print the sum of digits of the number using Recursive Function import java.util.*; class Main { int digit(int n){ if(n==0) return 0; else return (n%10+digit(n/10)); } public static void main(String[] args) { Scanner in = new Scanner(System.in); int a; System.out.println("Enter the number whose sum of digit is desired using Recursive function"); a = in.nextInt(); Main ob = new Main(); System.out.println(ob.digit(a)); } }
Java Program to input two number and raising the input number to the power of the another input using Recursive Function. import java.util.*; class Main { int power(int n, int p){ if(p==0) return 1; else { return (n* power(n,p-1)); } } public static void main(String[] args) { Scanner in = new Scanner(System.in); int a, b; System.out.println("Enter the number and the power to be raised using Recursion Function"); a = in.nextInt(); b = in.nextInt(); Main ob = new Main(); System.out.println(ob.power(a,b)); } }
Java program to find the given term of Fibonacci Series using Recursion Function import java.util.*; class Main { int fib(int n){ if(n==1){ return 0; } if(n==2){ return 1; } if(n>2){ return(fib(n-2)+fib(n-1)); } else return -1; } public static void main(String[] args) { Scanner in = new Scanner(System.in); int a; System.out.println("Enter the number of terms of Fibonacci series to be displayed using Recursion function"); a = in.nextInt(); Main ob = new Main(); ...
Palindrome is a number or a string which when reversed is the same as the original. import java.util.*; class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); String s,s1=""; char ch; System.out.println("Enter a String"); s = in.next(); int l = s.length(); s = s.toUpperCase(); for(int i=l-1; i>=0; i--){ ch = s.charAt(i); s1 = s1+ch; } System.out.println(s1); if(s1.equals(s)){ System.out.println("Palindrome"); } else System.out.println("Not a palindrome"); } }
Java Program to input a number and display sum from 1 to that number using Recursion import java.util.*; class Main { int add(int n){ if(n>0){ return (n + add(n-1)); } else return 0; } public static void main(String[] args) { Scanner in = new Scanner(System.in); int a; System.out.println("Enter the number of which the sum is desired from 1 to the number n"); a = in.nextInt(); Main ob = new Main(); System.out.println( ob.add(a)); } }
A person standing in the railway station dressed in a good looking attire It is a common habit of humans to make judgements at the first look. It does not matter if we are seeing a person or a thing for the first time, our minds do not need to take a second look before coming to a judgement. If we look at a person, we quickly look at his clothes and shoes and come to the assumption that he is poor or rich. The same is the case with things, we decide for ourselves whether a substance is expensive or cheap just by its glittering and glistening. Over time, many learned personalities have taught us to "not judge a book by its cover." Through his various plays and writing, William Shakespeare, the popular eighteenth-century English writer, has sent the message to not fall for outward appearances. I have recently expereinced an incident that explains why is it important to not rely on just outward appearances to make a judgement about a person. I was travelling by train during my s...
Macbeth Personal Notes: Act 1 Scene 3 (Part 2/2) "Lesser than Macbeth, and greater. Not so happy, yet much happier. Thou shalt get kings, though thou be none." The witches mean that though Banquo will be lesser in rank than Macbeth, he will be morally higher. Banquo will be less successful than Macbeth, but he will be satisfied with his life and do not have to worry about someone taking his position. Banquo will be the father of the kings though he himself will not get the chance to be one. Witches vanish When Macbeth hears the witches predict about his future of becoming the Thane of Cawdor and eventually king, and Banquo's prediction of becoming the father of kings, he asks the witches how these predictions will come true and how the witches have come to know about their future. He also asks them that why had they chose them to stop on the way to the Foress and talk about their futures. The witches chose not to answer Macbeth's questions and vanish into the air. ...
Comments
Post a Comment