What is noun? Very short explanation by Monika Ma’am Online English Tutor Book Free demo class call or whatsapp +91 6393740955 https://wa.me/message/7D4PH36S3COFF1 Online one to one or group tuition for CBSE ICSE UP board class 1,2,3,4,5,6,7,8,9,10,11,12 students. Online english subject tutor, cbse english tutor, online english tuition , english online tutor. https://amitsirtutor.com/englishtutor.html
Call +91 8181969432 We provide Hindi home Tutor in Bangalore ,Tutor for Hindi literature, Tutor for Hindi language for kids CBSE Hindi tutor, online hindi tutor for class 1,2,3,4,5,6,7,8, Online Tutors,Tutor for icse Hindi literature, ICSE board Hindi, icse 9th class Hindi Tutor, cbse class 11th and 12th Hindi Tutor ,Hindi tutorial,Hindi classes ,Hindi coaching classes ,Hindi coaching,Free Hindi course,Online one to one Tuition Tutor, Hindi Tutors, Hindi Tutor for class 9 10 ICSE board students, online Hindi course, icse Hindi course,cbse Hindi course,Hindi training ,Online Hindi training ,Hindi training class ,Hindi online course, Hindi training course, free Hindi course, spoken hindi tutor, read write and learn hindi. Demo class is free.
Are you looking for a skilled Hindi language tutor to help you excel in your studies? Whether you’re enrolled in CBSE, ICSE, ISC, or any State Board, our experienced tutors are here to guide you. With personalized one-on-one or group classes, we make learning Hindi engaging and effective.
Why Choose Our Hindi Tutoring Services?
Free Demo Class: Get started with a complimentary demo class! Experience our teaching style and see how we can help you achieve your language goals.
Experienced Tutors: Our team includes qualified female tutors specializing in Hindi literature, grammar, and language. We focus on individual learning needs to ensure every student succeeds.
Flexible Learning Options: Choose between online one-to-one classes or group sessions based on your comfort and preference.
Our Services Include:
Hindi Home Tutor: Personalized tutoring sessions in the comfort of your home.
Hindi Literature Tutor: In-depth exploration of Hindi literature for ICSE and CBSE students.
Hindi Language Tutor: Comprehensive language training to build your vocabulary and fluency.
Online Hindi Courses: Flexible online classes tailored for students from Class 1 to 12.
Specialized Tutoring for Different Boards:
CBSE Hindi Tutor: Support for CBSE students in Class 11 and 12, ensuring they excel in exams.
ICSE Hindi Tutor: Expert guidance for ICSE students in Class IX, X, XI, and XII, focusing on literature and language skills.
State Board Hindi Tutor: Customized lessons for students in various State Boards, helping them grasp the nuances of the Hindi language.
Areas We Serve
We proudly offer Hindi tutoring services across multiple locations, including:
Mumbai: ICSE Hindi Tutor in Mumbai and Navi Mumbai
Delhi: Hindi Tutors available for Class 12 and ICSE Hindi in Delhi
Bangalore Hyderabad Chennai: Comprehensive Hindi tutoring for students in these regions
Kolkata and West Bengal: Expert Hindi tutors ready to assist you
Additional Offerings
Translation Expert Tutor: Learn how to translate English to Hindi and vice versa with our specialized translation sessions.
Hindi Grammar Online Tutor: Master Hindi grammar with dedicated online lessons.
Poetry and Prose Experts: Get insights into Hindi poetry and prose through specialized classes.
Enroll Today!
Don’t miss the opportunity to enhance your Hindi skills! Call us at +91 8181969432 to book your free demo class. Our friendly tutors are ready to help you embark on a successful learning journey.
Learn, Speak, and Write Hindi with Confidence!
Join our community of learners and master the Hindi language. Whether you’re aiming for academic excellence or personal growth, our Hindi tutoring services will provide the tools you need to succeed.
WAP in Java to input a number and check whether it is a Pronic Number or Heteromecic Number or not
A pronic number is a number which is the product of two consecutive integers, that is, a number of the form n(n + 1). The pronic number is also called oblong numbers, heteromecic numbers, or rectangular numbers.The first few Pronic numbers are::- 0, 2, 6, 12, 20, 30, 42, 56, 72, 90, 110, 132, 156, 182, 210, 240, 272, 306, 342
Example:
30 = 5 * (5+1) 42 = 6 * (6+1) 56 = 7 * (7+1)
import java.util.Scanner;
public class PronicNumber {
public static boolean isPronic(int number) {
int i = 0; // iterator variable
// loop until square root of the number
while(i <= (int)Math.sqrt(number)) {
if(number == i*(i+1))
return true;
// increase iterator variable by 1
i++;
}
return false;
}
public static void main(String[] args) {
// declare variables
int number = 0;
// read the input
Scanner scan = new Scanner(System.in);
System.out.print("Enter an integer number:: ");
number = scan.nextInt();
// check the number is Pronic number or not
if(isPronic(number))
System.out.println(number+" is a"
+ " pronic number");
else
System.out.println(number+" is not a"
+ " pronic number");
// close Scanner class object
scan.close();
}
}
output:
Enter an integer number:: 30
30 is a pronic number
Enter an integer number:: 15
15 is not a pronic number
A number is said to be Buzz Number if it ends with 7 or is divisible by 7.
Example: 17 is a buzz number as it ends with 7,
14 is a buzz number as it is divisible by 7
77 as it ends with 7 and also divisible by 7
Program:
import java.util.*;
public class BuzzNumber
{
public static void main(String args[])
{
Scanner ob=new Scanner(System.in);
System.out.println(“Enter the number”);
int num=ob.nextInt();
if(num%10==7 || num%7==0)// 17 , 14 ,77
{
System.out.println(num+” is a Buzz Number”);
}
else
{
System.out.println(num+” is not a Buzz Number”);
}
}
}
Ques:Why is an object called an instance of a class? Ans. An object is called an instance of a class as every object created from a class gets its own instances of the variables defined in the class. Multiple objects can be created from the same class.
Ques: Rewrite the following condition without using logical operators:
if ( a>b || a>c )
System.out.println(a);