Advertisements
Advertisements
प्रश्न
The Scanner class method used to accept words with space:
विकल्प
next()
nextLine()
Next()
nextString()
उत्तर
nextLine()
APPEARS IN
संबंधित प्रश्न
Write a Java expression for the following : |x2+2xy|
Write a program to input a number and check and print whether it is a Pronic number or not. (Pronic number is the number which is the product of two consecutive integers).
Examples: 12 = 3 × 4
20 = 4 × 5
42 = 6 × 7
Write a program to input twenty names in an array. Arrange these names in descending order of alphabets, using the bubble sort technique.
Using the switch statement, write a menu driven program to calculate the maturity amount of a Bank Deposit.
The user is given the following options :
(i) Term Deposit
(ii) Recurring Deposit
For option (i) accept principal (P), rate of interest(r) and time period m years(n). Calculate and output the maturity amount (A) receivable using the formula
`"A" = "P"[1+"r"/100]^"n"`
For option (ii) accept Monthly Installment (P), rate of interest (r) and time period in months (n). Calculate and output the maturity amount (A) receivable using the formula
`"A" = "P" xx "n" + "P" xx ("n"("n" + 1))/2 xx "r"/100 xx 1/12`
For an incorrect option, an appropriate error message should be displayed.
Write a program to accept the year of graduation from school as an integer value from, the user. Using the Binary Search technique on the sorted array of integers given below.
Output the message “Record exists” If the value input is located in the array. If not, output the message “Record does not exist”.
{1982, 1987, 1993, 1996. 1999, 2003, 2006, 2007, 2009, 2010}.