Results for "C Library Functions"

Total results: 1689

  1. Java Program to print Hello World
  2. Java Program to initialize a string and print
  3. Java Program to print first n Integers
  4. Java Program to find sum of two integer numbers
  5. Java Program to find sum of two integer numbers using Scanner Class
  6. Java Program to find area of circle
  7. Java Program to find area of square
  8. Java Program to find area of rectangle
  9. Java Program to find perimeter of circle
  10. Java Program to find perimeter of square
  11. Java Program to find perimeter of rectangle
  12. Java Program to read information about a student from the user and display the same with the use of classes and objects
  13. Java Program to Print Lower Triangle Matrix Excluding Principal Diagonal Matrix
  14. Java Program to Print Upper Triangle Matrix Excluding Principal Diagonal Matrix
  15. Java Program to Print Lower Triangle Matrix Including Principal Diagonal Matrix
  16. Java Program to Print Upper Triangle Matrix Including Principal Diagonal Matrix
  17. Java Program to find Sum of Lower Triangle Matrix Excluding Principal Diagonal Matrix
  18. Java Program to find Sum of Upper Triangle Matrix Excluding Principal Diagonal Matrix
  19. Java Program to find Sum of Lower Triangle Matrix Including Principal Diagonal Matrix
  20. Java Program to find Sum of Upper Triangle Matrix Including Principal Diagonal Matrix
  21. Java Program to Reverse a Number
  22. Java Program to Reverse a String
  23. Java Program to find maximum element in an array
  24. Java Program to find minimum element in an array
  25. Java Program to convert Kilometer to Miles
  26. Java Program to convert Miles to Kilometer
  27. Java Program to find fibonacci series of a number
  28. Java Program to find fibonacci series of a number using methods
  29. Java Program to find fibonacci series of a number using recursion
  30. Java Program to find the area of a pentagon
  31. Java Program example to demonstrate String charAt method
  32. Java Program example to demonstrate String compareTo method
  33. Java Program example to demonstrate String compareToIgnoreCase method
  34. Java Program example to demonstrate String contentEquals method
  35. Java Program example to demonstrate String concat method
  36. Java Program to demonstrate Integer wrapper class
  37. Java Program to demonstrate Float wrapper class
  38. Java Program to demonstrate Boolean wrapper class
  39. Java Program to demonstrate Byte wrapper class
  40. Java Program to Create a File
  41. Java Program to Rename a File
  42. Java Program to show usage of Enum which prints the size of coffee mug
  43. Java Program to demonstrate Interfaces
  44. Java Program to show usage of this pointer using Order Pizza Program
  45. Java Program to demonstrate packages
  46. Java Program to pick random value from enumerations
  47. Java Program to find area of different shapes using inheritance
  48. Java Program to demonstrate multilevel inheritance
  49. Java Program to count the occurrence of a number
  50. Java Program to calculate Salary of an Employee
  51. Java Program for Stack Simulation
  52. Java Program for Queue Simulation
  53. Java Program for Div Zero Exception
  54. Java Program to demonstrate nested try block
  55. Java Program example to demonstrate variable length of arguments
  56. Java Program to demonstrate NullPointerException
  57. Java Program to demonstrate ArrayList
  58. Java Program to convert ArrayList to Array
  59. Java Program to convert Array to ArrayList
  60. Java Program to create a user defined LinkedList class and store list of books and display
  61. Java Program to calculate Student Average of a Class using User defined Storage Classes
  62. Java Program to demonstrate stack class in Collection framework
  63. Java Swing Program to demonstrate Jlabel
  64. Java Swing Program to demonstrate JLabel with Icon
  65. Java Swing Program to demonstrate JLabel with Text and Icon
  66. Java Swing Program to demonstrate JTextField
  67. Java Swing Program to demonstrate JTextField with Text
  68. Java Swing Program to demonstrate JButton
  69. Java Swing Program to demonstrate JButton with Icon
  70. Java Swing Program to demonstrate JButton with Text and Icon
  71. Java Swing Program to demonstrate JButton Action TextField
  72. Java Swing Program to demonstrate JCheckBox with Text
  73. Java Program to create thread by implementing runnable interface
  74. Java Program to create thread by extending Thread class
  75. Java Program to sort an array using Insertion Sort
  76. Java Program to find sum of array elements
  77. Java Program to find sum of array elements using methods
  78. Java Program to insert element to an array
  79. Java Program to insert element to an array at specified position
  80. Java Program to check if Integer element is present in an array
  81. Java Program to check if String element is present in an array
  82. Java Program to find average of array elements
  83. Java Program to find Median of array elements
  84. Java program to concatenate two arrays using array copy method
  85. Java program to concatenate two arrays using Collections
  86. Java program to concatenate two arrays using Stream API
  87. Java program to merge two arrays one after the other
  88. Java program to reverse ArrayList
  89. Java program to reverse array using Collections
  90. Java program to reverse array using for loop
  91. Java program to reverse array using temporary variable
  92. Java program to sort array using Collections reverseOrder method
  93. Java program to sort array using Sort method
  94. Java program to sort array using temporary variable
  95. Java program to sort string array in descending order using collections
  96. Java program to demonstrate super keyword
  97. Java program to reverse a string using recursion
  98. Java Program to add two binary numbers
  99. Java Program to add two binary numbers using ParseInt
  100. Java Program to subtract two binary numbers using ParseInt
  101. Java Program to multiply two binary numbers using ParseInt
  102. Java Program to divide two binary numbers using ParseInt
  103. Java Program to reverse words in a given string
  104. Java Program to count Vowels and Consonants in a given string
  105. Java Program to count digits and white spaces in a given string
  106. Java Program to check for Duplicate Characters
  107. Java Program to print all substrings of a given string
  108. Java Program to sort the given string Alphabetically
  109. Java Program to sort the given string Alphabetically using Comparator
  110. Java Program to sort the given string in reverse order using Comparator
  111. Java Program to add two matrices
  112. Java Program to subtract two matrices
  113. Java Program to multiply two matrices
  114. Python Program to print Hello World
  115. Python Program to initialize different datatypes and print
  116. Python Program to print different formats of string
  117. Python Program to find sum of two integer numbers
  118. Python Program to find difference of two integer numbers
  119. Python Program to find product of two integer numbers
  120. Python Program to find division of two integer numbers
  121. Python Program to find biggest of two integer numbers
  122. Python Program to find biggest of three numbers
  123. Python Program to find area of square
  124. Python Program to find area of rectangle
  125. Python Program to find area of circle
  126. Python Program to find area of triangle
  127. Python Program to find area of pentagon
  128. Python Program to swap two numbers using temporary variable
  129. Python Program to swap two numbers using xor
  130. Python Program to find swap two numbers without temp variable (Addition and Subtraction Method)
  131. Python Program to find swap two numbers without temp variable (Multiplication and Division Method)
  132. Python Program to find ASCII value of a character or digit
  133. Python Program to find ASCII value of a character or digit entered by the user
  134. Python Program to check whether a given number is an Armstrong Number or not
  135. Python Program to check whether a given number is an Armstrong Number or not using lambda and list
  136. Python Program to reverse an integer number
  137. Python Program to find sum of digits
  138. Python Program to convert kilometer to mile
  139. Python Program to find maximum element in an array
  140. Python Program to find sum of array elements using for
  141. Python Program to find sum of array elements using sum function
  142. Python Program to find fibonacci series
  143. Python Program to sort an array using Insertion Sort
  144. Python Program to check if a given number is Prime or not
  145. Python Program to find the square root of a given number
  146. Python Program to convert Celsius to Fahrenheit
  147. Python Program to convert Fahrenheit to Celsius
  148. Python Program to generate a random number within the given range
  149. C Program to print Hello World on the console
  150. C Program to initialize different datatypes and print the same on terminal
  151. C Program to show different formatting in output using printf
  152. C Program to convert a value into different formats using format specifiers
  153. C Program to find the sum of two integer numbers
  154. C Program to find the difference of two integer numbers
  155. C Program to find the product of two integer numbers
  156. C Program to find the division of two integer numbers
  157. C Program to perform arithmetic operations using floating point variables
  158. C Program to find distance between two straight lines
  159. C Program to find area of square
  160. C Program to find perimeter of square
  161. C Program to find area of rectangle
  162. C Program to find perimeter of rectangle
  163. C Program to find area of equilateral triangle
  164. C Program to find area of right angled triangle
  165. C Program to find area of scalene triangle
  166. C Program to find area of triangle given three sides of a triangle
  167. C Program to find area of circle
  168. C Program to find area and circumference of a circle using pre processor directives
  169. C Program to check if a triangle is Isosceles Equilateral or Scalene
  170. C Program to convert Celcius to Fahrenheit
  171. C Program to convert Fahrenheit to Celcius
  172. C Program to swap two variables using addition and subtraction without using temporary variable
  173. C Program to swap two variables using temporary variable
  174. C Program to swap two variables using multiply and division operation without using temporary variable
  175. C Program to swap two variables by shifting bits
  176. C Program to swap two variables by performing xor operation
  177. C Program to calculate Simple Interest
  178. C Program to calculate Compound Interest
  179. C Program to find profit or loss
  180. C Program to find positive negative or zero using Conditional Operator
  181. C Program to find positive negative or zero using If Else statement
  182. C Program to find odd or even using Conditional Operator
  183. C Program to find odd or even using If Else statement
  184. C Program to find odd or even using goto statement
  185. C Program to check whether a given year is a leap year or not
  186. C Program to check whether a given number is a Perfect Number or not
  187. C Program to check whether a given number is an Armstrong Number or not
  188. C Program to generate Armstrong number within a given range
  189. C Program to check whether a given number is an Armstrong Number or not using user defined power function
  190. C Program to check whether a given number is an Armstrong Number or not using in built power function
  191. C Program to find biggest of two numbers using Conditional Operator
  192. C Program to find biggest of two numbers using If Else statement
  193. C Program to find biggest of three numbers using Conditional Operator
  194. C Program to find biggest of three numbers using If Else statement
  195. C Program to find biggest of three numbers using nested If Else statement
  196. C Program to find biggest of three numbers using Binary Minus
  197. C Program to find smallest of three numbers using Conditional Operator
  198. C Program to find smallest of three numbers using If Else statement
  199. C Program to find smallest of three numbers using nested If Else statement
  200. C Program to calculate grade based on percentage using If Else statement
  201. C Program to calculate grade based on percentage using switch statement
  202. C Program for simple calculator to perform addition subtraction multiplication and division based on the symbol using if else ladder statement
  203. C Program for simple calculator to perform addition subtraction multiplication and division based on the symbol using switch statement
  204. C Program to find roots of a quadratic equation using If Else statement
  205. C Program to find area of triangle square circle or rectangle using switch statement
  206. C Program to demonstrate the use of sizeof operator
  207. C Program to identify a character or a digit using ASCII values
  208. C Program to identify a character digit or special character using Built In functions
  209. C Program to identify a character or a digit using Built In functions
  210. C Program to convert lower case alphabet to upper case and upper case to lower case using ASCII values
  211. C Program to convert lower case alphabet to upper case and upper case to lower case using Built In functions
  212. C Program to print first n natural numbers using for loop
  213. C Program to print first n natural numbers using while loop
  214. C Program to print first n natural numbers using do while loop
  215. C Program to find the sum of first n natural numbers using for loop
  216. C Program to find the sum of first n natural numbers using while loop
  217. C Program to sum of n natural numbers using do while
  218. C Program to find the factorial of a given number
  219. C Program to find factorial of a number using functions
  220. C Program to find GCD and LCM of a given two number
  221. C Program to generate Fibonacci Series for first n natural numbers
  222. C Program to check whether a given integer number is palindrome or not
  223. C Program to print first n prime numbers
  224. C Program to print prime numbers within given range
  225. C Program to check if a number is prime number or not
  226. C Program to reverse a given integer number using while loop
  227. C Program to reverse a given integer number using while loop using functions
  228. C Program to reverse an integer number using for
  229. C Program to reverse an integer number using do while
  230. C Program to reverse string using for
  231. C Program to reverse string using while
  232. C Program to reverse string using do while
  233. C Program to print random number
  234. C Program to print random number within range
  235. C Program to check anagram by checking frequency
  236. C Program to check anagram by sorting strings
  237. C Program to find area of Ellipse
  238. C Program to find area of Regular Polygon sides
  239. C Program to find area of Rhombus
  240. C Program to find area of Sector
  241. C Program to find area of Triangular Prism lateral surface
  242. C Program to find the area of a pentagon
  243. C Program to find area of trapezoid
  244. C Program to print hello world using ASCII
  245. C Program to find power of a number without inbuilt function
  246. C Program to find substring of a string
  247. C Program to swap two Strings
  248. C Program to search occurrence of character in String
  249. C Program to sort a set of strings alphabetically
  250. C Program to arrange a string alphabetically
  251. C Program to find length of a string using built in functions
  252. C Program to find length of a string without using built in functions
  253. C Program to find if a string is palindrome or not without built in functions
  254. C Program to compare two strings using built in functions
  255. C Program to compare two strings without using built in functions
  256. C Program to reverse a string without using built in function
  257. C Program to convert String to Integer value
  258. C Program to find Permutations nPr
  259. C Program to find Combinations nCr
  260. C Program to find sum and percentage of subjects
  261. C Program to find Sum of Digits of a given number Type 1
  262. C Program to find Sum of Digits of a given number Type 2
  263. C Program to concatenate two strings using built in functions
  264. C Program to concatenate two strings into a third string using built in functions
  265. C Program to concatenate two strings into a third string without using built in functions
  266. C Program to copy from source string to destination string using built in functions
  267. C Program to copy from source string to destination string without using built in functions
  268. C Program to find sum of two numbers using command line arguments
  269. C Program to find sum of two numbers using functions with returning the value
  270. C Program to find sum of two numbers using functions without returning the value
  271. C Program to print first n odd numbers
  272. C Program to print first n even numbers
  273. C Program to print n odd numbers within range
  274. C Program to print n even numbers within range
  275. C Program to print first n odd and even numbers Type 1
  276. C Program to print first n odd and even numbers Type 2
  277. C Program to find the sum of first n odd numbers using for loop
  278. C Program to print the sum of n odd numbers using while
  279. C Program to print the sum of n odd numbers using do while
  280. C Program to print the sum of n odd numbers within range using for
  281. C Program to print the sum of n odd numbers within range using while
  282. C Program to print the sum of n odd numbers within range using do while
  283. C Program to find the sum of first n even numbers using for loop
  284. C Program to print the sum of n even numbers using while
  285. C Program to print the sum of n even numbers using do while
  286. C Program to print the sum of n even numbers within range using for
  287. C Program to print the sum of n even numbers within range using while
  288. C Program to print the sum of n even numbers within range using do while
  289. C Program to find the sum of first n odd and even numbers using for
  290. C Program to print the sum of n odd and even numbers using while
  291. C Program to print the sum of n odd and even numbers using do while
  292. C Program to print the sum of n odd and even numbers within range using for
  293. C Program to print the sum of n odd and even numbers within range using while
  294. C Program to print the sum of n odd and even numbers within range using do while
  295. C Program to convert binary to decimal number
  296. C Program to convert binary to hexadecimal number
  297. C Program to convert binary to octal number
  298. C Program to convert a decimal to binary number
  299. C Program to convert decimal to hexadecimal number
  300. C Program to convert a decimal to octal number
  301. C Program to convert octal to binary number
  302. C Program to convert an octal to decimal number
  303. C Program to convert octal to hexadecimal number
  304. C Program to convert Kilometers to miles
  305. C Program to convert kilometer to miles using preprocessor directive
  306. C Program to demonstrate calloc dynamic memory allocation
  307. C Program to demonstrate malloc dynamic memory allocation
  308. C Program to demonstrate malloc memset
  309. C Program to initialize array of strings and print on the terminal
  310. C Program to insert an element into specified location of an array
  311. C Program to delete an element from a specified location of an array
  312. C Program to delete duplicate elements from an array
  313. C Program to copy contents of one array to another
  314. C Program to find maximum element in an array without sorting
  315. C Program to find minimum element in an array without sorting
  316. C Program to merge two arrays one after the other
  317. C Program to find the sum of array elements
  318. C Program to find sum of two arrays
  319. C Program to search a key element using Binary Search method
  320. C Program to search a key element using Binary Search using Functions
  321. C Program to search a key element using Linear Search method
  322. C Program to search a key element using Linear Search using Functions
  323. C Program to add two matrix
  324. C Program to subtract two matrix
  325. C Program to find sum of lower triangle matrix
  326. C Program to find sum of upper triangle matrix
  327. C Program to add principal diagonal elements in a matrix
  328. C Program to transpose a matrix
  329. C Program to check if the entered matrix is magic square or not
  330. C Program to implement basic operation of Stacks using global variables
  331. C Program to implement basic operation of Stacks using arrays and pointers
  332. C Program to implement basic operation of Stacks using structures
  333. C Program to implement Stacks using Singly Linked List
  334. C Program to implement Stacks using Circular Linked List
  335. C Program to convert a valid Infix expression to postfix using Stacks
  336. C Program to convert a valid Infix expression to postfix using Structures
  337. C Program to evaluate a valid Postfix expression using Stacks
  338. C Program to find sum of n natural numbers using recursion
  339. C Program to find the factorial of a given number using recursion
  340. C Program to generate fibonacci series using recursion
  341. C Program to find nth fibonacci number using recursion
  342. C Program to search a key element using linear search using recursion
  343. C Program to search a key element using binary search using recursion
  344. C Program to implement Tower of Hanoi
  345. C Program to implement basic operations of Linear Queue using arrays and pointers
  346. C Program to implement basic operations of Circular Queue using arrays and pointers
  347. C Program to implement Priority Queues using array of structures
  348. C Program to implement Singly Linked List to insert and delete a node from front and display the contents of the Singly List
  349. C Program to implement Singly Linked List to insert and delete a node from rear and display the contents of the Singly List
  350. 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
  351. 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
  352. 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
  353. 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
  354. C Program to implement Linear Queue using Singly Linked List
  355. C Program to implement Circular Linked List to insert and delete a node from front and display the contents of the Circular List
  356. C Program to implement Circular Linked List to insert and delete a node from rear and display the contents of the Circular List
  357. 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
  358. C Program to implement Doubly Linked List to insert and delete a node from front and display the contents of the Doubly Linked List
  359. C Program to implement Doubly Linked List to insert and delete a node from rear and display the contents of the Doubly Linked List
  360. C Program to reverse a digit using recursion
  361. C Program to print prime numbers within a range using recursion
  362. C Program to check prime numbers using recursion
  363. C Program to sort an array using Bubble Sort
  364. C Program to sort an array using Bubble Sort using functions
  365. C Program to sort an array using Selection Sort
  366. C Program to sort an array using Insertion Sort
  367. C Program to sort an array using Insertion Sort using functions
  368. C Program to sort an array using Merge Sort
  369. C Program to sort an array using Shell Sort
  370. C Program to implement 01 Knapsack problem
  371. C Program to implement 01 Knapsack problem using recursion
  372. C Program to implement Fractional Knapsack problem using Greedy Method
  373. C Program to implement Prim's Algorithm
  374. C Program to solve N Queens using greedy method
  375. C Program to implement Warshall's algorithm
  376. C Program to find square of a number using macro functions
  377. C Program to illustrate basic concept of pointers
  378. C Program to display value using star operator in pointers
  379. C Program to calculate size of a structure
  380. C Program to find string length using pointers
  381. C Program to find sum of array elements using pointers
  382. C Program to print an array in reverse direction using pointers
  383. C Program to add two complex numbers using structures
  384. C Program to demonstrate fgets
  385. C Program to demonstrate double pointer
  386. C Program to add matrices using pointer
  387. C Program to add matrices using function and pointer
  388. C Program to count vowels and consonents in a given sentence
  389. C Program to create union of structures of an employee and display the details
  390. C Program to print if the architecture is supporting big endian or little endian
  391. C Program to create a enum user defined datatype for days of a week and print the index of a week
  392. C Program to read a text file
  393. C Program to read and print contents of a file using static memory allocation
  394. C Program to read and print contents of a file using dynamic memory allocation
  395. C Program to convert contents of a file to upper case
  396. C Program to copy contents from file to another file
  397. C Program to create a child process using fork system call
  398. C Program to create a child process using fork system call and print PID and PPID of the processes
  399. C Program to print small alphabets in right angled triangle pattern in series
  400. C Program to print capital alphabets in right angled triangle pattern in series
  401. C Program to print number a Right angled Triangle pattern
  402. C Program to print first n natural numbers in a Right angled Triangle pattern
  403. C Program to print even numbers in a Right angled Triangle pattern
  404. C Program to print prime numbers in a Right angled Triangle pattern
  405. C Program to print binary numbers in a Right angled Triangle pattern
  406. C Program to print numbers in rows and columns of Quadrangle pattern
  407. C Program to print numbers in rows and columns of Quadrangle pattern in reverse order
  408. C Program to print Equilateral Triangle in a pyramid star pattern
  409. C Program to print Inverted Equilateral Triangle in a pyramid star pattern
  410. C Program to print Right angled Triangle in a pyramid star pattern Type 1
  411. C Program to print Right angled Triangle in a pyramid star pattern Type 2
  412. C Program to print Inverted Right angled Triangle in a pyramid star pattern Type 1
  413. C Program to print Inverted Right angled Triangle in a pyramid star pattern Type 2
  414. C Program to print Hollow Right angled Triangle in a pyramid star pattern Type 1
  415. C Program to print Hollow Right angled Triangle in a pyramid star pattern Type 2
  416. C Program to print Hollow Inverted Right angled Triangle in a pyramid star pattern Type 1
  417. C Program to print Hollow Inverted Right angled Triangle in a pyramid star pattern Type 2
  418. C Program to print Rhombus in a star pattern
  419. C Program to print Hollow Rhombus in a star pattern Type 1
  420. C Program to print Hollow Rhombus in a star pattern Type 2
  421. C Program to print Solid Square in a star pattern
  422. C Program to print Solid Rectangle in a star pattern
  423. C Program to print Hollow Square in a star pattern
  424. C Program to print Hollow Rectangle in a star pattern
  425. C Program to print Left Arrow in a star pattern Type 1
  426. C Program to print Left Arrow in a star pattern Type 2
  427. C Program to print Right Arrow in a star pattern Type 1
  428. C Program to print Right Arrow in a star pattern Type 2
  429. C Program to print Half Left Diamond in a star pattern
  430. C Program to print Half Right Diamond in a star pattern
  431. C Program to print Alphabet K in a star pattern
  432. C Program to print Alphabet X in a star pattern
  433. C Program to print Symbol Plus in a star pattern
  434. C Program to create Floyds triangle
  435. C Program to print Pascal triangle
  436. C Program to display the same source code on terminal
  437. C++ Program to print Hello World
  438. C++ Program to initialize different datatypes and print the same on terminal
  439. C++ Program to find the sum of two integer numbers
  440. C++ Program to find the difference of two integer numbers
  441. C++ Program to find the product of two integer numbers
  442. C++ Program to find the division of two integer numbers
  443. C++ Program to find the sum of two integer numbers using classes and objects
  444. C++ Program to show usage of classes and objects
  445. C++ Program to find biggest of two numbers
  446. C++ Program to find biggest of three numbers
  447. C++ Program to sort an array using Merge Sort
  448. C++ Program to sort an array using Insertion Sort
  449. C++ Program to find biggest of two numbers using Inline Functions
  450. C++ Program to demonstrate sizeof operator
  451. C++ Program to demonstrate usage of reference types
  452. C++ Program to find sum of two numbers using pointer returning functions
  453. C++ Program for simple calculator to perform addition subtraction multiplication and division based on the symbol using switch statement
  454. C++ Program to demonstrate constructor overloading
  455. C++ Program to generate fibonacci series
  456. C++ Program to generate fibonacci series using class
  457. C++ Program to find factorial of a number without classes
  458. C++ Program to find factorial of a number using classes
  459. C++ Program to find factorial of a number using copy constructor
  460. C++ Program to demonstrate the use of address and value operator
  461. C++ Program to find square of a number using templates
  462. C++ Program to find power of a number without inbuilt function
  463. C++ Program to print sum of n natural numbers using do while
  464. C++ Program to check if entered number is prime or not using classes
  465. C++ Program to convert Kilometers to miles
  466. C++ Program to convert binary to octal
  467. C++ Program to convert decimal to hexadecimal
  468. C++ Program to convert octal to binary
  469. C++ Program to reverse an integer number using for
  470. C++ Program to reverse an integer number using while
  471. C++ Program to reverse an integer number using do while
  472. C++ Program to reverse a string using for
  473. C++ Program to reverse a string using while
  474. C++ Program to reverse a string using do while
  475. C++ Program to find odd or even using If Else statement
  476. C++ Program to add two complex numbers
  477. C++ Program to find area of square using constructor
  478. C++ Program to find area of rectangle using constructor
  479. C++ Program to find area of circle using constructor
  480. C++ Program to find area of pentagon
  481. C++ Program to find area of shapes using constructor overloading
  482. C++ Program to find sum of two arrays
  483. C++ Program to add two matrix
  484. C++ Program to print n even numbers within range
  485. C++ Program to print n odd numbers within range
  486. C++ Program to print the sum of n even numbers using while
  487. C++ Program to print the sum of n even numbers using do while
  488. C++ Program to print the sum of n even numbers within range using for
  489. C++ Program to print the sum of n even numbers within range using while
  490. C++ Program to print the sum of n even numbers within range using do while
  491. C++ Program to print the sum of n odd numbers using while
  492. C++ Program to print the sum of n odd numbers using do while
  493. C++ Program to print the sum of n odd numbers within range using for
  494. C++ Program to print the sum of n odd numbers within range using while
  495. C++ Program to print the sum of n odd numbers within range using do while
  496. C++ Program to print the sum of n odd and even numbers using while
  497. C++ Program to print the sum of n odd and even numbers using do while
  498. C++ Program to print the sum of n odd and even numbers within range using for
  499. C++ Program to print the sum of n odd and even numbers within range using while
  500. C++ Program to print the sum of n odd and even numbers within range using do while
  501. C++ Program to demonstrate single inheritance
  502. C++ Program to implement Stacks
  503. C# Program to print Hello World
  504. C# Program to add two numbers
  505. C# Program to subtract two numbers
  506. C# Program to multiply two numbers
  507. C# Program to divide two numbers
  508. C# Program to calculate area of pentagon
  509. C# Program to sort an array using Insertion Sort
  510. C# program to find Area of Circle
  511. C# program to find Area of Equilateral Triangle
  512. C# program to find Area of Isoceles Triangle
  513. C# program to find Area of Right angled Triangle
  514. C# program to find Area of Scalene Triangle
  515. C# program to find Area of Triangle by Sides
  516. C# program to find Area of Square
  517. C# program to find Area of Rectangle
  518. C# program to find Circumference of the Circle
  519. C# program to find Perimeter of Square
  520. C# program to find Perimeter of Rectangle
  521. C# program to find Perimeter of Equilateral Triangle
  522. C# program to find Perimeter of Scalene Triangle
  523. C# program to find Perimeter of Isosceles Triangle
  524. C# program to find Perimeter of Circle
  525. C# program to print first n Natural Numbers
  526. C# program to print n Even Natural Numbers
  527. C# program to print n Odd Natural Numbers
  528. C# program to find Sum of first n Natural Numbers
  529. C# program to find Sum of first n Even Natural Numbers
  530. C# program to find Sum of first n Odd Natural Numbers
  531. C# program to check Even or Odd Number
  532. C# program to check Positive or Negative Number
  533. C# program to Compare Two Numbers
  534. C# program to find Modulus of Two Numbers
  535. C# program to find Simple Interest
  536. C# program to find Compound Interest
  537. C# program to display Multiplication Table
  538. C# program to print Odd Even Series
  539. C# program to print Floyds Triangle
  540. C# program to print Pascal Triangle
  541. C# program to print half Pyramid of Numbers
  542. C# program to print half Pyramid of Alphabets
  543. C# program to print half Pyramid of Stars
  544. C# program to print full Inverted Pyramid of Stars
  545. C# program to print half Inverted Pyramid of Stars
  546. C# program to print full Pyramid of Stars
  547. Rust Program to print Hello World
  548. Rust Program to print first 10 natural numbers using for loop
  549. Rust Program to Add two Numbers
  550. Rust Program to Add two Numbers from user input
  551. Rust Program to Subtract two Numbers
  552. Rust Program to Subtract two Numbers from user input
  553. Rust Program to Multiply Two Numbers
  554. Rust Program to Multiply Two Numbers from user input
  555. Rust Program to Divide Two Numbers
  556. Rust Program to Divide Two Numbers from user input
  557. Rust Program to find Modulus of two Numbers
  558. Rust Program to find Square of a number
  559. Rust Program to read the integer from user input 3 variations
  560. Rust Program to read the integer from user input with error handling
  561. Rust Program to print Multiplication Table
  562. GO Lang Program to print Hello World
  563. GO Lang Program to print Hello World From Variable
  564. GO Lang Program to find sum of two numbers
  565. GO Lang Program to enter integer number
  566. GO Lang Program to subtract two numbers
  567. GO Lang Program to find biggest of two numbers
  568. GO Lang Program to read quoted string
  569. GO Lang Program to find length of a String
  570. JavaScript Program to display the date
  571. JavaScript Program to display an alert box
  572. JavaScript Program to display confirm box
  573. JavaScript Program to display prompt for user to enter data
  574. JavaScript Program to add of two numbers
  575. JavaScript Program to subtract of two numbers
  576. JavaScript Program to multiply of two numbers
  577. JavaScript Program to divide of two numbers
  578. JavaScript Program to print Fibonacci series
  579. JavaScript Program to find if a number is palindrome or not
  580. JavaScript Program to push and pop elements from an array
  581. PHP Program to print Hello World
  582. PHP Program to print Hello World using echo
  583. PHP Program to print Hello World in html tag
  584. PHP Program to print Hello World using print
  585. PHP Program to Initialize variable and print
  586. PHP Program to demonstrate Integer datatype
  587. PHP Program to demonstrate floating point datatype
  588. PHP Program to demonstrate String datatype
  589. PHP Program to display user name
  590. PHP Program to add two numbers
  591. PHP Program to find sum of array elements
  592. PHP Program to get client IP address
  593. Ruby Program to display Hello World using Class
  594. Ruby Program to find odd or even number
  595. Ruby Program to find factorial of a number
  596. Ruby Program to add two numbers
  597. Ruby Program to add two numbers using command line
  598. Ruby Program to subtract two numbers
  599. R Program to print Hello World on Console
  600. R Program to get input from user and print on Console
  601. R Program to generate random numbers using runif
  602. R Program to generate random numbers using sample
  603. R Program to add two numbers and print the result on the console
  604. R Program to add two vectors and print the result on the console
  605. R Program to find the sum mean product of two vectors
  606. R Program to print matrix on the console
  607. R Program to find modulus of two numbers
  608. R Program to add two numbers
  609. R Program to subtract two numbers
  610. R Program to multiply two numbers
  611. R Program to divide two numbers
  612. Shell Script to print Hello World on the console
  613. Shell Script to initialize Hello World String to a variable and print it on the console
  614. Shell Script to read an integer value from user and print
  615. Shell Script to print Fibonacci series
  616. Shell Script to find factorial of a number
  617. Shell Script to print first n natural numbers
  618. Shell Script to find sum of n numbers
  619. Shell Script to find biggest of two numbers
  620. Shell Script to find biggest of three numbers using command line arguments
  621. Shell Script to find biggest of three numbers using nested if
  622. Shell Script to find largest of three numbers using If Else statement
  623. Shell Script to print command line arguments Type 1
  624. Shell Script to print command line arguments Type 2
  625. Shell Script to reverse command line arguments
  626. Shell Script to print command line arguments in reverse
  627. Shell Script to reverse a String and print on console
  628. Shell Script to check if a string is palindrome or not
  629. Shell Script to find if a number is positive or negative or zero
  630. Shell Script to print first n natural numbers in a pattern of Right angled Triangle
  631. Shell Script to print first n natural numbers in a pattern of Equilateral Triangle
  632. Shell Script to print contents of an array
  633. Shell Script to print login information
  634. Shell Script to find largest file in a directory
  635. Shell Script to execute different commands on UNIX or Linux using script
  636. Shell Script for simple calculator to perform addition subtraction multiplication and division based on command line arguments
  637. Shell Script for simple calculator to perform addition subtraction multiplication and division based on the symbol using case statements
  638. ADA Program to print Hello World
  639. ADA Program to print a integer number entered by user
  640. ADA Program to print a character entered by user
  641. ADA Program to print a string entered by user
  642. ADA Program to find the sum of two integer number
  643. ADA Program to find the difference of two integer number
  644. ADA Program to find the product of two integer number
  645. ADA Program to find the division of two integer number
  646. ADA Program to find area of square
  647. ADA Program to find perimeter of square
  648. ADA Program to find area of rectangle
  649. ADA Program to find perimeter of rectangle
  650. Haskell Program to print hello world
  651. Haskell Program to print integer entered by the user
  652. Haskell Program to print string entered by the user
  653. Haskell Program to print system information
  654. Haskell Program to print Fibonacci series
  655. Haskell Program to print factorial of a number
  656. Haskell Program to add two numbers
  657. Haskell Program to subtract two numbers
  658. Haskell Program to multiply two numbers
  659. Haskell Program to divide two numbers
  660. Haskell Program to convert string to lower case
  661. Haskell Program to convert string to upper case
  662. Julia Program to print Hello World
  663. Julia Program to print ASCII Values
  664. Julia Program to initialize string and print on console
  665. Julia Program to subtract two numbers
  666. Julia Program to multiply two numbers
  667. Julia Program to check whether given number is odd or even
  668. Julia Program to print sum of n natural numbers
  669. Julia Program to check if a number is prime number or not
  670. Julia Program to print first n prime numbers
  671. Julia Program to demonstrate simple 1D Array
  672. Julia Program to demonstrate unitialized 1D Array
  673. Julia Program to demonstrate Empty Arrays
  674. Julia Program to demonstrate 2D Array
  675. Julia Program to demonstrate creation of Array using collect method
  676. Julia Program to demonstrate creation of Arrays using splat operator
  677. Julia Program to print step of 10s using range method
  678. Julia Program to print step of 10s using collect method
  679. Julia Program to print step of 10s using range and collect method
  680. Kotlin Program to print Hello World
  681. Kotlin Program to demonstrate ArrayList
  682. Lua Program to print Hello World
  683. Lua Program to add two numbers
  684. Lua Program to subtract two numbers
  685. Lua Program to multiply two numbers
  686. Swift Program to print Hello World String on the console
  687. Swift Program to print string value
  688. Swift Program to demonstrate typewrapping integer value
  689. Swift Program to print Fibonacci Series for first n natural numbers
  690. Swift Program to find the difference of two integer numbers
  691. Swift Program to find the product of two integer numbers
  692. Swift Program to print information of a person using structures
  693. Swift Program to print information of a student using classes
  694. Swift Program to demonstrate different constants
  695. F# program to print Hello World
  696. F# program to print Hello World using System
  697. F# program to Add two numbers
  698. F# program to Add two numbers using Functions
  699. F# program to Subtract two numbers
  700. F# program to Subtract two numbers using Functions
  701. F# program to Multiply two numbers
  702. F# program to Multiply two numbers using Functions
  703. F# program to Divide two numbers
  704. F# program to Divide two numbers using Functions
  705. F# program to Divide two numbers using Try Catch
  706. F# program to find Modulus of two numbers
  707. F# program to find Modulus of two numbers using Functions
  708. F# program to find Modulus of two numbers using Try Catch
  709. F# program to print first n Natural Numbers
  710. F# program to print the sum of first n Natural Numbers
  711. F# program to print first n Prime Numbers using Sequence
  712. F# program to perform Arithmetic Operations
  713. F# program to perform Boolean Operations
  714. F# program to check Odd or Even Number
  715. F# program to check Positive or Negative Number
  716. F# program to check Palindrome Number
  717. F# program to compare two numbers
  718. F# program to compare two numbers using Functions
  719. F# program to print Fibonacci Series
  720. F# program to print Fibonacci Series using Anonymous Recursion
  721. F# program to print Fibonacci Series using Match With
  722. F# program to find Factorial of a Number
  723. F# program to check Grades using elif
  724. F# program to find GCD of two Numbers
  725. F# program to print numbers in reverse using down to
  726. Introduction to Java
  727. Java Virtual Machine (JVM) and Bytecode
  728. Features of Java
  729. Setting up the Java Development Kit (JDK)
  730. Difference Between Oracle JDK and OpenJDK
  731. Integrated Development Environments (IDEs) for Java
  732. First Java Program
  733. Java Keywords
  734. Java identifiers
  735. Lists in Python
  736. Strings in Python
  737. Tuples in Python
  738. Sets in Python
  739. Dictionary in Python
  740. File Handling in Python
  741. Introduction to C Programming
  742. Setting Up a C Development Environment
  743. Features of C Programming
  744. Integrated Development Environments (IDEs) for C
  745. C Character Set
  746. Tokens in C
  747. Comments in C
  748. Data Types in C
  749. Variables in C
  750. Constants in C
  751. Operators and Expressions in C
  752. Input and Output in C Programming
  753. Control Flow with Conditional Statements in C Programming
  754. Control Flow with Loops in C Programming
  755. Functions in C Programming
  756. Recursion in C Programming
  757. Storage Classes in C
  758. Preprocessor Directives in C
  759. Arrays in C Programming
  760. Strings in C Programming
  761. Pointers in C Programming
  762. Structures in C Programming
  763. Unions in C Programming
  764. Bit Fields in C Programming
  765. Enumerations in C Programming
  766. File Handling in C Programming
  767. Command-Line Arguments in C Programming
  768. Dynamic Memory Allocation in C Programming
  769. Error Handling in C Programming
  770. Debugging Techniques in C Programming
  771. Data Structures in C Programming
  772. Stacks in C Programming
  773. Queues in C Programming
  774. Linked List in C Programming
  775. Best Practices and Coding Standards for C Programming
  776. Introduction to C++ Programming
  777. Introduction to C# Programming
  778. Inroduction to Rust Programming
  779. Introduction to Go Lang Programming
  780. Introduction to Lua
  781. Installing Lua
  782. Passage 1
  783. Passage 2
  784. Passage 3
  785. Passage 4
  786. Passage 5
  787. Passage 6
  788. Passage 7
  789. Passage 8
  790. Passage 9
  791. Passage 10
  792. Passage 11
  793. Passage 12
  794. Passage 13
  795. Passage 14
  796. Passage 15
  797. Passage 16
  798. Passage 17
  799. Passage 18
  800. Passage 19
  801. Passage 20
  802. Passage 21
  803. Passage 22
  804. Passage 23
  805. Passage 24
  806. Passage 25
  807. Passage 26
  808. Passage 27
  809. Passage 28
  810. Passage 29
  811. Passage 30
  812. Passage 31
  813. Passage 32
  814. Passage 33
  815. Passage 34
  816. Passage 35
  817. Passage 36
  818. Passage 37
  819. Passage 38
  820. Passage 39
  821. Passage 40
  822. Passage 41
  823. Passage 42
  824. Passage 43
  825. Passage 44
  826. Passage 45
  827. Passage 46
  828. Passage 47
  829. Passage 48
  830. Passage 49
  831. Passage 50
  832. Passage 51
  833. Passage 52
  834. Passage 53
  835. Passage 54
  836. Passage 55
  837. Passage 56
  838. Passage 57
  839. Passage 58
  840. Passage 59
  841. Passage 60
  842. Passage 61
  843. Passage 62
  844. Passage 63
  845. Passage 64
  846. Passage 65
  847. Passage 66
  848. Passage 67
  849. Passage 68
  850. Passage 69
  851. Passage 70
  852. Passage 71
  853. Passage 72
  854. Passage 73
  855. Passage 74
  856. Passage 75
  857. Passage 76
  858. Passage 77
  859. Passage 78
  860. Passage 79
  861. Passage 80
  862. Passage 81
  863. Passage 82
  864. Passage 83
  865. Passage 84
  866. Passage 85
  867. Passage 86
  868. Passage 87
  869. Passage 88
  870. Passage 89
  871. Passage 90
  872. Passage 91
  873. Passage 92
  874. Passage 93
  875. Passage 94
  876. Passage 95
  877. Passage 96
  878. Passage 97
  879. Passage 98
  880. Passage 99
  881. Passage 100
  882. Passage 101
  883. Passage 102
  884. Passage 103
  885. Passage 104
  886. Passage 105
  887. Passage 106
  888. Passage 107
  889. Passage 108
  890. Passage 109
  891. Passage 110
  892. Passage 111
  893. Passage 112
  894. Passage 113
  895. Passage 114
  896. Passage 115
  897. Passage 116
  898. Passage 117
  899. Passage 118
  900. Passage 119
  901. Passage 120
  902. Passage 121
  903. Passage 122
  904. Passage 123
  905. Passage 124
  906. Passage 125
  907. Passage 126
  908. Passage 127
  909. Passage 128
  910. Passage 129
  911. Passage 130
  912. Passage 131
  913. Passage 132
  914. Passage 133
  915. Passage 134
  916. Passage 135
  917. Passage 136
  918. Passage 137
  919. Passage 138
  920. Passage 139
  921. Passage 140
  922. Passage 141
  923. Passage 142
  924. Passage 143
  925. Passage 144
  926. Passage 145
  927. Passage 146
  928. Passage 147
  929. Passage 148
  930. Passage 149
  931. Passage 150
  932. Passage 151
  933. Passage 152
  934. Passage 153
  935. Passage 154
  936. Passage 155
  937. Passage 156
  938. Passage 157
  939. Passage 158
  940. Passage 159
  941. Passage 160
  942. Passage 161
  943. Passage 162
  944. Passage 163
  945. Passage 164
  946. Passage 165
  947. Passage 166
  948. Passage 167
  949. Passage 168
  950. Passage 169
  951. Passage 170
  952. Passage 171
  953. Passage 172
  954. Passage 173
  955. Passage 174
  956. Passage 175
  957. Passage 176
  958. Passage 177
  959. Passage 178
  960. Passage 179
  961. Passage 180
  962. Passage 181
  963. Passage 182
  964. Passage 183
  965. Passage 184
  966. Passage 185
  967. Passage 186
  968. Passage 187
  969. Passage 188
  970. Passage 189
  971. Passage 190
  972. Passage 191
  973. Passage 192
  974. Passage 193
  975. Passage 194
  976. Passage 195
  977. Passage 196
  978. Passage 197
  979. Passage 198
  980. Passage 199
  981. Passage 200
  982. Passage 201
  983. Passage 202
  984. Passage 203
  985. Passage 204
  986. Passage 205
  987. Passage 206
  988. Passage 207
  989. Passage 208
  990. Passage 209
  991. Passage 210
  992. Passage 211
  993. Passage 212
  994. Passage 213
  995. Passage 214
  996. Passage 215
  997. Passage 216
  998. Passage 217
  999. Passage 218
  1000. Passage 219
  1001. Passage 220
  1002. Passage 221
  1003. Passage 222
  1004. Passage 223
  1005. Passage 224
  1006. Passage 225
  1007. Passage 226
  1008. Passage 227
  1009. Passage 228
  1010. Passage 229
  1011. Passage 230
  1012. Passage 231
  1013. Passage 232
  1014. Passage 233
  1015. Passage 234
  1016. Passage 235
  1017. Passage 236
  1018. Passage 237
  1019. Passage 238
  1020. Passage 239
  1021. Passage 240
  1022. Passage 241
  1023. Passage 242
  1024. Passage 243
  1025. Passage 244
  1026. Passage 245
  1027. Passage 246
  1028. Passage 247
  1029. Passage 248
  1030. Passage 249
  1031. Passage 250
  1032. Passage 251
  1033. Passage 252
  1034. Passage 253
  1035. Passage 254
  1036. Passage 255
  1037. Passage 256
  1038. Passage 257
  1039. Passage 258
  1040. Passage 259
  1041. Passage 260
  1042. Passage 261
  1043. Passage 262
  1044. Passage 263
  1045. Passage 264
  1046. Passage 265
  1047. Passage 266
  1048. Passage 267
  1049. Passage 268
  1050. Passage 269
  1051. Passage 270
  1052. Passage 271
  1053. Passage 272
  1054. Passage 273
  1055. Passage 274
  1056. Passage 275
  1057. Passage 276
  1058. Passage 277
  1059. Passage 278
  1060. Passage 279
  1061. Passage 280
  1062. Passage 281
  1063. Passage 282
  1064. Passage 283
  1065. Passage 284
  1066. Passage 285
  1067. Passage 286
  1068. Passage 287
  1069. Passage 288
  1070. Passage 289
  1071. Passage 290
  1072. Passage 291
  1073. Passage 292
  1074. Passage 293
  1075. Passage 294
  1076. Passage 295
  1077. Passage 296
  1078. Passage 297
  1079. Passage 298
  1080. Passage 299
  1081. Passage 300
  1082. Passage 301
  1083. Passage 302
  1084. Passage 303
  1085. Passage 304
  1086. Passage 305
  1087. Passage 306
  1088. Passage 307
  1089. Passage 308
  1090. Passage 309
  1091. Passage 310
  1092. Passage 311
  1093. Passage 312
  1094. Passage 313
  1095. Passage 314
  1096. Passage 315
  1097. Question 1
  1098. Question 2
  1099. Question 3
  1100. Question 4
  1101. Question 5
  1102. Question 6
  1103. Question 7
  1104. Question 8
  1105. Question 9
  1106. Question 10
  1107. Question 11
  1108. Question 12
  1109. Question 13
  1110. Question 14
  1111. Question 15
  1112. Question 16
  1113. Question 17
  1114. Question 18
  1115. Question 19
  1116. Question 20
  1117. Question 21
  1118. Question 22
  1119. Question 23
  1120. Question 24
  1121. Question 25
  1122. Question 26
  1123. Question 27
  1124. Question 28
  1125. Question 29
  1126. Question 30
  1127. Question 31
  1128. Question 32
  1129. Question 33
  1130. Question 34
  1131. Question 35
  1132. Question 36
  1133. Question 37
  1134. Question 38
  1135. Question 39
  1136. Question 40
  1137. Question 41
  1138. Question 42
  1139. Question 43
  1140. Question 44
  1141. Question 45
  1142. Question 46
  1143. Question 47
  1144. Question 48
  1145. Ganesha Ashtottara Shatanamavali English
  1146. Ganesha Ashtottara Shatanamavali Kannada
  1147. Ganesha Ashtottara Shatanamavali Telugu
  1148. Ganesha Ashtottara Shatanamavali Hindi
  1149. Ganesha Ashtottara Shatanamavali Sanskrit
  1150. Ganesha Ashtottara Shatanamavali Tamil
  1151. Vinayaka Ashtottara Shatanamavali English
  1152. Vinayaka Ashtottara Shatanamavali Kannada
  1153. Vinayaka Ashtottara Shatanamavali Telugu
  1154. Vinayaka Ashtottara Shatanamavali Hindi
  1155. Vinayaka Ashtottara Shatanamavali Sanskrit
  1156. Vinayaka Ashtottara Shatanamavali Tamil
  1157. Ganapati Gakara Ashtottara Shatanamavali English
  1158. Ganapati Gakara Ashtottara Shatanamavali Kannada
  1159. Ganapati Gakara Ashtottara Shatanamavali Telugu
  1160. Ganapati Gakara Ashtottara Shatanamavali Hindi
  1161. Ganapati Gakara Ashtottara Shatanamavali Sanskrit
  1162. Ganapati Gakara Ashtottara Shatanamavali Tamil
  1163. Sri Subramanya Ashtottara Shatanamavali English
  1164. Sri Subramanya Ashtottara Shatanamavali Kannada
  1165. Sri Subramanya Ashtottara Shatanamavali Telugu
  1166. Sri Subramanya Ashtottara Shatanamavali Hindi
  1167. Sri Subramanya Ashtottara Shatanamavali Sanskrit
  1168. Sri Subramanya Ashtottara Shatanamavali Tamil
  1169. Shiva Ashtottara Shatanamavali English
  1170. Shiva Ashtottara Shatanamavali Kannada
  1171. Shiva Ashtottara Shatanamavali Telugu
  1172. Shiva Ashtottara Shatanamavali Hindi
  1173. Shiva Ashtottara Shatanamavali Sanskrit
  1174. Shiva Ashtottara Shatanamavali Tamil
  1175. Satyanarayana Ashtottara Shatanamavali (Type 1) English
  1176. Satyanarayana Ashtottara Shatanamavali (Type 1) Kannada
  1177. Satyanarayana Ashtottara Shatanamavali (Type 1) Telugu
  1178. Satyanarayana Ashtottara Shatanamavali (Type 1) Hindi
  1179. Satyanarayana Ashtottara Shatanamavali (Type 1) Sanskrit
  1180. Satyanarayana Ashtottara Shatanamavali (Type 1) Tamil
  1181. Sri Durga Ashtottara Shatanamavali English
  1182. Sri Durga Ashtottara Shatanamavali Kannada
  1183. Sri Durga Ashtottara Shatanamavali Telugu
  1184. Sri Durga Ashtottara Shatanamavali Hindi
  1185. Sri Durga Ashtottara Shatanamavali Sanskrit
  1186. Sri Durga Ashtottara Shatanamavali Tamil
  1187. Sri Krishna Ashtottara Shatanamavali English
  1188. Sri Krishna Ashtottara Shatanamavali Kannada
  1189. Sri Krishna Ashtottara Shatanamavali Telugu
  1190. Sri Krishna Ashtottara Shatanamavali Hindi
  1191. Sri Krishna Ashtottara Shatanamavali Sanskrit
  1192. Sri Krishna Ashtottara Shatanamavali Tamil
  1193. Sri Lakshmi Ashtottara Shatanamavali English
  1194. Sri Lakshmi Ashtottara Shatanamavali Kannada
  1195. Sri Lakshmi Ashtottara Shatanamavali Telugu
  1196. Sri Lakshmi Ashtottara Shatanamavali Hindi
  1197. Sri Lakshmi Ashtottara Shatanamavali Sanskrit
  1198. Sri Lakshmi Ashtottara Shatanamavali Tamil
  1199. Venkateshwara Ashtottara Shatanamavali English
  1200. Venkateshwara Ashtottara Shatanamavali Kannada
  1201. Venkateshwara Ashtottara Shatanamavali Telugu
  1202. Venkateshwara Ashtottara Shatanamavali Hindi
  1203. Venkateshwara Ashtottara Shatanamavali Sanskrit
  1204. Venkateshwara Ashtottara Shatanamavali Tamil
  1205. Batuka Bhairava Ashtottara Shatanamavali English
  1206. Batuka Bhairava Ashtottara Shatanamavali Kannada
  1207. Batuka Bhairava Ashtottara Shatanamavali Telugu
  1208. Batuka Bhairava Ashtottara Shatanamavali Hindi
  1209. Batuka Bhairava Ashtottara Shatanamavali Sanskrit
  1210. Batuka Bhairava Ashtottara Shatanamavali Tamil
  1211. Sri Lakshmi Narasimha Ashtottara Shatanamavali English
  1212. Sri Lakshmi Narasimha Ashtottara Shatanamavali Kannada
  1213. Sri Lakshmi Narasimha Ashtottara Shatanamavali Telugu
  1214. Sri Lakshmi Narasimha Ashtottara Shatanamavali Hindi
  1215. Sri Lakshmi Narasimha Ashtottara Shatanamavali Sanskrit
  1216. Sri Lakshmi Narasimha Ashtottara Shatanamavali Tamil
  1217. Sri Kali Ashtottara Shatanamavali English
  1218. Sri Kali Ashtottara Shatanamavali Kannada
  1219. Sri Kali Ashtottara Shatanamavali Telugu
  1220. Sri Kali Ashtottara Shatanamavali Hindi
  1221. Sri Kali Ashtottara Shatanamavali Sanskrit
  1222. Sri Kali Ashtottara Shatanamavali Tamil
  1223. Sri Saraswati Ashtottara Shatanamavali English
  1224. Sri Saraswati Ashtottara Shatanamavali Kannada
  1225. Sri Saraswati Ashtottara Shatanamavali Telugu
  1226. Sri Saraswati Ashtottara Shatanamavali Hindi
  1227. Sri Saraswati Ashtottara Shatanamavali Sanskrit
  1228. Sri Saraswati Ashtottara Shatanamavali Tamil
  1229. Sri Mangala Gowri Ashtottara Shatanamavali English
  1230. Sri Mangala Gowri Ashtottara Shatanamavali Kannada
  1231. Sri Mangala Gowri Ashtottara Shatanamavali Telugu
  1232. Sri Mangala Gowri Ashtottara Shatanamavali Hindi
  1233. Sri Mangala Gowri Ashtottara Shatanamavali Sanskrit
  1234. Sri Mangala Gowri Ashtottara Shatanamavali Tamil
  1235. Sri Rama Ashtottara Shatanamavali English
  1236. Sri Rama Ashtottara Shatanamavali Kannada
  1237. Sri Rama Ashtottara Shatanamavali Telugu
  1238. Sri Rama Ashtottara Shatanamavali Hindi
  1239. Sri Rama Ashtottara Shatanamavali Sanskrit
  1240. Sri Rama Ashtottara Shatanamavali Tamil
  1241. Sri Sita Ashtottara Shatanamavali (Type 1) English
  1242. Sri Sita Ashtottara Shatanamavali (Type 1) Kannada
  1243. Sri Sita Ashtottara Shatanamavali (Type 1) Telugu
  1244. Sri Sita Ashtottara Shatanamavali (Type 1) Hindi
  1245. Sri Sita Ashtottara Shatanamavali (Type 1) Sanskrit
  1246. Sri Sita Ashtottara Shatanamavali (Type 1) Tamil
  1247. Sri Sita Ashtottara Shatanamavali (Type 2) English
  1248. Sri Sita Ashtottara Shatanamavali (Type 2) Kannada
  1249. Sri Sita Ashtottara Shatanamavali (Type 2) Telugu
  1250. Sri Sita Ashtottara Shatanamavali (Type 2) Hindi
  1251. Sri Sita Ashtottara Shatanamavali (Type 2) Sanskrit
  1252. Sri Sita Ashtottara Shatanamavali (Type 2) Tamil
  1253. Sri Anjaneya Ashtottara Shatanamavali English
  1254. Sri Anjaneya Ashtottara Shatanamavali Kannada
  1255. Sri Anjaneya Ashtottara Shatanamavali Telugu
  1256. Sri Anjaneya Ashtottara Shatanamavali Hindi
  1257. Sri Anjaneya Ashtottara Shatanamavali Sanskrit
  1258. Sri Anjaneya Ashtottara Shatanamavali Tamil
  1259. Surya Ashtottara Shatanamavali English
  1260. Surya Ashtottara Shatanamavali Kannada
  1261. Surya Ashtottara Shatanamavali Telugu
  1262. Surya Ashtottara Shatanamavali Hindi
  1263. Surya Ashtottara Shatanamavali Sanskrit
  1264. Surya Ashtottara Shatanamavali Tamil
  1265. Chandra Ashtottara Shatanamavali English
  1266. Chandra Ashtottara Shatanamavali Kannada
  1267. Chandra Ashtottara Shatanamavali Telugu
  1268. Chandra Ashtottara Shatanamavali Hindi
  1269. Chandra Ashtottara Shatanamavali Sanskrit
  1270. Chandra Ashtottara Shatanamavali Tamil
  1271. Angaraka Ashtottara Shatanamavali English
  1272. Angaraka Ashtottara Shatanamavali Kannada
  1273. Angaraka Ashtottara Shatanamavali Telugu
  1274. Angaraka Ashtottara Shatanamavali Hindi
  1275. Angaraka Ashtottara Shatanamavali Sanskrit
  1276. Angaraka Ashtottara Shatanamavali Tamil
  1277. Budha Ashtottara Shatanamavali English
  1278. Budha Ashtottara Shatanamavali Kannada
  1279. Budha Ashtottara Shatanamavali Telugu
  1280. Budha Ashtottara Shatanamavali Hindi
  1281. Budha Ashtottara Shatanamavali Sanskrit
  1282. Budha Ashtottara Shatanamavali Tamil
  1283. Bruhaspati Ashtottara Shatanamavali English
  1284. Bruhaspati Ashtottara Shatanamavali Kannada
  1285. Bruhaspati Ashtottara Shatanamavali Telugu
  1286. Bruhaspati Ashtottara Shatanamavali Hindi
  1287. Bruhaspati Ashtottara Shatanamavali Sanskrit
  1288. Bruhaspati Ashtottara Shatanamavali Tamil
  1289. Shukra Ashtottara Shatanamavali English
  1290. Shukra Ashtottara Shatanamavali Kannada
  1291. Shukra Ashtottara Shatanamavali Telugu
  1292. Shukra Ashtottara Shatanamavali Hindi
  1293. Shukra Ashtottara Shatanamavali Sanskrit
  1294. Shukra Ashtottara Shatanamavali Tamil
  1295. Shani Ashtottara Shatanamavali English
  1296. Shani Ashtottara Shatanamavali Kannada
  1297. Shani Ashtottara Shatanamavali Telugu
  1298. Shani Ashtottara Shatanamavali Hindi
  1299. Shani Ashtottara Shatanamavali Sanskrit
  1300. Shani Ashtottara Shatanamavali Tamil
  1301. Rahu Ashtottara Shatanamavali English
  1302. Rahu Ashtottara Shatanamavali Kannada
  1303. Rahu Ashtottara Shatanamavali Telugu
  1304. Rahu Ashtottara Shatanamavali Hindi
  1305. Rahu Ashtottara Shatanamavali Sanskrit
  1306. Rahu Ashtottara Shatanamavali Tamil
  1307. Ketu Ashtottara Shatanamavali English
  1308. Ketu Ashtottara Shatanamavali Kannada
  1309. Ketu Ashtottara Shatanamavali Telugu
  1310. Ketu Ashtottara Shatanamavali Hindi
  1311. Ketu Ashtottara Shatanamavali Sanskrit
  1312. Ketu Ashtottara Shatanamavali Tamil
  1313. Dattatreya Ashtottara Shatanamavali English
  1314. Dattatreya Ashtottara Shatanamavali Kannada
  1315. Dattatreya Ashtottara Shatanamavali Telugu
  1316. Dattatreya Ashtottara Shatanamavali Hindi
  1317. Dattatreya Ashtottara Shatanamavali Sanskrit
  1318. Dattatreya Ashtottara Shatanamavali Tamil
  1319. Ayyappa Ashtottara Shatanamavali English
  1320. Ayyappa Ashtottara Shatanamavali Kannada
  1321. Ayyappa Ashtottara Shatanamavali Telugu
  1322. Ayyappa Ashtottara Shatanamavali Hindi
  1323. Ayyappa Ashtottara Shatanamavali Sanskrit
  1324. Ayyappa Ashtottara Shatanamavali Tamil
  1325. Ananta Padmanabha Ashtottara Shatanamavali English
  1326. Ananta Padmanabha Ashtottara Shatanamavali Kannada
  1327. Ananta Padmanabha Ashtottara Shatanamavali Telugu
  1328. Ananta Padmanabha Ashtottara Shatanamavali Hindi
  1329. Ananta Padmanabha Ashtottara Shatanamavali Sanskrit
  1330. Ananta Padmanabha Ashtottara Shatanamavali Tamil
  1331. Gayatri Ashtottara Shatanamavali (Type 1) English
  1332. Gayatri Ashtottara Shatanamavali (Type 1) Kannada
  1333. Gayatri Ashtottara Shatanamavali (Type 1) Telugu
  1334. Gayatri Ashtottara Shatanamavali (Type 1) Hindi
  1335. Gayatri Ashtottara Shatanamavali (Type 1) Sanskrit
  1336. Gayatri Ashtottara Shatanamavali (Type 1) Tamil
  1337. Gayatri Ashtottara Shatanamavali (Type 2) English
  1338. Gayatri Ashtottara Shatanamavali (Type 2) Kannada
  1339. Gayatri Ashtottara Shatanamavali (Type 2) Telugu
  1340. Gayatri Ashtottara Shatanamavali (Type 2) Hindi
  1341. Gayatri Ashtottara Shatanamavali (Type 2) Sanskrit
  1342. Gayatri Ashtottara Shatanamavali (Type 2) Tamil
  1343. Sri Tulasi Ashtottara Shatanamavali English
  1344. Sri Tulasi Ashtottara Shatanamavali Kannada
  1345. Sri Tulasi Ashtottara Shatanamavali Telugu
  1346. Sri Tulasi Ashtottara Shatanamavali Hindi
  1347. Sri Tulasi Ashtottara Shatanamavali Sanskrit
  1348. Sri Tulasi Ashtottara Shatanamavali Tamil
  1349. Sri Valli Ashtottara Shatanamavali English
  1350. Sri Valli Ashtottara Shatanamavali Kannada
  1351. Sri Valli Ashtottara Shatanamavali Telugu
  1352. Sri Valli Ashtottara Shatanamavali Hindi
  1353. Sri Valli Ashtottara Shatanamavali Sanskrit
  1354. Sri Valli Ashtottara Shatanamavali Tamil
  1355. Sri Devasena Ashtottara Shatanamavali English
  1356. Sri Devasena Ashtottara Shatanamavali Kannada
  1357. Sri Devasena Ashtottara Shatanamavali Telugu
  1358. Sri Devasena Ashtottara Shatanamavali Hindi
  1359. Sri Devasena Ashtottara Shatanamavali Sanskrit
  1360. Sri Devasena Ashtottara Shatanamavali Tamil
  1361. Sri Varaha Ashtottara Shatanamavali English
  1362. Sri Varaha Ashtottara Shatanamavali Kannada
  1363. Sri Varaha Ashtottara Shatanamavali Telugu
  1364. Sri Varaha Ashtottara Shatanamavali Hindi
  1365. Sri Varaha Ashtottara Shatanamavali Sanskrit
  1366. Sri Varaha Ashtottara Shatanamavali Tamil
  1367. Sri Varahi Ashtottara Shatanamavali English
  1368. Sri Varahi Ashtottara Shatanamavali Kannada
  1369. Sri Varahi Ashtottara Shatanamavali Telugu
  1370. Sri Varahi Ashtottara Shatanamavali Hindi
  1371. Sri Varahi Ashtottara Shatanamavali Sanskrit
  1372. Sri Varahi Ashtottara Shatanamavali Tamil
  1373. Sri Veerabhadra Ashtottara Shatanamavali English
  1374. Sri Veerabhadra Ashtottara Shatanamavali Kannada
  1375. Sri Veerabhadra Ashtottara Shatanamavali Telugu
  1376. Sri Veerabhadra Ashtottara Shatanamavali Hindi
  1377. Sri Veerabhadra Ashtottara Shatanamavali Sanskrit
  1378. Sri Veerabhadra Ashtottara Shatanamavali Tamil
  1379. Sri Hayagreeva Ashtottara Shatanamavali English
  1380. Sri Hayagreeva Ashtottara Shatanamavali Kannada
  1381. Sri Hayagreeva Ashtottara Shatanamavali Telugu
  1382. Sri Hayagreeva Ashtottara Shatanamavali Hindi
  1383. Sri Hayagreeva Ashtottara Shatanamavali Sanskrit
  1384. Sri Hayagreeva Ashtottara Shatanamavali Tamil
  1385. Sri Shankaracharya Ashtottara Shatanamavali English
  1386. Sri Shankaracharya Ashtottara Shatanamavali Kannada
  1387. Sri Shankaracharya Ashtottara Shatanamavali Telugu
  1388. Sri Shankaracharya Ashtottara Shatanamavali Hindi
  1389. Sri Shankaracharya Ashtottara Shatanamavali Sanskrit
  1390. Sri Shankaracharya Ashtottara Shatanamavali Tamil
  1391. Sri Raghavendra Ashtottara Shatanamavali English
  1392. Sri Raghavendra Ashtottara Shatanamavali Kannada
  1393. Sri Raghavendra Ashtottara Shatanamavali Telugu
  1394. Sri Raghavendra Ashtottara Shatanamavali Hindi
  1395. Sri Raghavendra Ashtottara Shatanamavali Sanskrit
  1396. Sri Raghavendra Ashtottara Shatanamavali Tamil
  1397. Satyanarayana Ashtottara Shatanamavali (Type 2) English
  1398. Satyanarayana Ashtottara Shatanamavali (Type 2) Kannada
  1399. Satyanarayana Ashtottara Shatanamavali (Type 2) Telugu
  1400. Satyanarayana Ashtottara Shatanamavali (Type 2) Hindi
  1401. Satyanarayana Ashtottara Shatanamavali (Type 2) Sanskrit
  1402. Satyanarayana Ashtottara Shatanamavali (Type 2) Tamil
  1403. Sri Kalabhairava Kakara Ashtottara Shatanamavali English
  1404. Sri Kalabhairava Kakara Ashtottara Shatanamavali Kannada
  1405. Sri Kalabhairava Kakara Ashtottara Shatanamavali Telugu
  1406. Sri Kalabhairava Kakara Ashtottara Shatanamavali Hindi
  1407. Sri Kalabhairava Kakara Ashtottara Shatanamavali Sanskrit
  1408. Sri Kalabhairava Kakara Ashtottara Shatanamavali Tamil
  1409. Sri Adilakshmi Ashtottara Shatanamavali English
  1410. Sri Adilakshmi Ashtottara Shatanamavali Kannada
  1411. Sri Adilakshmi Ashtottara Shatanamavali Telugu
  1412. Sri Adilakshmi Ashtottara Shatanamavali Hindi
  1413. Sri Adilakshmi Ashtottara Shatanamavali Sanskrit
  1414. Sri Adilakshmi Ashtottara Shatanamavali Tamil
  1415. Sri Dhanyalakshmi Ashtottara Shatanamavali English
  1416. Sri Dhanyalakshmi Ashtottara Shatanamavali Kannada
  1417. Sri Dhanyalakshmi Ashtottara Shatanamavali Telugu
  1418. Sri Dhanyalakshmi Ashtottara Shatanamavali Hindi
  1419. Sri Dhanyalakshmi Ashtottara Shatanamavali Sanskrit
  1420. Sri Dhanyalakshmi Ashtottara Shatanamavali Tamil
  1421. Sri Dhairyalakshmi Ashtottara Shatanamavali English
  1422. Sri Dhairyalakshmi Ashtottara Shatanamavali Kannada
  1423. Sri Dhairyalakshmi Ashtottara Shatanamavali Telugu
  1424. Sri Dhairyalakshmi Ashtottara Shatanamavali Hindi
  1425. Sri Dhairyalakshmi Ashtottara Shatanamavali Sanskrit
  1426. Sri Dhairyalakshmi Ashtottara Shatanamavali Tamil
  1427. Sri Gajalakshmi Ashtottara Shatanamavali English
  1428. Sri Gajalakshmi Ashtottara Shatanamavali Kannada
  1429. Sri Gajalakshmi Ashtottara Shatanamavali Telugu
  1430. Sri Gajalakshmi Ashtottara Shatanamavali Hindi
  1431. Sri Gajalakshmi Ashtottara Shatanamavali Sanskrit
  1432. Sri Gajalakshmi Ashtottara Shatanamavali Tamil
  1433. Sri Santanalakshmi Ashtottara Shatanamavali English
  1434. Sri Santanalakshmi Ashtottara Shatanamavali Kannada
  1435. Sri Santanalakshmi Ashtottara Shatanamavali Telugu
  1436. Sri Santanalakshmi Ashtottara Shatanamavali Hindi
  1437. Sri Santanalakshmi Ashtottara Shatanamavali Sanskrit
  1438. Sri Santanalakshmi Ashtottara Shatanamavali Tamil
  1439. Sri Vijayalakshmi Ashtottara Shatanamavali English
  1440. Sri Vijayalakshmi Ashtottara Shatanamavali Kannada
  1441. Sri Vijayalakshmi Ashtottara Shatanamavali Telugu
  1442. Sri Vijayalakshmi Ashtottara Shatanamavali Hindi
  1443. Sri Vijayalakshmi Ashtottara Shatanamavali Sanskrit
  1444. Sri Vijayalakshmi Ashtottara Shatanamavali Tamil
  1445. Sri Vidyalakshmi Ashtottara Shatanamavali English
  1446. Sri Vidyalakshmi Ashtottara Shatanamavali Kannada
  1447. Sri Vidyalakshmi Ashtottara Shatanamavali Telugu
  1448. Sri Vidyalakshmi Ashtottara Shatanamavali Hindi
  1449. Sri Vidyalakshmi Ashtottara Shatanamavali Sanskrit
  1450. Sri Vidyalakshmi Ashtottara Shatanamavali Tamil
  1451. Sri Aishwaryalakshmi Ashtottara Shatanamavali English
  1452. Sri Aishwaryalakshmi Ashtottara Shatanamavali Kannada
  1453. Sri Aishwaryalakshmi Ashtottara Shatanamavali Telugu
  1454. Sri Aishwaryalakshmi Ashtottara Shatanamavali Hindi
  1455. Sri Aishwaryalakshmi Ashtottara Shatanamavali Sanskrit
  1456. Sri Aishwaryalakshmi Ashtottara Shatanamavali Tamil
  1457. Sri Kamakshi Ashtottara Shatanamavali English
  1458. Sri Kamakshi Ashtottara Shatanamavali Kannada
  1459. Sri Kamakshi Ashtottara Shatanamavali Telugu
  1460. Sri Kamakshi Ashtottara Shatanamavali Hindi
  1461. Sri Kamakshi Ashtottara Shatanamavali Sanskrit
  1462. Sri Kamakshi Ashtottara Shatanamavali Tamil
  1463. Sri Pratyangira Ashtottara Shatanamavali English
  1464. Sri Pratyangira Ashtottara Shatanamavali Kannada
  1465. Sri Pratyangira Ashtottara Shatanamavali Telugu
  1466. Sri Pratyangira Ashtottara Shatanamavali Hindi
  1467. Sri Pratyangira Ashtottara Shatanamavali Sanskrit
  1468. Sri Pratyangira Ashtottara Shatanamavali Tamil
  1469. Aam Ka Mitha Achar
  1470. Aamti
  1471. Achari Paneer
  1472. Adai
  1473. Agra Petha
  1474. Extra Creamy Potato Soup
  1475. Aloo Wadiyan Rasedaar
  1476. Aloo Baigan
  1477. Aloo Bonda
  1478. Aloo Dahi Wale
  1479. Aloo Dahiwada
  1480. Aloo Gobi
  1481. Aloo Ka Bharta
  1482. Aloo Ki Khichdi
  1483. Aloo Kurkure
  1484. Aloo Mangodi
  1485. Aloo Methi
  1486. Aloo Mewawale
  1487. Aloo Palak
  1488. Aloo Patta Gobi
  1489. Aloo Phulkopir Dalna
  1490. Aloo Poha
  1491. Aloo Posto
  1492. Aloo Pulao
  1493. Aloo Sabzi
  1494. Aloo Took
  1495. Alutua
  1496. Amer Chatni
  1497. Amer Mishti Achar
  1498. Amla Ki Chutney
  1499. Amla Pickle
  1500. Amti
  1501. Anaraser Chatni
  1502. Appam
  1503. Apple and Mango Chutney
  1504. Apple and Onion Bake
  1505. Apple Jam
  1506. Apple Jelly
  1507. Apricot and Pineapple Jam
  1508. Apricot Chutney
  1509. Apricot Jam
  1510. Apricot Sauce
  1511. Aratikaaya Masala Pulusu
  1512. Arbi Pickle
  1513. Arhar Dal
  1514. Arhar Dal with Green Mango
  1515. Asoondi
  1516. Atta Chakuli
  1517. Atte Ka Seera
  1518. Aviyal
  1519. Baadusha
  1520. Baby Corn Soup (Type 1)
  1521. Baby Corn Soup (Type 2)
  1522. Badam Ka Seera
  1523. Badam Kaju Pista Burger
  1524. Badam Kheer
  1525. Bagala Baath
  1526. Baghare Baigan
  1527. Baked Brinjal Salad
  1528. Banana Chips
  1529. Banana Chutney
  1530. Bandha Kobhi Chadchadee
  1531. Basic Bean Soup
  1532. Basil and Badam Soup
  1533. Bathue Raita
  1534. Beetroot Halwa
  1535. Begun Bhaja
  1536. Bendakaya Fry
  1537. Besan Dhokla
  1538. Bhaja Muga Dali
  1539. Bharwan Baingan
  1540. Bhel Puri
  1541. Bhindi Anardana
  1542. Bhindi Bhaji
  1543. Black Bean Soup
  1544. Black Eye Beans Curry
  1545. Boiled Rice
  1546. Bombay Chapathi Sandwich
  1547. Bombay Chiwda
  1548. Boondi Raita
  1549. Bread Barfi
  1550. Brinjal Caviar
  1551. Brinjal Rice
  1552. Buttermilk Dosa
  1553. Cabbage Apple Delight
  1554. Cabbage Paratha
  1555. Cabbage Poriyal
  1556. Cabbage Raita
  1557. Carrot and Cilantro Soup
  1558. Carrot and Lentil Soup
  1559. Carrot Chutney
  1560. Carrot Halwa
  1561. Carrot Jam
  1562. Carrot Kheer
  1563. Carrot Muffin
  1564. Carrot Pickle
  1565. Carrot Rice
  1566. Carrots in Foil
  1567. Cashew Nut Chutney
  1568. Cauliflower Turnip and Carrot Pickle
  1569. Celery Payaru Thoran
  1570. Chakkar Pongal
  1571. Chana Dal
  1572. Chana Dal Paratha
  1573. Chanar Bara
  1574. Chanar Dalna
  1575. Chane Jaiselmer Ke
  1576. Charupodi
  1577. Cheese Pakora
  1578. Cheesy Potato Croquettes
  1579. Cheesy Roast Potatoes
  1580. Cherry Jam
  1581. Chhundo
  1582. Chick Peas Fondue
  1583. Chickoo Halwa
  1584. Chilli Paneer
  1585. Chinese Fried Vegetables
  1586. Cholar Dal
  1587. Chole
  1588. Chum Chum
  1589. Chunchi Patra Pitra
  1590. Cilantro Chutney
  1591. Cocktail Sauce
  1592. Coconut Barfi
  1593. Coconut Chikki
  1594. Coconut Chutney (Type 1)
  1595. Coconut Chutney (Type 2)
  1596. Coconut Chutney (Type 3)
  1597. Coconut Custard Halwa
  1598. Sri Kukke Subrahmanya Temple (Subramanya)
  1599. Manjunatha Swamy Temple (Dharmasthala)
  1600. Shree Mahaganapathi Temple (Southadka)
  1601. Shri Vinayaka Temple (Aane Gudde - Kumbashi)
  1602. Shri Idagunji Maha Ganapati Temple (Idagunji)
  1603. Mookambika Temple (Kollur)
  1604. Sri Krishna Matha (Udupi)
  1605. Sri Manjunatha Temple (Kadri)
  1606. Mangaladevi Temple (Mangalore)
  1607. Gokarnanatha Temple (Kudroli)
  1608. Sharadamba Temple (Sringeri)
  1609. Annapooreshwari Temple (Horanadu)
  1610. Durga Parameshwari Temple (Kateel)
  1611. Shri Brahmi Durgaparameshwari Temple (Kamalashile)
  1612. Shri Murudeshwara Temple (Murudeshwara)
  1613. Mahabaleshwar Temple (Gokarna)
  1614. Shri Rajarajeshwari Temple (Polali)
  1615. Shri Shankaranarayana Temple (Shankaranarayana)
  1616. Guru Narasimha Temple (Saligrama)
  1617. Shri Ananthapadmanabha Temple (Kudupu)
  1618. Shri Sada Shivarudra Temple (Ujire)
  1619. Shri Shishileshwara Temple (Shishila)
  1620. Shri Vaidyanatheshwara Temple (Kokkada)
  1621. Shri Rishyasringeshwara Temple (Kigga)
  1622. Annapoorneshwari Temple (Hosanadu Kodyadka)
  1623. Shree Sharadhamba Temple (Koodli)
  1624. Sri Surya Narayana Temple (Naravi)
  1625. Kalaseshwara Temple (Kalasa)
  1626. Shri Jagadguru Badari Shankaracharya Samsthanam (Shakatapuram)
  1627. Guli Guli Shankareshwara Swamy Temple (Shimoga)
  1628. Sri Vinayaka Temple (Guddattu)
  1629. Mahalasa Narayani (Verna)
  1630. Birla Radha Krishna Mandir (Sancoale)
  1631. Shree Shantadurga Temple (Ponda)
  1632. Ramnathi Temple (Loutolim)
  1633. Mahalaxmi Temple (Bandora)
  1634. Nagueshi Temple (Ponda)
  1635. Shri Ganesha Temple (Farmagudi)
  1636. Devaki Krishna Temple (Marcel)
  1637. Lairai Devi Temple (Shirgao)
  1638. Yoga and Bhoga Narasimha (Devarayana Durga)
  1639. Goravanahalli Mahalakshmi Temple (Tumkur)
  1640. Seebi Narasimha Swamy Temple (Tumkur)
  1641. Aprameya Swamy and Ambegalu Krishna Temple (Mallur)
  1642. Gavi Gangadhareshwara Swamy Temple (Bengaluru)
  1643. Venugopala Swamy Temple (Mysore)
  1644. Basaralu Mallikarjuna Temple (Mandya)
  1645. Sarvajna Peetha Temple (Valur)
  1646. Shri Narasimha Jharna Mandir (Bidar)
  1647. Papanash Mahadev Temple (Bidar)
  1648. Dhutpapeshwar Temple (Rajapur)
  1649. Swayambhu Ganpati Temple (Ratnagiri)
  1650. Shree Marikamba Temple (Sirsi)
  1651. Sahasralinga (Sirsi)
  1652. Tarakeshwara (Hanagal)
  1653. Sodhe Sri Vadiraja Matha (Sirsi)
  1654. Shree Swarnavalli Matha (Sirsi)
  1655. Mahadev Temple (Tambdi Surla)
  1656. Shripad Shrivallabha Dattatreya Temple (Kuruvapura)
  1657. Sri Raghavendra Swamy Mutt (Mantralayam)
  1658. Virupaksha Temple (Bellary)
  1659. Hazara Rama Temple (Bellary)
  1660. Sandur Kumaraswamy Temple (Bellary)
  1661. Mylara Lingeshwara Temple (Bellary)
  1662. Pattadakallu Virupaksha Temple (Bagalkot)
  1663. Kudalasangama Sangameshwara Temple (Bagalkot)
  1664. Banashankari Temple (Badami)
  1665. ISKCON Krishna Temple (Bengaluru)
  1666. Halasuru Someshwara Temple (Bengaluru)
  1667. Kadu Malleshwara Temple (Bengaluru)
  1668. Holalkere Bayalu Ganapathi Temple (Chitradurga)
  1669. Nayakanahatti Thipperudra Swamy Temple (Chitradurga)
  1670. Halurameshwara Temple (Chitradurga)
  1671. Dasharatha Rama Kshetra (Chitradurga)
  1672. Adumalleshwara Temple (Chitradurga)
  1673. Hidambheshwar Temple (Chitradurga)
  1674. Ghati Subramanya Temple (Doddaballapur)
  1675. Begur Panchalingeshwara Temple (Bengaluru)
  1676. Champakadhama Swamy Temple (Bengaluru)
  1677. Ragigudda Sri Prasanna Anjaneya Swamy Temple (Bengaluru)
  1678. The Monkey and the Wedge
  1679. The Jackal and the Drum
  1680. The Fall and Rise of a Merchant
  1681. The Foolish Sage
  1682. The Greedy Jackal and the Fighting Goats
  1683. The Clever Crows and the Cunning Jackal
  1684. The Cunning Heron and the Clever Crab
  1685. The Clever Hare and the Foolish Lion
  1686. The Bug and the Flea
  1687. The story of a Blue Jackal
  1688. The Lion, the Camel, the Jackal and the Crow
  1689. The Tittibha Birds and the Sea