Results for "Number Comparison"

Total results: 568

  1. Java Program to find sum of two integer numbers
  2. Java Program to find sum of two integer numbers using Scanner Class
  3. Java Program to find area of circle
  4. Java Program to find perimeter of circle
  5. Java Program to Print Lower Triangle Matrix Excluding Principal Diagonal Matrix
  6. Java Program to Print Upper Triangle Matrix Excluding Principal Diagonal Matrix
  7. Java Program to Print Lower Triangle Matrix Including Principal Diagonal Matrix
  8. Java Program to Print Upper Triangle Matrix Including Principal Diagonal Matrix
  9. Java Program to find Sum of Lower Triangle Matrix Excluding Principal Diagonal Matrix
  10. Java Program to find Sum of Upper Triangle Matrix Excluding Principal Diagonal Matrix
  11. Java Program to find Sum of Lower Triangle Matrix Including Principal Diagonal Matrix
  12. Java Program to find Sum of Upper Triangle Matrix Including Principal Diagonal Matrix
  13. Java Program to Reverse a Number
  14. Java Program to Reverse a String
  15. Java Program to find maximum element in an array
  16. Java Program to find minimum element in an array
  17. Java Program to find fibonacci series of a number
  18. Java Program to find fibonacci series of a number using methods
  19. Java Program to find fibonacci series of a number using recursion
  20. Java Program example to demonstrate String charAt method
  21. Java Program example to demonstrate String compareTo method
  22. Java Program example to demonstrate String compareToIgnoreCase method
  23. Java Program example to demonstrate String contentEquals method
  24. Java Program to demonstrate Integer wrapper class
  25. Java Program to demonstrate Float wrapper class
  26. Java Program to demonstrate Byte wrapper class
  27. Java Program to show usage of Enum which prints the size of coffee mug
  28. Java Program to show usage of this pointer using Order Pizza Program
  29. Java Program to pick random value from enumerations
  30. Java Program to count the occurrence of a number
  31. Java Program for Div Zero Exception
  32. Java Program to demonstrate nested try block
  33. Java Program example to demonstrate variable length of arguments
  34. Java Program to demonstrate ArrayList
  35. Java Program to calculate Student Average of a Class using User defined Storage Classes
  36. Java Program to find sum of array elements
  37. Java Program to find average of array elements
  38. Java Program to find Median of array elements
  39. Java program to sort array using temporary variable
  40. Java Program to add two binary numbers
  41. Java Program to add two binary numbers using ParseInt
  42. Java Program to subtract two binary numbers using ParseInt
  43. Java Program to multiply two binary numbers using ParseInt
  44. Java Program to divide two binary numbers using ParseInt
  45. Java Program to count Vowels and Consonants in a given string
  46. Java Program to count digits and white spaces in a given string
  47. Java Program to print all substrings of a given string
  48. Java Program to sort the given string Alphabetically using Comparator
  49. Java Program to sort the given string in reverse order using Comparator
  50. Java Program to add two matrices
  51. Java Program to subtract two matrices
  52. Java Program to multiply two matrices
  53. Python Program to initialize different datatypes and print
  54. Python Program to find sum of two integer numbers
  55. Python Program to find difference of two integer numbers
  56. Python Program to find product of two integer numbers
  57. Python Program to find division of two integer numbers
  58. Python Program to find biggest of two integer numbers
  59. Python Program to find biggest of three numbers
  60. Python Program to swap two numbers using temporary variable
  61. Python Program to swap two numbers using xor
  62. Python Program to find swap two numbers without temp variable (Addition and Subtraction Method)
  63. Python Program to find swap two numbers without temp variable (Multiplication and Division Method)
  64. Python Program to find ASCII value of a character or digit
  65. Python Program to check whether a given number is an Armstrong Number or not
  66. Python Program to check whether a given number is an Armstrong Number or not using lambda and list
  67. Python Program to reverse an integer number
  68. Python Program to find sum of digits
  69. Python Program to find maximum element in an array
  70. Python Program to find sum of array elements using for
  71. Python Program to find sum of array elements using sum function
  72. Python Program to find fibonacci series
  73. Python Program to check if a given number is Prime or not
  74. Python Program to find the square root of a given number
  75. Python Program to convert Celsius to Fahrenheit
  76. Python Program to convert Fahrenheit to Celsius
  77. Python Program to generate a random number within the given range
  78. C Program to find the sum of two integer numbers
  79. C Program to find the difference of two integer numbers
  80. C Program to find the product of two integer numbers
  81. C Program to find the division of two integer numbers
  82. C Program to swap two variables by shifting bits
  83. C Program to swap two variables by performing xor operation
  84. C Program to find positive negative or zero using Conditional Operator
  85. C Program to find positive negative or zero using If Else statement
  86. C Program to find odd or even using Conditional Operator
  87. C Program to find odd or even using If Else statement
  88. C Program to find odd or even using goto statement
  89. C Program to check whether a given number is a Perfect Number or not
  90. C Program to check whether a given number is an Armstrong Number or not
  91. C Program to generate Armstrong number within a given range
  92. C Program to check whether a given number is an Armstrong Number or not using user defined power function
  93. C Program to check whether a given number is an Armstrong Number or not using in built power function
  94. C Program to find biggest of two numbers using Conditional Operator
  95. C Program to find biggest of two numbers using If Else statement
  96. C Program to find biggest of three numbers using Conditional Operator
  97. C Program to find biggest of three numbers using If Else statement
  98. C Program to find biggest of three numbers using nested If Else statement
  99. C Program to find biggest of three numbers using Binary Minus
  100. C Program to find smallest of three numbers using Conditional Operator
  101. C Program to find smallest of three numbers using If Else statement
  102. C Program to find smallest of three numbers using nested If Else statement
  103. C Program for simple calculator to perform addition subtraction multiplication and division based on the symbol using if else ladder statement
  104. C Program for simple calculator to perform addition subtraction multiplication and division based on the symbol using switch statement
  105. C Program to demonstrate the use of sizeof operator
  106. C Program to identify a character or a digit using ASCII values
  107. C Program to identify a character digit or special character using Built In functions
  108. C Program to identify a character or a digit using Built In functions
  109. C Program to print first n natural numbers using for loop
  110. C Program to print first n natural numbers using while loop
  111. C Program to print first n natural numbers using do while loop
  112. C Program to find the sum of first n natural numbers using for loop
  113. C Program to find the sum of first n natural numbers using while loop
  114. C Program to sum of n natural numbers using do while
  115. C Program to find the factorial of a given number
  116. C Program to find factorial of a number using functions
  117. C Program to find GCD and LCM of a given two number
  118. C Program to generate Fibonacci Series for first n natural numbers
  119. C Program to check whether a given integer number is palindrome or not
  120. C Program to print first n prime numbers
  121. C Program to print prime numbers within given range
  122. C Program to check if a number is prime number or not
  123. C Program to reverse a given integer number using while loop
  124. C Program to reverse a given integer number using while loop using functions
  125. C Program to reverse an integer number using for
  126. C Program to reverse an integer number using do while
  127. C Program to print random number
  128. C Program to print random number within range
  129. C Program to check anagram by checking frequency
  130. C Program to check anagram by sorting strings
  131. C Program to find area of Regular Polygon sides
  132. C Program to find power of a number without inbuilt function
  133. C Program to sort a set of strings alphabetically
  134. C Program to find if a string is palindrome or not without built in functions
  135. C Program to compare two strings using built in functions
  136. C Program to compare two strings without using built in functions
  137. C Program to find Permutations nPr
  138. C Program to find Combinations nCr
  139. C Program to find Sum of Digits of a given number Type 1
  140. C Program to find Sum of Digits of a given number Type 2
  141. C Program to find sum of two numbers using command line arguments
  142. C Program to find sum of two numbers using functions with returning the value
  143. C Program to find sum of two numbers using functions without returning the value
  144. C Program to print first n odd numbers
  145. C Program to print first n even numbers
  146. C Program to print n odd numbers within range
  147. C Program to print n even numbers within range
  148. C Program to print first n odd and even numbers Type 1
  149. C Program to print first n odd and even numbers Type 2
  150. C Program to find the sum of first n odd numbers using for loop
  151. C Program to print the sum of n odd numbers using while
  152. C Program to print the sum of n odd numbers using do while
  153. C Program to print the sum of n odd numbers within range using for
  154. C Program to print the sum of n odd numbers within range using while
  155. C Program to print the sum of n odd numbers within range using do while
  156. C Program to find the sum of first n even numbers using for loop
  157. C Program to print the sum of n even numbers using while
  158. C Program to print the sum of n even numbers using do while
  159. C Program to print the sum of n even numbers within range using for
  160. C Program to print the sum of n even numbers within range using while
  161. C Program to print the sum of n even numbers within range using do while
  162. C Program to find the sum of first n odd and even numbers using for
  163. C Program to print the sum of n odd and even numbers using while
  164. C Program to print the sum of n odd and even numbers using do while
  165. C Program to print the sum of n odd and even numbers within range using for
  166. C Program to print the sum of n odd and even numbers within range using while
  167. C Program to print the sum of n odd and even numbers within range using do while
  168. C Program to convert binary to decimal number
  169. C Program to convert binary to hexadecimal number
  170. C Program to convert binary to octal number
  171. C Program to convert a decimal to binary number
  172. C Program to convert decimal to hexadecimal number
  173. C Program to convert a decimal to octal number
  174. C Program to convert octal to binary number
  175. C Program to convert an octal to decimal number
  176. C Program to convert octal to hexadecimal number
  177. C Program to find sum of two arrays
  178. C Program to search a key element using Binary Search method
  179. C Program to search a key element using Binary Search using Functions
  180. C Program to search a key element using Linear Search method
  181. C Program to search a key element using Linear Search using Functions
  182. C Program to add two matrix
  183. C Program to subtract two matrix
  184. C Program to find sum of lower triangle matrix
  185. C Program to find sum of upper triangle matrix
  186. C Program to add principal diagonal elements in a matrix
  187. C Program to find sum of n natural numbers using recursion
  188. C Program to find the factorial of a given number using recursion
  189. C Program to find nth fibonacci number using recursion
  190. C Program to search a key element using linear search using recursion
  191. C Program to implement Tower of Hanoi
  192. C Program to reverse a digit using recursion
  193. C Program to print prime numbers within a range using recursion
  194. C Program to check prime numbers using recursion
  195. C Program to sort an array using Selection Sort
  196. C Program to sort an array using Insertion Sort
  197. C Program to sort an array using Merge Sort
  198. C Program to sort an array using Shell Sort
  199. C Program to implement 01 Knapsack problem
  200. C Program to implement 01 Knapsack problem using recursion
  201. C Program to implement Fractional Knapsack problem using Greedy Method
  202. C Program to solve N Queens using greedy method
  203. C Program to implement Warshall's algorithm
  204. C Program to find square of a number using macro functions
  205. C Program to find sum of array elements using pointers
  206. C Program to add two complex numbers using structures
  207. C Program to count vowels and consonents in a given sentence
  208. C Program to print small alphabets in right angled triangle pattern in series
  209. C Program to print capital alphabets in right angled triangle pattern in series
  210. C Program to print number a Right angled Triangle pattern
  211. C Program to print first n natural numbers in a Right angled Triangle pattern
  212. C Program to print even numbers in a Right angled Triangle pattern
  213. C Program to print prime numbers in a Right angled Triangle pattern
  214. C Program to print binary numbers in a Right angled Triangle pattern
  215. C Program to print numbers in rows and columns of Quadrangle pattern
  216. C Program to print numbers in rows and columns of Quadrangle pattern in reverse order
  217. C Program to print Equilateral Triangle in a pyramid star pattern
  218. C Program to print Inverted Equilateral Triangle in a pyramid star pattern
  219. C Program to print Right angled Triangle in a pyramid star pattern Type 1
  220. C Program to print Right angled Triangle in a pyramid star pattern Type 2
  221. C Program to print Inverted Right angled Triangle in a pyramid star pattern Type 1
  222. C Program to print Inverted Right angled Triangle in a pyramid star pattern Type 2
  223. C Program to print Hollow Right angled Triangle in a pyramid star pattern Type 1
  224. C Program to print Hollow Right angled Triangle in a pyramid star pattern Type 2
  225. C Program to print Hollow Inverted Right angled Triangle in a pyramid star pattern Type 1
  226. C Program to print Hollow Inverted Right angled Triangle in a pyramid star pattern Type 2
  227. C Program to print Rhombus in a star pattern
  228. C Program to print Hollow Rhombus in a star pattern Type 1
  229. C Program to print Hollow Rhombus in a star pattern Type 2
  230. C Program to print Solid Square in a star pattern
  231. C Program to print Solid Rectangle in a star pattern
  232. C Program to print Hollow Rectangle in a star pattern
  233. C Program to print Left Arrow in a star pattern Type 1
  234. C Program to print Left Arrow in a star pattern Type 2
  235. C Program to print Right Arrow in a star pattern Type 1
  236. C Program to print Right Arrow in a star pattern Type 2
  237. C Program to print Half Left Diamond in a star pattern
  238. C Program to print Half Right Diamond in a star pattern
  239. C Program to print Alphabet K in a star pattern
  240. C Program to print Alphabet X in a star pattern
  241. C Program to print Symbol Plus in a star pattern
  242. C Program to create Floyds triangle
  243. C Program to print Pascal triangle
  244. C++ Program to find the sum of two integer numbers
  245. C++ Program to find the difference of two integer numbers
  246. C++ Program to find the product of two integer numbers
  247. C++ Program to find the division of two integer numbers
  248. C++ Program to find the sum of two integer numbers using classes and objects
  249. C++ Program to find biggest of two numbers
  250. C++ Program to find biggest of three numbers
  251. C++ Program to sort an array using Merge Sort
  252. C++ Program to find biggest of two numbers using Inline Functions
  253. C++ Program to find sum of two numbers using pointer returning functions
  254. C++ Program for simple calculator to perform addition subtraction multiplication and division based on the symbol using switch statement
  255. C++ Program to generate fibonacci series
  256. C++ Program to find factorial of a number without classes
  257. C++ Program to find factorial of a number using classes
  258. C++ Program to find factorial of a number using copy constructor
  259. C++ Program to find square of a number using templates
  260. C++ Program to find power of a number without inbuilt function
  261. C++ Program to print sum of n natural numbers using do while
  262. C++ Program to check if entered number is prime or not using classes
  263. C++ Program to convert binary to octal
  264. C++ Program to convert decimal to hexadecimal
  265. C++ Program to convert octal to binary
  266. C++ Program to reverse an integer number using for
  267. C++ Program to reverse an integer number using while
  268. C++ Program to reverse an integer number using do while
  269. C++ Program to find odd or even using If Else statement
  270. C++ Program to add two complex numbers
  271. C++ Program to find sum of two arrays
  272. C++ Program to add two matrix
  273. C++ Program to print n even numbers within range
  274. C++ Program to print n odd numbers within range
  275. C++ Program to print the sum of n even numbers using while
  276. C++ Program to print the sum of n even numbers using do while
  277. C++ Program to print the sum of n even numbers within range using for
  278. C++ Program to print the sum of n even numbers within range using while
  279. C++ Program to print the sum of n even numbers within range using do while
  280. C++ Program to print the sum of n odd numbers using while
  281. C++ Program to print the sum of n odd numbers using do while
  282. C++ Program to print the sum of n odd numbers within range using for
  283. C++ Program to print the sum of n odd numbers within range using while
  284. C++ Program to print the sum of n odd numbers within range using do while
  285. C++ Program to print the sum of n odd and even numbers using while
  286. C++ Program to print the sum of n odd and even numbers using do while
  287. C++ Program to print the sum of n odd and even numbers within range using for
  288. C++ Program to print the sum of n odd and even numbers within range using while
  289. C++ Program to print the sum of n odd and even numbers within range using do while
  290. C# Program to add two numbers
  291. C# Program to subtract two numbers
  292. C# Program to multiply two numbers
  293. C# Program to divide two numbers
  294. C# Program to calculate area of pentagon
  295. C# program to print first n Natural Numbers
  296. C# program to print n Even Natural Numbers
  297. C# program to print n Odd Natural Numbers
  298. C# program to find Sum of first n Natural Numbers
  299. C# program to find Sum of first n Even Natural Numbers
  300. C# program to find Sum of first n Odd Natural Numbers
  301. C# program to check Even or Odd Number
  302. C# program to check Positive or Negative Number
  303. C# program to Compare Two Numbers
  304. C# program to find Modulus of Two Numbers
  305. C# program to display Multiplication Table
  306. C# program to print Odd Even Series
  307. C# program to print Floyds Triangle
  308. C# program to print Pascal Triangle
  309. C# program to print half Pyramid of Numbers
  310. C# program to print half Pyramid of Alphabets
  311. C# program to print half Pyramid of Stars
  312. C# program to print full Inverted Pyramid of Stars
  313. C# program to print half Inverted Pyramid of Stars
  314. C# program to print full Pyramid of Stars
  315. Rust Program to print first 10 natural numbers using for loop
  316. Rust Program to Add two Numbers
  317. Rust Program to Add two Numbers from user input
  318. Rust Program to Subtract two Numbers
  319. Rust Program to Subtract two Numbers from user input
  320. Rust Program to Multiply Two Numbers
  321. Rust Program to Multiply Two Numbers from user input
  322. Rust Program to Divide Two Numbers
  323. Rust Program to Divide Two Numbers from user input
  324. Rust Program to find Modulus of two Numbers
  325. Rust Program to find Square of a number
  326. GO Lang Program to find sum of two numbers
  327. GO Lang Program to enter integer number
  328. GO Lang Program to subtract two numbers
  329. GO Lang Program to find biggest of two numbers
  330. JavaScript Program to add of two numbers
  331. JavaScript Program to subtract of two numbers
  332. JavaScript Program to multiply of two numbers
  333. JavaScript Program to divide of two numbers
  334. JavaScript Program to print Fibonacci series
  335. JavaScript Program to find if a number is palindrome or not
  336. PHP Program to add two numbers
  337. Ruby Program to find odd or even number
  338. Ruby Program to find factorial of a number
  339. Ruby Program to add two numbers
  340. Ruby Program to add two numbers using command line
  341. Ruby Program to subtract two numbers
  342. R Program to generate random numbers using runif
  343. R Program to generate random numbers using sample
  344. R Program to add two numbers and print the result on the console
  345. R Program to find modulus of two numbers
  346. R Program to add two numbers
  347. R Program to subtract two numbers
  348. R Program to multiply two numbers
  349. R Program to divide two numbers
  350. Shell Script to find factorial of a number
  351. Shell Script to print first n natural numbers
  352. Shell Script to find sum of n numbers
  353. Shell Script to find biggest of two numbers
  354. Shell Script to find biggest of three numbers using command line arguments
  355. Shell Script to find biggest of three numbers using nested if
  356. Shell Script to find largest of three numbers using If Else statement
  357. Shell Script to print command line arguments Type 1
  358. Shell Script to print command line arguments Type 2
  359. Shell Script to print command line arguments in reverse
  360. Shell Script to find if a number is positive or negative or zero
  361. Shell Script to print first n natural numbers in a pattern of Right angled Triangle
  362. Shell Script to print first n natural numbers in a pattern of Equilateral Triangle
  363. Shell Script for simple calculator to perform addition subtraction multiplication and division based on the symbol using case statements
  364. ADA Program to print a integer number entered by user
  365. ADA Program to print a string entered by user
  366. ADA Program to find the sum of two integer number
  367. ADA Program to find the difference of two integer number
  368. ADA Program to find the product of two integer number
  369. ADA Program to find the division of two integer number
  370. ADA Program to find area of square
  371. ADA Program to find perimeter of square
  372. ADA Program to find area of rectangle
  373. ADA Program to find perimeter of rectangle
  374. Haskell Program to print integer entered by the user
  375. Haskell Program to print Fibonacci series
  376. Haskell Program to print factorial of a number
  377. Haskell Program to add two numbers
  378. Haskell Program to subtract two numbers
  379. Haskell Program to multiply two numbers
  380. Haskell Program to divide two numbers
  381. Julia Program to add two numbers
  382. Julia Program to subtract two numbers
  383. Julia Program to multiply two numbers
  384. Julia Program to divide two numbers
  385. Julia Program to find modulus of two numbers
  386. Julia Program to find power of a given number
  387. Julia Program to print n natural numbers
  388. Julia Program to check whether given number is odd or even
  389. Julia Program to print sum of n natural numbers
  390. Julia Program to check if a number is prime number or not
  391. Julia Program to print n odd numbers
  392. Julia Program to print n even numbers
  393. Julia Program to print first n prime numbers
  394. Julia Program to demonstrate creation of Array using collect method
  395. Julia Program to demonstrate creation of Arrays using splat operator
  396. Lua Program to add two numbers
  397. Lua Program to subtract two numbers
  398. Lua Program to multiply two numbers
  399. Swift Program to print Fibonacci Series for first n natural numbers
  400. Swift Program to read integer from user and print (Type 1)
  401. Swift Program to read integer from user and print (Type 2)
  402. Swift Program to read integer from user and print (Type 3)
  403. Swift Program to find the sum of two integer numbers
  404. Swift Program to find the difference of two integer numbers
  405. Swift Program to find the product of two integer numbers
  406. Swift Program to find the quotient of two integer numbers
  407. F# program to Add two numbers
  408. F# program to Add two numbers using Functions
  409. F# program to Subtract two numbers
  410. F# program to Subtract two numbers using Functions
  411. F# program to Multiply two numbers
  412. F# program to Multiply two numbers using Functions
  413. F# program to Divide two numbers
  414. F# program to Divide two numbers using Functions
  415. F# program to Divide two numbers using Try Catch
  416. F# program to find Modulus of two numbers
  417. F# program to find Modulus of two numbers using Functions
  418. F# program to find Modulus of two numbers using Try Catch
  419. F# program to print first n Natural Numbers
  420. F# program to print the sum of first n Natural Numbers
  421. F# program to print first n Prime Numbers using Sequence
  422. F# program to perform Arithmetic Operations
  423. F# program to perform Boolean Operations
  424. F# program to check Odd or Even Number
  425. F# program to check Positive or Negative Number
  426. F# program to check Palindrome Number
  427. F# program to compare two numbers
  428. F# program to compare two numbers using Functions
  429. F# program to print Fibonacci Series
  430. F# program to print Fibonacci Series using Anonymous Recursion
  431. F# program to print Fibonacci Series using Match With
  432. F# program to find Factorial of a Number
  433. F# program to find GCD of two Numbers
  434. F# program to print numbers in reverse using down to
  435. Integrated Development Environments (IDEs) for Java
  436. Java identifiers
  437. Lists in Python
  438. Strings in Python
  439. Tuples in Python
  440. Sets in Python
  441. Dictionary in Python
  442. File Handling in Python
  443. Passage 1
  444. Passage 3
  445. Passage 5
  446. Passage 7
  447. Passage 8
  448. Passage 9
  449. Passage 10
  450. Passage 12
  451. Passage 13
  452. Passage 15
  453. Passage 16
  454. Passage 17
  455. Passage 20
  456. Passage 23
  457. Passage 26
  458. Passage 27
  459. Passage 29
  460. Passage 30
  461. Passage 31
  462. Passage 32
  463. Passage 33
  464. Passage 34
  465. Passage 35
  466. Passage 38
  467. Passage 39
  468. Passage 40
  469. Passage 41
  470. Passage 44
  471. Passage 48
  472. Passage 50
  473. Passage 51
  474. Passage 53
  475. Passage 55
  476. Passage 56
  477. Passage 57
  478. Passage 62
  479. Passage 63
  480. Passage 66
  481. Passage 69
  482. Passage 72
  483. Passage 74
  484. Passage 75
  485. Passage 76
  486. Passage 79
  487. Passage 81
  488. Passage 83
  489. Passage 86
  490. Passage 90
  491. Passage 92
  492. Passage 93
  493. Passage 95
  494. Passage 97
  495. Passage 101
  496. Passage 106
  497. Passage 107
  498. Passage 108
  499. Passage 113
  500. Passage 115
  501. Passage 117
  502. Passage 118
  503. Passage 119
  504. Passage 121
  505. Passage 122
  506. Passage 128
  507. Passage 129
  508. Passage 133
  509. Passage 135
  510. Passage 136
  511. Passage 143
  512. Passage 144
  513. Passage 145
  514. Passage 155
  515. Passage 159
  516. Passage 160
  517. Passage 163
  518. Passage 165
  519. Passage 167
  520. Passage 171
  521. Passage 176
  522. Passage 177
  523. Passage 178
  524. Passage 181
  525. Passage 192
  526. Passage 193
  527. Passage 205
  528. Passage 206
  529. Passage 213
  530. Passage 215
  531. Passage 216
  532. Passage 222
  533. Passage 223
  534. Passage 226
  535. Passage 229
  536. Passage 231
  537. Passage 232
  538. Passage 234
  539. Passage 241
  540. Passage 243
  541. Passage 246
  542. Passage 248
  543. Passage 251
  544. Passage 262
  545. Passage 267
  546. Passage 268
  547. Passage 274
  548. Passage 275
  549. Passage 282
  550. Passage 285
  551. Passage 286
  552. Passage 288
  553. Passage 290
  554. Passage 291
  555. Passage 292
  556. Passage 297
  557. Question 3
  558. Question 18
  559. Question 19
  560. Question 20
  561. Question 21
  562. Question 38
  563. Question 42
  564. Question 45
  565. Question 46
  566. Aloo Poha
  567. Shri Shishileshwara Temple (Shishila)
  568. Guli Guli Shankareshwara Swamy Temple (Shimoga)