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]
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)); } }
For the statement "No other subject taught in school is as important as Moral Science." Express your views for or against this statement A school is where the youngsters are taught the fundamentals in every major subject. They are taught Mathematics, Science, English, Computer Science, and regional language - in India Hindi is taught in most schools. Children till primary schools are taught Moral Science, but in higher grades, it needs to be given more or sometimes no attention. The school forgets how this important subject can help the students to become a better person. Children are enrolled in schools at an early age. They do not know the ethics and behaviours at such an age. Therefore, it is the responsibility of both - schools and the parents - to teach the children these basic yet important lessons. A person without ethics is no better than a non-living rock. Trees also have ethics; every living organism does. Therefore, it becomes crucial to teach the children the eth...
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"); } }
Essay on visit to a Heritage Site A heritage site is a landmark or a monument of historical importance. United Nations Educational, Scientific and Cultural Organization (UNESCO) administers such sites. They can help us to learn a lot of things about the history and culture of a place. A Heritage site is not only limited to a monument or a landmark but also includes ancient ruins, structures, buildings, cities, deserts, forests, islands, lakes, mountains, and wilderness areas. Schools and Colleges frequently plan a trip to heritage sites to teach the students about their significance, structure, importance, and features. Heritage sites date back several centuries and help students learn about ancient architecture. Students can also learn about primitive ways of living, culture, and faith by visiting and studying these heritage sites. I recently visited a World Heritage site with my classmates and teachers as a part of my school trip for summer vacation. We visited the Konark Sun Temple ...
Discuss the impact of remote work on modern society. Nowadays, it is very common to work remotely either from home or from a different place. There are many companies that are supporting and encouraging remote work, especially in technology sector. Remote work comes with various benefits to both the company and to the employees: Companies can pay less to remote workers compared to regular workers and the employees could work from the comfort of their homes without worrying about the professional office environment. One of the major advantages of remote work is increased flexibility of work and work-life balance. The employees could work according to the time they think is right. Some prefers to wake up early and complete the daily work by evening, while others prefer to work till late at night. Remote work can allow the employees to create a flexible work schedule. The employees work from home, so it becomes easier for them to focus on their hobbies alongside their work and give time f...
One word essay: Pride Pride is the feeling of confidence and self-respect that one gets after accomplishing a major achievement. The feeling of pride, though common to every sapience being, can be found excessively in ambitious men and women. Whether it is a great warrior, a craftsman, an artist, a scholar or a king, they all have one feeling in common, which is their desire to take a great pride in their work, postion or wisdom. In most cases, the pride of a being is the major driving factor which motivates him to pursue his goals and reach greater heights. Without pride, the competition will be significantly reduce and the ambition will no longer exist. In our daily lives, the student compete with each other to get the award for the most brilliant. The researchers competes to make the greatest discoveries. The companies competes to make the best product and attract consumers. The writers compete to give birth to the greatest of human imagination and the countries compete to be the mi...
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(); ...
Java Program to accept a character and check whether it is a letter or not. If letter, then convert it to uppercase or lowercase. Also check whether it is letter or a special character import java.util.*; class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); char a; System.out.println("Enter a character"); a = in.next().charAt(0); if(Character.isLetter(a)){ System.out.println("Character "+ a+ " is letter"); if(Character.isUpperCase(a)){ System.out.println(Character.toLowerCase(a)); } else System.out.println(Character.toUpperCase(a)); ...
Comments
Post a Comment