Results for "number conversion"

Total results: 565

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