Results for "Nested If"

Total results: 1199

  1. Java Program to find area of circle
  2. Java Program to find area of square
  3. Java Program to find area of rectangle
  4. Java Program to find perimeter of circle
  5. Java Program to find perimeter of square
  6. Java Program to find perimeter of rectangle
  7. Java Program to read information about a student from the user and display the same with the use of classes and objects
  8. Java Program to Print Lower Triangle Matrix Excluding Principal Diagonal Matrix
  9. Java Program to Print Upper Triangle Matrix Excluding Principal Diagonal Matrix
  10. Java Program to Print Lower Triangle Matrix Including Principal Diagonal Matrix
  11. Java Program to Print Upper Triangle Matrix Including Principal Diagonal Matrix
  12. Java Program to find Sum of Lower Triangle Matrix Excluding Principal Diagonal Matrix
  13. Java Program to find Sum of Upper Triangle Matrix Excluding Principal Diagonal Matrix
  14. Java Program to find Sum of Lower Triangle Matrix Including Principal Diagonal Matrix
  15. Java Program to find Sum of Upper Triangle Matrix Including Principal Diagonal Matrix
  16. Java Program to Reverse a Number
  17. Java Program to Reverse a String
  18. Java Program to find maximum element in an array
  19. Java Program to find minimum element in an array
  20. Java Program to convert Kilometer to Miles
  21. Java Program to convert Miles to Kilometer
  22. Java Program to find fibonacci series of a number
  23. Java Program to find fibonacci series of a number using methods
  24. Java Program to find fibonacci series of a number using recursion
  25. Java Program example to demonstrate String charAt method
  26. Java Program example to demonstrate String compareTo method
  27. Java Program example to demonstrate String compareToIgnoreCase method
  28. Java Program example to demonstrate String contentEquals method
  29. Java Program example to demonstrate String concat method
  30. Java Program to demonstrate Boolean wrapper class
  31. Java Program to demonstrate Byte wrapper class
  32. Java Program to Create a File
  33. Java Program to Rename a File
  34. Java Program to show usage of Enum which prints the size of coffee mug
  35. Java Program to show usage of this pointer using Order Pizza Program
  36. Java Program to demonstrate packages
  37. Java Program to pick random value from enumerations
  38. Java Program to find area of different shapes using inheritance
  39. Java Program to count the occurrence of a number
  40. Java Program to calculate Salary of an Employee
  41. Java Program for Stack Simulation
  42. Java Program for Queue Simulation
  43. Java Program to demonstrate nested try block
  44. Java Program example to demonstrate variable length of arguments
  45. Java Program to demonstrate ArrayList
  46. Java Program to convert ArrayList to Array
  47. Java Program to create a user defined LinkedList class and store list of books and display
  48. Java Program to demonstrate stack class in Collection framework
  49. Java Swing Program to demonstrate Jlabel
  50. Java Swing Program to demonstrate JLabel with Text and Icon
  51. Java Swing Program to demonstrate JButton
  52. Java Swing Program to demonstrate JButton with Icon
  53. Java Swing Program to demonstrate JButton with Text and Icon
  54. Java Swing Program to demonstrate JCheckBox with Text
  55. Java Program to sort an array using Insertion Sort
  56. Java Program to find sum of array elements
  57. Java Program to find sum of array elements using methods
  58. Java Program to insert element to an array
  59. Java Program to insert element to an array at specified position
  60. Java Program to check if Integer element is present in an array
  61. Java Program to check if String element is present in an array
  62. Java Program to find average of array elements
  63. Java Program to find Median of array elements
  64. Java program to concatenate two arrays using array copy method
  65. Java program to concatenate two arrays using Collections
  66. Java program to concatenate two arrays using Stream API
  67. Java program to merge two arrays one after the other
  68. Java program to reverse ArrayList
  69. Java program to reverse array using Collections
  70. Java program to reverse array using for loop
  71. Java program to sort array using temporary variable
  72. Java program to sort string array in descending order using collections
  73. Java program to demonstrate super keyword
  74. Java program to reverse a string using recursion
  75. Java Program to add two binary numbers
  76. Java Program to add two binary numbers using ParseInt
  77. Java Program to subtract two binary numbers using ParseInt
  78. Java Program to divide two binary numbers using ParseInt
  79. Java Program to count Vowels and Consonants in a given string
  80. Java Program to count digits and white spaces in a given string
  81. Java Program to check for Duplicate Characters
  82. Java Program to print all substrings of a given string
  83. Java Program to sort the given string Alphabetically using Comparator
  84. Java Program to sort the given string in reverse order using Comparator
  85. Java Program to add two matrices
  86. Java Program to subtract two matrices
  87. Java Program to multiply two matrices
  88. Python Program to initialize different datatypes and print
  89. Python Program to print different formats of string
  90. Python Program to find difference of two integer numbers
  91. Python Program to find division of two integer numbers
  92. Python Program to find biggest of two integer numbers
  93. Python Program to find biggest of three numbers
  94. Python Program to find swap two numbers without temp variable (Multiplication and Division Method)
  95. Python Program to check whether a given number is an Armstrong Number or not
  96. Python Program to check whether a given number is an Armstrong Number or not using lambda and list
  97. Python Program to reverse an integer number
  98. Python Program to find sum of digits
  99. Python Program to find maximum element in an array
  100. Python Program to find fibonacci series
  101. Python Program to sort an array using Insertion Sort
  102. Python Program to check if a given number is Prime or not
  103. C Program to initialize different datatypes and print the same on terminal
  104. C Program to show different formatting in output using printf
  105. C Program to convert a value into different formats using format specifiers
  106. C Program to find the difference of two integer numbers
  107. C Program to find the division of two integer numbers
  108. C Program to perform arithmetic operations using floating point variables
  109. C Program to check if a triangle is Isosceles Equilateral or Scalene
  110. C Program to swap two variables using temporary variable
  111. C Program to swap two variables by shifting bits
  112. C Program to find profit or loss
  113. C Program to find positive negative or zero using Conditional Operator
  114. C Program to find positive negative or zero using If Else statement
  115. C Program to find odd or even using Conditional Operator
  116. C Program to find odd or even using If Else statement
  117. C Program to find odd or even using goto statement
  118. C Program to check whether a given year is a leap year or not
  119. C Program to check whether a given number is a Perfect Number or not
  120. C Program to check whether a given number is an Armstrong Number or not
  121. C Program to generate Armstrong number within a given range
  122. C Program to check whether a given number is an Armstrong Number or not using user defined power function
  123. C Program to check whether a given number is an Armstrong Number or not using in built power function
  124. C Program to find biggest of two numbers using If Else statement
  125. C Program to find biggest of three numbers using If Else statement
  126. C Program to find biggest of three numbers using nested If Else statement
  127. C Program to find biggest of three numbers using Binary Minus
  128. C Program to find smallest of three numbers using If Else statement
  129. C Program to find smallest of three numbers using nested If Else statement
  130. C Program to calculate grade based on percentage using If Else statement
  131. C Program to calculate grade based on percentage using switch statement
  132. C Program for simple calculator to perform addition subtraction multiplication and division based on the symbol using if else ladder statement
  133. C Program for simple calculator to perform addition subtraction multiplication and division based on the symbol using switch statement
  134. C Program to find roots of a quadratic equation using If Else statement
  135. C Program to identify a character or a digit using ASCII values
  136. C Program to identify a character digit or special character using Built In functions
  137. C Program to identify a character or a digit using Built In functions
  138. C Program to convert lower case alphabet to upper case and upper case to lower case using ASCII values
  139. C Program to convert lower case alphabet to upper case and upper case to lower case using Built In functions
  140. C Program to generate Fibonacci Series for first n natural numbers
  141. C Program to check whether a given integer number is palindrome or not
  142. C Program to print first n prime numbers
  143. C Program to print prime numbers within given range
  144. C Program to check if a number is prime number or not
  145. C Program to reverse an integer number using for
  146. C Program to print random number within range
  147. C Program to check anagram by checking frequency
  148. C Program to check anagram by sorting strings
  149. C Program to find substring of a string
  150. C Program to search occurrence of character in String
  151. C Program to sort a set of strings alphabetically
  152. C Program to find length of a string without using built in functions
  153. C Program to find if a string is palindrome or not without built in functions
  154. C Program to compare two strings using built in functions
  155. C Program to compare two strings without using built in functions
  156. C Program to find sum and percentage of subjects
  157. C Program to find sum of two numbers using command line arguments
  158. C Program to print first n odd numbers
  159. C Program to print first n even numbers
  160. C Program to print n odd numbers within range
  161. C Program to print n even numbers within range
  162. C Program to print first n odd and even numbers Type 1
  163. C Program to print first n odd and even numbers Type 2
  164. C Program to find the sum of first n odd numbers using for loop
  165. C Program to print the sum of n odd numbers using while
  166. C Program to print the sum of n odd numbers using do while
  167. C Program to print the sum of n odd numbers within range using for
  168. C Program to print the sum of n odd numbers within range using while
  169. C Program to print the sum of n odd numbers within range using do while
  170. C Program to find the sum of first n even numbers using for loop
  171. C Program to print the sum of n even numbers using while
  172. C Program to print the sum of n even numbers using do while
  173. C Program to print the sum of n even numbers within range using for
  174. C Program to print the sum of n even numbers within range using while
  175. C Program to print the sum of n even numbers within range using do while
  176. C Program to find the sum of first n odd and even numbers using for
  177. C Program to print the sum of n odd and even numbers using while
  178. C Program to print the sum of n odd and even numbers using do while
  179. C Program to print the sum of n odd and even numbers within range using for
  180. C Program to print the sum of n odd and even numbers within range using while
  181. C Program to print the sum of n odd and even numbers within range using do while
  182. C Program to convert decimal to hexadecimal number
  183. C Program to convert octal to hexadecimal number
  184. C Program to insert an element into specified location of an array
  185. C Program to delete an element from a specified location of an array
  186. C Program to delete duplicate elements from an array
  187. C Program to find maximum element in an array without sorting
  188. C Program to find minimum element in an array without sorting
  189. C Program to search a key element using Binary Search method
  190. C Program to search a key element using Binary Search using Functions
  191. C Program to search a key element using Linear Search method
  192. C Program to search a key element using Linear Search using Functions
  193. C Program to subtract two matrix
  194. C Program to find sum of lower triangle matrix
  195. C Program to find sum of upper triangle matrix
  196. C Program to add principal diagonal elements in a matrix
  197. C Program to check if the entered matrix is magic square or not
  198. C Program to implement basic operation of Stacks using global variables
  199. C Program to implement basic operation of Stacks using arrays and pointers
  200. C Program to implement basic operation of Stacks using structures
  201. C Program to implement Stacks using Singly Linked List
  202. C Program to implement Stacks using Circular Linked List
  203. C Program to convert a valid Infix expression to postfix using Stacks
  204. C Program to convert a valid Infix expression to postfix using Structures
  205. C Program to evaluate a valid Postfix expression using Stacks
  206. C Program to find sum of n natural numbers using recursion
  207. C Program to find the factorial of a given number using recursion
  208. C Program to generate fibonacci series using recursion
  209. C Program to find nth fibonacci number using recursion
  210. C Program to search a key element using linear search using recursion
  211. C Program to search a key element using binary search using recursion
  212. C Program to implement Tower of Hanoi
  213. C Program to implement basic operations of Linear Queue using arrays and pointers
  214. C Program to implement basic operations of Circular Queue using arrays and pointers
  215. C Program to implement Priority Queues using array of structures
  216. C Program to implement Singly Linked List to insert and delete a node from front and display the contents of the Singly List
  217. C Program to implement Singly Linked List to insert and delete a node from rear and display the contents of the Singly List
  218. C Program to implement Singly Linked List to insert and delete a node at a specified position and display the contents of the Singly List
  219. C Program to implement Singly Linked List to insert and delete a node from front and display the contents of the Singly List using Header Node
  220. C Program to implement Singly Linked List to insert and delete a node from rear and display the contents of the Singly List using Header Node
  221. C Program to implement Singly Linked List to insert and delete a node from position and display the contents of the Singly List using Header Node
  222. C Program to implement Linear Queue using Singly Linked List
  223. C Program to implement Circular Linked List to insert and delete a node from front and display the contents of the Circular List
  224. C Program to implement Circular Linked List to insert and delete a node from rear and display the contents of the Circular List
  225. C Program to implement Circular Linked List to insert and delete a node from front and display the contents of the Circular List using Header Node
  226. C Program to implement Doubly Linked List to insert and delete a node from front and display the contents of the Doubly Linked List
  227. C Program to implement Doubly Linked List to insert and delete a node from rear and display the contents of the Doubly Linked List
  228. C Program to reverse a digit using recursion
  229. C Program to print prime numbers within a range using recursion
  230. C Program to check prime numbers using recursion
  231. C Program to sort an array using Bubble Sort
  232. C Program to sort an array using Bubble Sort using functions
  233. C Program to sort an array using Selection Sort
  234. C Program to sort an array using Merge Sort
  235. C Program to sort an array using Shell Sort
  236. C Program to implement 01 Knapsack problem
  237. C Program to implement 01 Knapsack problem using recursion
  238. C Program to implement Fractional Knapsack problem using Greedy Method
  239. C Program to implement Prim's Algorithm
  240. C Program to solve N Queens using greedy method
  241. C Program to implement Warshall's algorithm
  242. C Program to count vowels and consonents in a given sentence
  243. C Program to print if the architecture is supporting big endian or little endian
  244. C Program to read a text file
  245. C Program to read and print contents of a file using static memory allocation
  246. C Program to read and print contents of a file using dynamic memory allocation
  247. C Program to convert contents of a file to upper case
  248. C Program to copy contents from file to another file
  249. C Program to create a child process using fork system call and print PID and PPID of the processes
  250. C Program to print small alphabets in right angled triangle pattern in series
  251. C Program to print capital alphabets in right angled triangle pattern in series
  252. C Program to print number a Right angled Triangle pattern
  253. C Program to print first n natural numbers in a Right angled Triangle pattern
  254. C Program to print even numbers in a Right angled Triangle pattern
  255. C Program to print prime numbers in a Right angled Triangle pattern
  256. C Program to print binary numbers in a Right angled Triangle pattern
  257. C Program to print numbers in rows and columns of Quadrangle pattern
  258. C Program to print numbers in rows and columns of Quadrangle pattern in reverse order
  259. C Program to print Equilateral Triangle in a pyramid star pattern
  260. C Program to print Hollow Right angled Triangle in a pyramid star pattern Type 1
  261. C Program to print Hollow Right angled Triangle in a pyramid star pattern Type 2
  262. C Program to print Hollow Inverted Right angled Triangle in a pyramid star pattern Type 1
  263. C Program to print Hollow Inverted Right angled Triangle in a pyramid star pattern Type 2
  264. C Program to print Hollow Rhombus in a star pattern Type 2
  265. C Program to print Hollow Square in a star pattern
  266. C Program to print Hollow Rectangle in a star pattern
  267. C Program to print Left Arrow in a star pattern Type 1
  268. C Program to print Half Left Diamond in a star pattern
  269. C Program to print Half Right Diamond in a star pattern
  270. C Program to print Alphabet K in a star pattern
  271. C Program to print Alphabet X in a star pattern
  272. C Program to print Symbol Plus in a star pattern
  273. C++ Program to initialize different datatypes and print the same on terminal
  274. C++ Program to find the difference of two integer numbers
  275. C++ Program to find the division of two integer numbers
  276. C++ Program to find the sum of two integer numbers using classes and objects
  277. C++ Program to find biggest of two numbers
  278. C++ Program to find biggest of three numbers
  279. C++ Program to sort an array using Merge Sort
  280. C++ Program to demonstrate sizeof operator
  281. C++ Program to demonstrate usage of reference types
  282. C++ Program for simple calculator to perform addition subtraction multiplication and division based on the symbol using switch statement
  283. C++ Program to demonstrate constructor overloading
  284. C++ Program to generate fibonacci series
  285. C++ Program to generate fibonacci series using class
  286. C++ Program to check if entered number is prime or not using classes
  287. C++ Program to convert decimal to hexadecimal
  288. C++ Program to reverse a string using while
  289. C++ Program to find odd or even using If Else statement
  290. C++ Program to add two complex numbers
  291. C++ Program to print n even numbers within range
  292. C++ Program to print n odd numbers within range
  293. C++ Program to print the sum of n even numbers using while
  294. C++ Program to print the sum of n even numbers using do while
  295. C++ Program to print the sum of n even numbers within range using for
  296. C++ Program to print the sum of n even numbers within range using while
  297. C++ Program to print the sum of n even numbers within range using do while
  298. C++ Program to print the sum of n odd numbers using while
  299. C++ Program to print the sum of n odd numbers using do while
  300. C++ Program to print the sum of n odd numbers within range using for
  301. C++ Program to print the sum of n odd numbers within range using while
  302. C++ Program to print the sum of n odd numbers within range using do while
  303. C++ Program to print the sum of n odd and even numbers using while
  304. C++ Program to print the sum of n odd and even numbers using do while
  305. C++ Program to print the sum of n odd and even numbers within range using for
  306. C++ Program to print the sum of n odd and even numbers within range using while
  307. C++ Program to print the sum of n odd and even numbers within range using do while
  308. C++ Program to implement Stacks
  309. C# Program to subtract two numbers
  310. C# Program to divide two numbers
  311. C# Program to sort an array using Insertion Sort
  312. C# program to print n Even Natural Numbers
  313. C# program to print n Odd Natural Numbers
  314. C# program to find Sum of first n Even Natural Numbers
  315. C# program to find Sum of first n Odd Natural Numbers
  316. C# program to check Even or Odd Number
  317. C# program to check Positive or Negative Number
  318. C# program to Compare Two Numbers
  319. C# program to print Odd Even Series
  320. Rust Program to Subtract two Numbers
  321. Rust Program to Subtract two Numbers from user input
  322. Rust Program to read the integer from user input 3 variations
  323. GO Lang Program to subtract two numbers
  324. GO Lang Program to find biggest of two numbers
  325. JavaScript Program to display an alert box
  326. JavaScript Program to display confirm box
  327. JavaScript Program to display prompt for user to enter data
  328. JavaScript Program to divide of two numbers
  329. JavaScript Program to print Fibonacci series
  330. JavaScript Program to find if a number is palindrome or not
  331. PHP Program to print Hello World using print
  332. PHP Program to display user name
  333. PHP Program to get client IP address
  334. Ruby Program to find odd or even number
  335. Ruby Program to find factorial of a number
  336. Ruby Program to subtract two numbers
  337. R Program to generate random numbers using runif
  338. R Program to subtract two numbers
  339. Shell Script to find biggest of two numbers
  340. Shell Script to find biggest of three numbers using command line arguments
  341. Shell Script to find biggest of three numbers using nested if
  342. Shell Script to find largest of three numbers using If Else statement
  343. Shell Script to print command line arguments Type 1
  344. Shell Script to print command line arguments Type 2
  345. Shell Script to reverse command line arguments
  346. Shell Script to print command line arguments in reverse
  347. Shell Script to check if a string is palindrome or not
  348. Shell Script to find if a number is positive or negative or zero
  349. Shell Script to print login information
  350. Shell Script to find largest file in a directory
  351. Shell Script to execute different commands on UNIX or Linux using script
  352. Shell Script for simple calculator to perform addition subtraction multiplication and division based on command line arguments
  353. Shell Script for simple calculator to perform addition subtraction multiplication and division based on the symbol using case statements
  354. ADA Program to find the difference of two integer number
  355. Haskell Program to subtract two numbers
  356. Haskell Program to divide two numbers
  357. Haskell Program to convert string to lower case
  358. Haskell Program to convert string to upper case
  359. Julia Program to print ASCII Values
  360. Julia Program to subtract two numbers
  361. Julia Program to check whether given number is odd or even
  362. Julia Program to check if a number is prime number or not
  363. Julia Program to print n odd numbers
  364. Julia Program to print n even numbers
  365. Julia Program to print first n prime numbers
  366. Lua Program to subtract two numbers
  367. Swift Program to print Hello World String on the console
  368. Swift Program to print integer value
  369. Swift Program to print floating point value
  370. Swift Program to print string value
  371. Swift Program to demonstrate typewrapping integer value
  372. Swift Program to print Fibonacci Series for first n natural numbers
  373. Swift Program to read integer from user and print (Type 1)
  374. Swift Program to read integer from user and print (Type 2)
  375. Swift Program to read integer from user and print (Type 3)
  376. Swift Program to find the sum of two integer numbers
  377. Swift Program to find the difference of two integer numbers
  378. Swift Program to find the product of two integer numbers
  379. Swift Program to find the quotient of two integer numbers
  380. Swift Program to print information of a person using structures
  381. Swift Program to print information of a student using classes
  382. Swift Program to demonstrate different constants
  383. F# program to Subtract two numbers
  384. F# program to Subtract two numbers using Functions
  385. F# program to Divide two numbers
  386. F# program to find Modulus of two numbers
  387. F# program to print the sum of first n Natural Numbers
  388. F# program to print first n Prime Numbers using Sequence
  389. F# program to perform Arithmetic Operations
  390. F# program to perform Boolean Operations
  391. F# program to check Odd or Even Number
  392. F# program to check Positive or Negative Number
  393. F# program to check Palindrome Number
  394. F# program to compare two numbers
  395. F# program to compare two numbers using Functions
  396. F# program to find Factorial of a Number
  397. F# program to check Grades using elif
  398. F# program to find GCD of two Numbers
  399. Introduction to Java
  400. Java Virtual Machine (JVM) and Bytecode
  401. Features of Java
  402. Setting up the Java Development Kit (JDK)
  403. Difference Between Oracle JDK and OpenJDK
  404. Integrated Development Environments (IDEs) for Java
  405. Java Keywords
  406. Java identifiers
  407. Lists in Python
  408. Strings in Python
  409. Tuples in Python
  410. Sets in Python
  411. Dictionary in Python
  412. File Handling in Python
  413. Introduction to Lua
  414. Installing Lua
  415. Passage 1
  416. Passage 2
  417. Passage 3
  418. Passage 4
  419. Passage 5
  420. Passage 6
  421. Passage 7
  422. Passage 8
  423. Passage 9
  424. Passage 10
  425. Passage 11
  426. Passage 12
  427. Passage 13
  428. Passage 14
  429. Passage 15
  430. Passage 16
  431. Passage 17
  432. Passage 18
  433. Passage 19
  434. Passage 20
  435. Passage 21
  436. Passage 22
  437. Passage 23
  438. Passage 24
  439. Passage 25
  440. Passage 26
  441. Passage 27
  442. Passage 28
  443. Passage 29
  444. Passage 30
  445. Passage 31
  446. Passage 32
  447. Passage 33
  448. Passage 34
  449. Passage 35
  450. Passage 36
  451. Passage 37
  452. Passage 38
  453. Passage 39
  454. Passage 40
  455. Passage 41
  456. Passage 42
  457. Passage 43
  458. Passage 44
  459. Passage 45
  460. Passage 46
  461. Passage 47
  462. Passage 48
  463. Passage 49
  464. Passage 50
  465. Passage 51
  466. Passage 52
  467. Passage 53
  468. Passage 54
  469. Passage 55
  470. Passage 56
  471. Passage 57
  472. Passage 58
  473. Passage 59
  474. Passage 60
  475. Passage 61
  476. Passage 62
  477. Passage 63
  478. Passage 64
  479. Passage 65
  480. Passage 66
  481. Passage 67
  482. Passage 68
  483. Passage 69
  484. Passage 70
  485. Passage 71
  486. Passage 72
  487. Passage 73
  488. Passage 74
  489. Passage 75
  490. Passage 76
  491. Passage 77
  492. Passage 78
  493. Passage 79
  494. Passage 80
  495. Passage 81
  496. Passage 82
  497. Passage 83
  498. Passage 84
  499. Passage 85
  500. Passage 86
  501. Passage 87
  502. Passage 88
  503. Passage 89
  504. Passage 90
  505. Passage 91
  506. Passage 92
  507. Passage 93
  508. Passage 94
  509. Passage 95
  510. Passage 96
  511. Passage 97
  512. Passage 98
  513. Passage 99
  514. Passage 100
  515. Passage 101
  516. Passage 102
  517. Passage 103
  518. Passage 104
  519. Passage 105
  520. Passage 106
  521. Passage 107
  522. Passage 108
  523. Passage 109
  524. Passage 110
  525. Passage 111
  526. Passage 112
  527. Passage 113
  528. Passage 114
  529. Passage 115
  530. Passage 116
  531. Passage 117
  532. Passage 118
  533. Passage 119
  534. Passage 120
  535. Passage 121
  536. Passage 122
  537. Passage 123
  538. Passage 124
  539. Passage 125
  540. Passage 126
  541. Passage 127
  542. Passage 128
  543. Passage 129
  544. Passage 130
  545. Passage 131
  546. Passage 132
  547. Passage 133
  548. Passage 134
  549. Passage 135
  550. Passage 136
  551. Passage 137
  552. Passage 138
  553. Passage 139
  554. Passage 140
  555. Passage 141
  556. Passage 142
  557. Passage 143
  558. Passage 144
  559. Passage 145
  560. Passage 146
  561. Passage 147
  562. Passage 148
  563. Passage 149
  564. Passage 150
  565. Passage 151
  566. Passage 152
  567. Passage 153
  568. Passage 154
  569. Passage 155
  570. Passage 156
  571. Passage 157
  572. Passage 158
  573. Passage 159
  574. Passage 160
  575. Passage 161
  576. Passage 162
  577. Passage 163
  578. Passage 164
  579. Passage 165
  580. Passage 166
  581. Passage 167
  582. Passage 168
  583. Passage 169
  584. Passage 170
  585. Passage 171
  586. Passage 172
  587. Passage 173
  588. Passage 174
  589. Passage 175
  590. Passage 176
  591. Passage 177
  592. Passage 178
  593. Passage 179
  594. Passage 180
  595. Passage 181
  596. Passage 182
  597. Passage 183
  598. Passage 184
  599. Passage 185
  600. Passage 186
  601. Passage 187
  602. Passage 188
  603. Passage 189
  604. Passage 190
  605. Passage 191
  606. Passage 192
  607. Passage 193
  608. Passage 194
  609. Passage 195
  610. Passage 196
  611. Passage 197
  612. Passage 198
  613. Passage 199
  614. Passage 200
  615. Passage 201
  616. Passage 202
  617. Passage 203
  618. Passage 204
  619. Passage 205
  620. Passage 206
  621. Passage 207
  622. Passage 208
  623. Passage 209
  624. Passage 210
  625. Passage 211
  626. Passage 212
  627. Passage 213
  628. Passage 214
  629. Passage 215
  630. Passage 216
  631. Passage 217
  632. Passage 218
  633. Passage 219
  634. Passage 220
  635. Passage 221
  636. Passage 222
  637. Passage 223
  638. Passage 224
  639. Passage 225
  640. Passage 226
  641. Passage 227
  642. Passage 228
  643. Passage 229
  644. Passage 230
  645. Passage 231
  646. Passage 232
  647. Passage 233
  648. Passage 234
  649. Passage 235
  650. Passage 236
  651. Passage 237
  652. Passage 238
  653. Passage 239
  654. Passage 240
  655. Passage 241
  656. Passage 242
  657. Passage 243
  658. Passage 244
  659. Passage 245
  660. Passage 246
  661. Passage 247
  662. Passage 248
  663. Passage 249
  664. Passage 250
  665. Passage 251
  666. Passage 252
  667. Passage 253
  668. Passage 254
  669. Passage 255
  670. Passage 256
  671. Passage 257
  672. Passage 258
  673. Passage 259
  674. Passage 260
  675. Passage 261
  676. Passage 262
  677. Passage 263
  678. Passage 264
  679. Passage 265
  680. Passage 266
  681. Passage 267
  682. Passage 268
  683. Passage 269
  684. Passage 270
  685. Passage 271
  686. Passage 272
  687. Passage 273
  688. Passage 274
  689. Passage 275
  690. Passage 276
  691. Passage 277
  692. Passage 278
  693. Passage 279
  694. Passage 280
  695. Passage 281
  696. Passage 282
  697. Passage 283
  698. Passage 284
  699. Passage 285
  700. Passage 286
  701. Passage 287
  702. Passage 288
  703. Passage 289
  704. Passage 290
  705. Passage 291
  706. Passage 292
  707. Passage 293
  708. Passage 294
  709. Passage 295
  710. Passage 296
  711. Passage 297
  712. Passage 298
  713. Passage 299
  714. Passage 300
  715. Question 1
  716. Question 2
  717. Question 3
  718. Question 4
  719. Question 5
  720. Question 6
  721. Question 7
  722. Question 8
  723. Question 9
  724. Question 10
  725. Question 11
  726. Question 12
  727. Question 13
  728. Question 14
  729. Question 15
  730. Question 16
  731. Question 17
  732. Question 18
  733. Question 19
  734. Question 20
  735. Question 21
  736. Question 22
  737. Question 23
  738. Question 24
  739. Question 25
  740. Question 26
  741. Question 27
  742. Question 28
  743. Question 29
  744. Question 30
  745. Question 31
  746. Question 32
  747. Question 33
  748. Question 34
  749. Question 35
  750. Question 36
  751. Question 37
  752. Question 38
  753. Question 39
  754. Question 40
  755. Question 41
  756. Question 42
  757. Question 43
  758. Question 44
  759. Question 45
  760. Question 46
  761. Question 47
  762. Question 48
  763. Ganesha Ashtottara Shatanamavali English
  764. Ganesha Ashtottara Shatanamavali Kannada
  765. Ganesha Ashtottara Shatanamavali Telugu
  766. Ganesha Ashtottara Shatanamavali Hindi
  767. Ganesha Ashtottara Shatanamavali Sanskrit
  768. Ganesha Ashtottara Shatanamavali Tamil
  769. Vinayaka Ashtottara Shatanamavali English
  770. Vinayaka Ashtottara Shatanamavali Kannada
  771. Vinayaka Ashtottara Shatanamavali Telugu
  772. Vinayaka Ashtottara Shatanamavali Hindi
  773. Vinayaka Ashtottara Shatanamavali Sanskrit
  774. Vinayaka Ashtottara Shatanamavali Tamil
  775. Ganapati Gakara Ashtottara Shatanamavali English
  776. Ganapati Gakara Ashtottara Shatanamavali Kannada
  777. Ganapati Gakara Ashtottara Shatanamavali Telugu
  778. Ganapati Gakara Ashtottara Shatanamavali Hindi
  779. Ganapati Gakara Ashtottara Shatanamavali Sanskrit
  780. Ganapati Gakara Ashtottara Shatanamavali Tamil
  781. Sri Subramanya Ashtottara Shatanamavali English
  782. Sri Subramanya Ashtottara Shatanamavali Kannada
  783. Sri Subramanya Ashtottara Shatanamavali Telugu
  784. Sri Subramanya Ashtottara Shatanamavali Hindi
  785. Sri Subramanya Ashtottara Shatanamavali Sanskrit
  786. Sri Subramanya Ashtottara Shatanamavali Tamil
  787. Shiva Ashtottara Shatanamavali English
  788. Shiva Ashtottara Shatanamavali Kannada
  789. Shiva Ashtottara Shatanamavali Telugu
  790. Shiva Ashtottara Shatanamavali Hindi
  791. Shiva Ashtottara Shatanamavali Sanskrit
  792. Shiva Ashtottara Shatanamavali Tamil
  793. Satyanarayana Ashtottara Shatanamavali (Type 1) English
  794. Satyanarayana Ashtottara Shatanamavali (Type 1) Kannada
  795. Satyanarayana Ashtottara Shatanamavali (Type 1) Telugu
  796. Satyanarayana Ashtottara Shatanamavali (Type 1) Hindi
  797. Satyanarayana Ashtottara Shatanamavali (Type 1) Sanskrit
  798. Satyanarayana Ashtottara Shatanamavali (Type 1) Tamil
  799. Sri Durga Ashtottara Shatanamavali English
  800. Sri Durga Ashtottara Shatanamavali Kannada
  801. Sri Durga Ashtottara Shatanamavali Telugu
  802. Sri Durga Ashtottara Shatanamavali Hindi
  803. Sri Durga Ashtottara Shatanamavali Sanskrit
  804. Sri Durga Ashtottara Shatanamavali Tamil
  805. Sri Krishna Ashtottara Shatanamavali English
  806. Sri Krishna Ashtottara Shatanamavali Kannada
  807. Sri Krishna Ashtottara Shatanamavali Telugu
  808. Sri Krishna Ashtottara Shatanamavali Hindi
  809. Sri Krishna Ashtottara Shatanamavali Sanskrit
  810. Sri Krishna Ashtottara Shatanamavali Tamil
  811. Sri Lakshmi Ashtottara Shatanamavali English
  812. Sri Lakshmi Ashtottara Shatanamavali Kannada
  813. Sri Lakshmi Ashtottara Shatanamavali Telugu
  814. Sri Lakshmi Ashtottara Shatanamavali Hindi
  815. Sri Lakshmi Ashtottara Shatanamavali Sanskrit
  816. Sri Lakshmi Ashtottara Shatanamavali Tamil
  817. Venkateshwara Ashtottara Shatanamavali English
  818. Venkateshwara Ashtottara Shatanamavali Kannada
  819. Venkateshwara Ashtottara Shatanamavali Telugu
  820. Venkateshwara Ashtottara Shatanamavali Hindi
  821. Venkateshwara Ashtottara Shatanamavali Sanskrit
  822. Venkateshwara Ashtottara Shatanamavali Tamil
  823. Batuka Bhairava Ashtottara Shatanamavali English
  824. Batuka Bhairava Ashtottara Shatanamavali Kannada
  825. Batuka Bhairava Ashtottara Shatanamavali Telugu
  826. Batuka Bhairava Ashtottara Shatanamavali Hindi
  827. Batuka Bhairava Ashtottara Shatanamavali Sanskrit
  828. Batuka Bhairava Ashtottara Shatanamavali Tamil
  829. Sri Lakshmi Narasimha Ashtottara Shatanamavali English
  830. Sri Lakshmi Narasimha Ashtottara Shatanamavali Kannada
  831. Sri Lakshmi Narasimha Ashtottara Shatanamavali Telugu
  832. Sri Lakshmi Narasimha Ashtottara Shatanamavali Hindi
  833. Sri Lakshmi Narasimha Ashtottara Shatanamavali Sanskrit
  834. Sri Lakshmi Narasimha Ashtottara Shatanamavali Tamil
  835. Sri Kali Ashtottara Shatanamavali English
  836. Sri Kali Ashtottara Shatanamavali Kannada
  837. Sri Kali Ashtottara Shatanamavali Telugu
  838. Sri Kali Ashtottara Shatanamavali Hindi
  839. Sri Kali Ashtottara Shatanamavali Sanskrit
  840. Sri Kali Ashtottara Shatanamavali Tamil
  841. Sri Saraswati Ashtottara Shatanamavali English
  842. Sri Saraswati Ashtottara Shatanamavali Kannada
  843. Sri Saraswati Ashtottara Shatanamavali Telugu
  844. Sri Saraswati Ashtottara Shatanamavali Hindi
  845. Sri Saraswati Ashtottara Shatanamavali Sanskrit
  846. Sri Saraswati Ashtottara Shatanamavali Tamil
  847. Sri Mangala Gowri Ashtottara Shatanamavali English
  848. Sri Mangala Gowri Ashtottara Shatanamavali Kannada
  849. Sri Mangala Gowri Ashtottara Shatanamavali Telugu
  850. Sri Mangala Gowri Ashtottara Shatanamavali Hindi
  851. Sri Mangala Gowri Ashtottara Shatanamavali Sanskrit
  852. Sri Mangala Gowri Ashtottara Shatanamavali Tamil
  853. Sri Rama Ashtottara Shatanamavali English
  854. Sri Rama Ashtottara Shatanamavali Kannada
  855. Sri Rama Ashtottara Shatanamavali Telugu
  856. Sri Rama Ashtottara Shatanamavali Hindi
  857. Sri Rama Ashtottara Shatanamavali Sanskrit
  858. Sri Rama Ashtottara Shatanamavali Tamil
  859. Sri Sita Ashtottara Shatanamavali (Type 1) English
  860. Sri Sita Ashtottara Shatanamavali (Type 1) Kannada
  861. Sri Sita Ashtottara Shatanamavali (Type 1) Telugu
  862. Sri Sita Ashtottara Shatanamavali (Type 1) Hindi
  863. Sri Sita Ashtottara Shatanamavali (Type 1) Sanskrit
  864. Sri Sita Ashtottara Shatanamavali (Type 1) Tamil
  865. Sri Sita Ashtottara Shatanamavali (Type 2) English
  866. Sri Sita Ashtottara Shatanamavali (Type 2) Kannada
  867. Sri Sita Ashtottara Shatanamavali (Type 2) Telugu
  868. Sri Sita Ashtottara Shatanamavali (Type 2) Hindi
  869. Sri Sita Ashtottara Shatanamavali (Type 2) Sanskrit
  870. Sri Sita Ashtottara Shatanamavali (Type 2) Tamil
  871. Sri Anjaneya Ashtottara Shatanamavali English
  872. Sri Anjaneya Ashtottara Shatanamavali Kannada
  873. Sri Anjaneya Ashtottara Shatanamavali Telugu
  874. Sri Anjaneya Ashtottara Shatanamavali Hindi
  875. Sri Anjaneya Ashtottara Shatanamavali Sanskrit
  876. Sri Anjaneya Ashtottara Shatanamavali Tamil
  877. Surya Ashtottara Shatanamavali English
  878. Surya Ashtottara Shatanamavali Kannada
  879. Surya Ashtottara Shatanamavali Telugu
  880. Surya Ashtottara Shatanamavali Hindi
  881. Surya Ashtottara Shatanamavali Sanskrit
  882. Surya Ashtottara Shatanamavali Tamil
  883. Chandra Ashtottara Shatanamavali English
  884. Chandra Ashtottara Shatanamavali Kannada
  885. Chandra Ashtottara Shatanamavali Telugu
  886. Chandra Ashtottara Shatanamavali Hindi
  887. Chandra Ashtottara Shatanamavali Sanskrit
  888. Chandra Ashtottara Shatanamavali Tamil
  889. Angaraka Ashtottara Shatanamavali English
  890. Angaraka Ashtottara Shatanamavali Kannada
  891. Angaraka Ashtottara Shatanamavali Telugu
  892. Angaraka Ashtottara Shatanamavali Hindi
  893. Angaraka Ashtottara Shatanamavali Sanskrit
  894. Angaraka Ashtottara Shatanamavali Tamil
  895. Budha Ashtottara Shatanamavali English
  896. Budha Ashtottara Shatanamavali Kannada
  897. Budha Ashtottara Shatanamavali Telugu
  898. Budha Ashtottara Shatanamavali Hindi
  899. Budha Ashtottara Shatanamavali Sanskrit
  900. Budha Ashtottara Shatanamavali Tamil
  901. Bruhaspati Ashtottara Shatanamavali English
  902. Bruhaspati Ashtottara Shatanamavali Kannada
  903. Bruhaspati Ashtottara Shatanamavali Telugu
  904. Bruhaspati Ashtottara Shatanamavali Hindi
  905. Bruhaspati Ashtottara Shatanamavali Sanskrit
  906. Bruhaspati Ashtottara Shatanamavali Tamil
  907. Shukra Ashtottara Shatanamavali English
  908. Shukra Ashtottara Shatanamavali Kannada
  909. Shukra Ashtottara Shatanamavali Telugu
  910. Shukra Ashtottara Shatanamavali Hindi
  911. Shukra Ashtottara Shatanamavali Sanskrit
  912. Shukra Ashtottara Shatanamavali Tamil
  913. Shani Ashtottara Shatanamavali English
  914. Shani Ashtottara Shatanamavali Kannada
  915. Shani Ashtottara Shatanamavali Telugu
  916. Shani Ashtottara Shatanamavali Hindi
  917. Shani Ashtottara Shatanamavali Sanskrit
  918. Shani Ashtottara Shatanamavali Tamil
  919. Rahu Ashtottara Shatanamavali English
  920. Rahu Ashtottara Shatanamavali Kannada
  921. Rahu Ashtottara Shatanamavali Telugu
  922. Rahu Ashtottara Shatanamavali Hindi
  923. Rahu Ashtottara Shatanamavali Sanskrit
  924. Rahu Ashtottara Shatanamavali Tamil
  925. Ketu Ashtottara Shatanamavali English
  926. Ketu Ashtottara Shatanamavali Kannada
  927. Ketu Ashtottara Shatanamavali Telugu
  928. Ketu Ashtottara Shatanamavali Hindi
  929. Ketu Ashtottara Shatanamavali Sanskrit
  930. Ketu Ashtottara Shatanamavali Tamil
  931. Dattatreya Ashtottara Shatanamavali English
  932. Dattatreya Ashtottara Shatanamavali Kannada
  933. Dattatreya Ashtottara Shatanamavali Telugu
  934. Dattatreya Ashtottara Shatanamavali Hindi
  935. Dattatreya Ashtottara Shatanamavali Sanskrit
  936. Dattatreya Ashtottara Shatanamavali Tamil
  937. Ayyappa Ashtottara Shatanamavali English
  938. Ayyappa Ashtottara Shatanamavali Kannada
  939. Ayyappa Ashtottara Shatanamavali Telugu
  940. Ayyappa Ashtottara Shatanamavali Hindi
  941. Ayyappa Ashtottara Shatanamavali Sanskrit
  942. Ananta Padmanabha Ashtottara Shatanamavali English
  943. Ananta Padmanabha Ashtottara Shatanamavali Kannada
  944. Ananta Padmanabha Ashtottara Shatanamavali Telugu
  945. Ananta Padmanabha Ashtottara Shatanamavali Hindi
  946. Ananta Padmanabha Ashtottara Shatanamavali Sanskrit
  947. Gayatri Ashtottara Shatanamavali (Type 1) English
  948. Gayatri Ashtottara Shatanamavali (Type 1) Kannada
  949. Gayatri Ashtottara Shatanamavali (Type 1) Telugu
  950. Gayatri Ashtottara Shatanamavali (Type 1) Hindi
  951. Gayatri Ashtottara Shatanamavali (Type 1) Sanskrit
  952. Gayatri Ashtottara Shatanamavali (Type 2) English
  953. Gayatri Ashtottara Shatanamavali (Type 2) Kannada
  954. Gayatri Ashtottara Shatanamavali (Type 2) Telugu
  955. Gayatri Ashtottara Shatanamavali (Type 2) Hindi
  956. Gayatri Ashtottara Shatanamavali (Type 2) Sanskrit
  957. Sri Tulasi Ashtottara Shatanamavali English
  958. Sri Tulasi Ashtottara Shatanamavali Kannada
  959. Sri Tulasi Ashtottara Shatanamavali Telugu
  960. Sri Tulasi Ashtottara Shatanamavali Hindi
  961. Sri Tulasi Ashtottara Shatanamavali Sanskrit
  962. Sri Valli Ashtottara Shatanamavali English
  963. Sri Valli Ashtottara Shatanamavali Kannada
  964. Sri Valli Ashtottara Shatanamavali Telugu
  965. Sri Valli Ashtottara Shatanamavali Hindi
  966. Sri Valli Ashtottara Shatanamavali Sanskrit
  967. Sri Devasena Ashtottara Shatanamavali English
  968. Sri Devasena Ashtottara Shatanamavali Kannada
  969. Sri Devasena Ashtottara Shatanamavali Telugu
  970. Sri Devasena Ashtottara Shatanamavali Hindi
  971. Sri Devasena Ashtottara Shatanamavali Sanskrit
  972. Sri Varaha Ashtottara Shatanamavali English
  973. Sri Varaha Ashtottara Shatanamavali Kannada
  974. Sri Varaha Ashtottara Shatanamavali Telugu
  975. Sri Varaha Ashtottara Shatanamavali Hindi
  976. Sri Varaha Ashtottara Shatanamavali Sanskrit
  977. Sri Varahi Ashtottara Shatanamavali English
  978. Sri Varahi Ashtottara Shatanamavali Kannada
  979. Sri Varahi Ashtottara Shatanamavali Telugu
  980. Sri Varahi Ashtottara Shatanamavali Hindi
  981. Sri Varahi Ashtottara Shatanamavali Sanskrit
  982. Sri Veerabhadra Ashtottara Shatanamavali English
  983. Sri Veerabhadra Ashtottara Shatanamavali Kannada
  984. Sri Veerabhadra Ashtottara Shatanamavali Telugu
  985. Sri Veerabhadra Ashtottara Shatanamavali Hindi
  986. Sri Veerabhadra Ashtottara Shatanamavali Sanskrit
  987. Sri Hayagreeva Ashtottara Shatanamavali English
  988. Sri Hayagreeva Ashtottara Shatanamavali Kannada
  989. Sri Hayagreeva Ashtottara Shatanamavali Telugu
  990. Sri Hayagreeva Ashtottara Shatanamavali Hindi
  991. Sri Hayagreeva Ashtottara Shatanamavali Sanskrit
  992. Sri Shankaracharya Ashtottara Shatanamavali English
  993. Sri Shankaracharya Ashtottara Shatanamavali Kannada
  994. Sri Shankaracharya Ashtottara Shatanamavali Telugu
  995. Sri Shankaracharya Ashtottara Shatanamavali Hindi
  996. Sri Shankaracharya Ashtottara Shatanamavali Sanskrit
  997. Sri Raghavendra Ashtottara Shatanamavali English
  998. Sri Raghavendra Ashtottara Shatanamavali Kannada
  999. Sri Raghavendra Ashtottara Shatanamavali Telugu
  1000. Sri Raghavendra Ashtottara Shatanamavali Hindi
  1001. Sri Raghavendra Ashtottara Shatanamavali Sanskrit
  1002. Satyanarayana Ashtottara Shatanamavali (Type 2) English
  1003. Satyanarayana Ashtottara Shatanamavali (Type 2) Kannada
  1004. Satyanarayana Ashtottara Shatanamavali (Type 2) Telugu
  1005. Satyanarayana Ashtottara Shatanamavali (Type 2) Hindi
  1006. Satyanarayana Ashtottara Shatanamavali (Type 2) Sanskrit
  1007. Sri Kalabhairava Kakara Ashtottara Shatanamavali English
  1008. Sri Kalabhairava Kakara Ashtottara Shatanamavali Kannada
  1009. Sri Kalabhairava Kakara Ashtottara Shatanamavali Telugu
  1010. Sri Kalabhairava Kakara Ashtottara Shatanamavali Hindi
  1011. Sri Kalabhairava Kakara Ashtottara Shatanamavali Sanskrit
  1012. Sri Adilakshmi Ashtottara Shatanamavali English
  1013. Sri Adilakshmi Ashtottara Shatanamavali Kannada
  1014. Sri Adilakshmi Ashtottara Shatanamavali Telugu
  1015. Sri Adilakshmi Ashtottara Shatanamavali Hindi
  1016. Sri Adilakshmi Ashtottara Shatanamavali Sanskrit
  1017. Sri Dhanyalakshmi Ashtottara Shatanamavali English
  1018. Sri Dhanyalakshmi Ashtottara Shatanamavali Kannada
  1019. Sri Dhanyalakshmi Ashtottara Shatanamavali Telugu
  1020. Sri Dhanyalakshmi Ashtottara Shatanamavali Hindi
  1021. Sri Dhanyalakshmi Ashtottara Shatanamavali Sanskrit
  1022. Sri Dhairyalakshmi Ashtottara Shatanamavali English
  1023. Sri Dhairyalakshmi Ashtottara Shatanamavali Kannada
  1024. Sri Dhairyalakshmi Ashtottara Shatanamavali Telugu
  1025. Sri Dhairyalakshmi Ashtottara Shatanamavali Hindi
  1026. Sri Dhairyalakshmi Ashtottara Shatanamavali Sanskrit
  1027. Sri Gajalakshmi Ashtottara Shatanamavali English
  1028. Sri Gajalakshmi Ashtottara Shatanamavali Kannada
  1029. Sri Gajalakshmi Ashtottara Shatanamavali Telugu
  1030. Sri Gajalakshmi Ashtottara Shatanamavali Hindi
  1031. Sri Gajalakshmi Ashtottara Shatanamavali Sanskrit
  1032. Sri Santanalakshmi Ashtottara Shatanamavali English
  1033. Sri Santanalakshmi Ashtottara Shatanamavali Kannada
  1034. Sri Santanalakshmi Ashtottara Shatanamavali Telugu
  1035. Sri Santanalakshmi Ashtottara Shatanamavali Hindi
  1036. Sri Santanalakshmi Ashtottara Shatanamavali Sanskrit
  1037. Sri Vijayalakshmi Ashtottara Shatanamavali English
  1038. Sri Vijayalakshmi Ashtottara Shatanamavali Kannada
  1039. Sri Vijayalakshmi Ashtottara Shatanamavali Telugu
  1040. Sri Vijayalakshmi Ashtottara Shatanamavali Hindi
  1041. Sri Vijayalakshmi Ashtottara Shatanamavali Sanskrit
  1042. Sri Vidyalakshmi Ashtottara Shatanamavali English
  1043. Sri Vidyalakshmi Ashtottara Shatanamavali Kannada
  1044. Sri Vidyalakshmi Ashtottara Shatanamavali Telugu
  1045. Sri Vidyalakshmi Ashtottara Shatanamavali Hindi
  1046. Sri Vidyalakshmi Ashtottara Shatanamavali Sanskrit
  1047. Sri Aishwaryalakshmi Ashtottara Shatanamavali English
  1048. Sri Aishwaryalakshmi Ashtottara Shatanamavali Kannada
  1049. Sri Aishwaryalakshmi Ashtottara Shatanamavali Telugu
  1050. Sri Aishwaryalakshmi Ashtottara Shatanamavali Hindi
  1051. Sri Aishwaryalakshmi Ashtottara Shatanamavali Sanskrit
  1052. Sri Kamakshi Ashtottara Shatanamavali English
  1053. Sri Kamakshi Ashtottara Shatanamavali Kannada
  1054. Sri Kamakshi Ashtottara Shatanamavali Telugu
  1055. Sri Kamakshi Ashtottara Shatanamavali Hindi
  1056. Sri Kamakshi Ashtottara Shatanamavali Sanskrit
  1057. Sri Pratyangira Ashtottara Shatanamavali English
  1058. Sri Pratyangira Ashtottara Shatanamavali Kannada
  1059. Sri Pratyangira Ashtottara Shatanamavali Telugu
  1060. Sri Pratyangira Ashtottara Shatanamavali Hindi
  1061. Sri Pratyangira Ashtottara Shatanamavali Sanskrit
  1062. Sri Pratyangira Ashtottara Shatanamavali Tamil
  1063. Aamti
  1064. Achari Paneer
  1065. Agra Petha
  1066. Extra Creamy Potato Soup
  1067. Aloo Bonda
  1068. Aloo Dahi Wale
  1069. Aloo Dahiwada
  1070. Aloo Gobi
  1071. Aloo Ka Bharta
  1072. Aloo Ki Khichdi
  1073. Aloo Kurkure
  1074. Aloo Methi
  1075. Aloo Mewawale
  1076. Aloo Phulkopir Dalna
  1077. Aloo Poha
  1078. Aloo Posto
  1079. Aloo Pulao
  1080. Aloo Sabzi
  1081. Aloo Took
  1082. Amer Chatni
  1083. Amer Mishti Achar
  1084. Amla Ki Chutney
  1085. Amla Pickle
  1086. Anaraser Chatni
  1087. Appam
  1088. Apple and Mango Chutney
  1089. Apple and Onion Bake
  1090. Apple Jam
  1091. Apple Jelly
  1092. Apricot and Pineapple Jam
  1093. Apricot Chutney
  1094. Apricot Jam
  1095. Apricot Sauce
  1096. Aratikaaya Masala Pulusu
  1097. Arhar Dal
  1098. Arhar Dal with Green Mango
  1099. Atta Chakuli
  1100. Atte Ka Seera
  1101. Aviyal
  1102. Baadusha
  1103. Baby Corn Soup (Type 1)
  1104. Baby Corn Soup (Type 2)
  1105. Badam Ka Seera
  1106. Badam Kaju Pista Burger
  1107. Badam Kheer
  1108. Bagala Baath
  1109. Baghare Baigan
  1110. Baked Brinjal Salad
  1111. Banana Chips
  1112. Banana Chutney
  1113. Bandha Kobhi Chadchadee
  1114. Basic Bean Soup
  1115. Basil and Badam Soup
  1116. Bathue Raita
  1117. Beetroot Halwa
  1118. Begun Bhaja
  1119. Bendakaya Fry
  1120. Besan Dhokla
  1121. Bhaja Muga Dali
  1122. Bharwan Baingan
  1123. Bhel Puri
  1124. Bhindi Anardana
  1125. Bhindi Bhaji
  1126. Black Bean Soup
  1127. Black Eye Beans Curry
  1128. Boiled Rice
  1129. Bombay Chiwda
  1130. Boondi Raita
  1131. Bread Barfi
  1132. Brinjal Caviar
  1133. Brinjal Rice
  1134. Cabbage Apple Delight
  1135. Cabbage Paratha
  1136. Cabbage Poriyal
  1137. Cabbage Raita
  1138. Carrot and Cilantro Soup
  1139. Carrot and Lentil Soup
  1140. Carrot Chutney
  1141. Carrot Halwa
  1142. Carrot Jam
  1143. Carrot Kheer
  1144. Carrot Muffin
  1145. Carrot Pickle
  1146. Carrot Rice
  1147. Carrots in Foil
  1148. Cashew Nut Chutney
  1149. Cauliflower Turnip and Carrot Pickle
  1150. Celery Payaru Thoran
  1151. Chakkar Pongal
  1152. Chana Dal
  1153. Chanar Bara
  1154. Chanar Dalna
  1155. Chane Jaiselmer Ke
  1156. Cheese Pakora
  1157. Cheesy Potato Croquettes
  1158. Sri Kukke Subrahmanya Temple (Subramanya)
  1159. Manjunatha Swamy Temple (Dharmasthala)
  1160. Shree Mahaganapathi Temple (Southadka)
  1161. Shri Vinayaka Temple (Aane Gudde - Kumbashi)
  1162. Shri Idagunji Maha Ganapati Temple (Idagunji)
  1163. Mookambika Temple (Kollur)
  1164. Sri Krishna Matha (Udupi)
  1165. Sri Manjunatha Temple (Kadri)
  1166. Mangaladevi Temple (Mangalore)
  1167. Gokarnanatha Temple (Kudroli)
  1168. Sharadamba Temple (Sringeri)
  1169. Annapooreshwari Temple (Horanadu)
  1170. Durga Parameshwari Temple (Kateel)
  1171. Shri Brahmi Durgaparameshwari Temple (Kamalashile)
  1172. Shri Murudeshwara Temple (Murudeshwara)
  1173. Mahabaleshwar Temple (Gokarna)
  1174. Shri Rajarajeshwari Temple (Polali)
  1175. Shri Shankaranarayana Temple (Shankaranarayana)
  1176. Guru Narasimha Temple (Saligrama)
  1177. Shri Ananthapadmanabha Temple (Kudupu)
  1178. Shri Sada Shivarudra Temple (Ujire)
  1179. Shri Shishileshwara Temple (Shishila)
  1180. Shri Vaidyanatheshwara Temple (Kokkada)
  1181. Shri Rishyasringeshwara Temple (Kigga)
  1182. Annapoorneshwari Temple (Hosanadu Kodyadka)
  1183. Shree Sharadhamba Temple (Koodli)
  1184. Sri Surya Narayana Temple (Naravi)
  1185. Kalaseshwara Temple (Kalasa)
  1186. Shri Jagadguru Badari Shankaracharya Samsthanam (Shakatapuram)
  1187. Guli Guli Shankareshwara Swamy Temple (Shimoga)
  1188. Sri Vinayaka Temple (Guddattu)
  1189. The Jackal and the Drum
  1190. The Fall and Rise of a Merchant
  1191. The Foolish Sage
  1192. The Greedy Jackal and the Fighting Goats
  1193. The Clever Crows and the Cunning Jackal
  1194. The Cunning Heron and the Clever Crab
  1195. The Clever Hare and the Foolish Lion
  1196. The Bug and the Flea
  1197. The story of a Blue Jackal
  1198. The Lion, the Camel, the Jackal and the Crow
  1199. The Tittibha Birds and the Sea