Results for "this Pointer"

Total results: 803

  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 2
  262. C Program to concatenate two strings using built in functions
  263. C Program to concatenate two strings into a third string using built in functions
  264. C Program to concatenate two strings into a third string without using built in functions
  265. C Program to copy from source string to destination string using built in functions
  266. C Program to copy from source string to destination string without using built in functions
  267. C Program to find sum of two numbers using command line arguments
  268. C Program to find sum of two numbers using functions with returning the value
  269. C Program to find sum of two numbers using functions without returning the value
  270. C Program to print first n odd numbers
  271. C Program to print first n even numbers
  272. C Program to print n odd numbers within range
  273. C Program to print n even numbers within range
  274. C Program to print first n odd and even numbers Type 2
  275. C Program to find the sum of first n odd numbers using for loop
  276. C Program to print the sum of n odd numbers using while
  277. C Program to print the sum of n odd numbers using do while
  278. C Program to print the sum of n odd numbers within range using for
  279. C Program to print the sum of n odd numbers within range using while
  280. C Program to print the sum of n odd numbers within range using do while
  281. C Program to find the sum of first n even numbers using for loop
  282. C Program to print the sum of n even numbers using while
  283. C Program to print the sum of n even numbers using do while
  284. C Program to print the sum of n odd and even numbers within range using do while
  285. C Program to convert binary to decimal number
  286. C Program to convert binary to hexadecimal number
  287. C Program to convert binary to octal number
  288. C Program to convert a decimal to binary number
  289. C Program to convert decimal to hexadecimal number
  290. C Program to convert a decimal to octal number
  291. C Program to convert octal to binary number
  292. C Program to convert an octal to decimal number
  293. C Program to convert octal to hexadecimal number
  294. C Program to convert kilometer to miles using preprocessor directive
  295. C Program to demonstrate calloc dynamic memory allocation
  296. C Program to demonstrate malloc dynamic memory allocation
  297. C Program to demonstrate malloc memset
  298. C Program to insert an element into specified location of an array
  299. C Program to delete an element from a specified location of an array
  300. C Program to delete duplicate elements from an array
  301. C Program to copy contents of one array to another
  302. C Program to find maximum element in an array without sorting
  303. C Program to find minimum element in an array without sorting
  304. C Program to merge two arrays one after the other
  305. C Program to find the sum of array elements
  306. C Program to find sum of two arrays
  307. C Program to search a key element using Binary Search method
  308. C Program to search a key element using Binary Search using Functions
  309. C Program to search a key element using Linear Search method
  310. C Program to search a key element using Linear Search using Functions
  311. C Program to add two matrix
  312. C Program to subtract two matrix
  313. C Program to find sum of lower triangle matrix
  314. C Program to find sum of upper triangle matrix
  315. C Program to add principal diagonal elements in a matrix
  316. C Program to transpose a matrix
  317. C Program to check if the entered matrix is magic square or not
  318. C Program to implement basic operation of Stacks using global variables
  319. C Program to implement basic operation of Stacks using arrays and pointers
  320. C Program to implement basic operation of Stacks using structures
  321. C Program to implement Stacks using Singly Linked List
  322. C Program to implement Stacks using Circular Linked List
  323. C Program to convert a valid Infix expression to postfix using Stacks
  324. C Program to convert a valid Infix expression to postfix using Structures
  325. C Program to evaluate a valid Postfix expression using Stacks
  326. C Program to find sum of n natural numbers using recursion
  327. C Program to find the factorial of a given number using recursion
  328. C Program to generate fibonacci series using recursion
  329. C Program to find nth fibonacci number using recursion
  330. C Program to search a key element using linear search using recursion
  331. C Program to search a key element using binary search using recursion
  332. C Program to implement Tower of Hanoi
  333. C Program to implement basic operations of Linear Queue using arrays and pointers
  334. C Program to implement basic operations of Circular Queue using arrays and pointers
  335. C Program to implement Priority Queues using array of structures
  336. C Program to implement Singly Linked List to insert and delete a node from front and display the contents of the Singly List
  337. C Program to implement Singly Linked List to insert and delete a node from rear and display the contents of the Singly List
  338. 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
  339. 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
  340. 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
  341. 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
  342. C Program to implement Linear Queue using Singly Linked List
  343. C Program to implement Circular Linked List to insert and delete a node from front and display the contents of the Circular List
  344. C Program to implement Circular Linked List to insert and delete a node from rear and display the contents of the Circular List
  345. 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
  346. C Program to implement Doubly Linked List to insert and delete a node from front and display the contents of the Doubly Linked List
  347. C Program to implement Doubly Linked List to insert and delete a node from rear and display the contents of the Doubly Linked List
  348. C Program to reverse a digit using recursion
  349. C Program to print prime numbers within a range using recursion
  350. C Program to check prime numbers using recursion
  351. C Program to sort an array using Bubble Sort
  352. C Program to sort an array using Bubble Sort using functions
  353. C Program to sort an array using Selection Sort
  354. C Program to sort an array using Insertion Sort
  355. C Program to sort an array using Insertion Sort using functions
  356. C Program to sort an array using Merge Sort
  357. C Program to sort an array using Shell Sort
  358. C Program to implement 01 Knapsack problem
  359. C Program to implement 01 Knapsack problem using recursion
  360. C Program to implement Fractional Knapsack problem using Greedy Method
  361. C Program to solve N Queens using greedy method
  362. C Program to implement Warshall's algorithm
  363. C Program to illustrate basic concept of pointers
  364. C Program to display value using star operator in pointers
  365. C Program to find string length using pointers
  366. C Program to find sum of array elements using pointers
  367. C Program to print an array in reverse direction using pointers
  368. C Program to demonstrate double pointer
  369. C Program to add matrices using pointer
  370. C Program to add matrices using function and pointer
  371. C Program to print if the architecture is supporting big endian or little endian
  372. C++ Program to initialize different datatypes and print the same on terminal
  373. C++ Program to find the division of two integer numbers
  374. C++ Program to find the sum of two integer numbers using classes and objects
  375. C++ Program to show usage of classes and objects
  376. C++ Program to find biggest of two numbers
  377. C++ Program to find biggest of three numbers
  378. C++ Program to sort an array using Merge Sort
  379. C++ Program to sort an array using Insertion Sort
  380. C++ Program to find biggest of two numbers using Inline Functions
  381. C++ Program to demonstrate sizeof operator
  382. C++ Program to demonstrate usage of reference types
  383. C++ Program to find sum of two numbers using pointer returning functions
  384. C++ Program for simple calculator to perform addition subtraction multiplication and division based on the symbol using switch statement
  385. C++ Program to demonstrate constructor overloading
  386. C++ Program to generate fibonacci series
  387. C++ Program to generate fibonacci series using class
  388. C++ Program to find factorial of a number without classes
  389. C++ Program to find factorial of a number using classes
  390. C++ Program to find factorial of a number using copy constructor
  391. C++ Program to demonstrate the use of address and value operator
  392. C# Program to print Hello World
  393. C# Program to add two numbers
  394. C# Program to subtract two numbers
  395. C# Program to multiply two numbers
  396. C# Program to divide two numbers
  397. C# Program to calculate area of pentagon
  398. C# Program to sort an array using Insertion Sort
  399. C# program to find Area of Circle
  400. C# program to find Area of Equilateral Triangle
  401. C# program to find Area of Isoceles Triangle
  402. Rust Program to print Hello World
  403. GO Lang Program to print Hello World
  404. JavaScript Program to display the date
  405. JavaScript Program to display an alert box
  406. PHP Program to print Hello World
  407. PHP Program to print Hello World using echo
  408. PHP Program to print Hello World in html tag
  409. PHP Program to print Hello World using print
  410. Ruby Program to display Hello World using Class
  411. Ruby Program to find odd or even number
  412. R Program to print Hello World on Console
  413. R Program to get input from user and print on Console
  414. Shell Script to find sum of n numbers
  415. Shell Script to find biggest of two numbers
  416. Shell Script to find biggest of three numbers using command line arguments
  417. Shell Script to find biggest of three numbers using nested if
  418. ADA Program to print Hello World
  419. ADA Program to print a integer number entered by user
  420. ADA Program to print a character entered by user
  421. ADA Program to print a string entered by user
  422. ADA Program to find the sum of two integer number
  423. ADA Program to find the difference of two integer number
  424. ADA Program to find the product of two integer number
  425. ADA Program to find the division of two integer number
  426. ADA Program to find area of square
  427. ADA Program to find perimeter of square
  428. ADA Program to find area of rectangle
  429. ADA Program to find perimeter of rectangle
  430. Haskell Program to print hello world
  431. Haskell Program to print integer entered by the user
  432. Haskell Program to print string entered by the user
  433. Haskell Program to print system information
  434. Haskell Program to print Fibonacci series
  435. Haskell Program to print factorial of a number
  436. Haskell Program to add two numbers
  437. Haskell Program to subtract two numbers
  438. Haskell Program to multiply two numbers
  439. Haskell Program to divide two numbers
  440. Haskell Program to convert string to lower case
  441. Haskell Program to convert string to upper case
  442. Julia Program to print Hello World
  443. Julia Program to print ASCII Values
  444. Kotlin Program to print Hello World
  445. Kotlin Program to demonstrate ArrayList
  446. Lua Program to add two numbers
  447. F# program to print Hello World
  448. Introduction to Java
  449. Features of Java
  450. Setting up the Java Development Kit (JDK)
  451. First Java Program
  452. Java Keywords
  453. Sets in Python
  454. Passage 1
  455. Passage 2
  456. Passage 3
  457. Passage 4
  458. Passage 5
  459. Passage 6
  460. Passage 7
  461. Passage 10
  462. Passage 12
  463. Passage 13
  464. Passage 14
  465. Passage 15
  466. Passage 16
  467. Passage 17
  468. Passage 18
  469. Passage 19
  470. Passage 20
  471. Passage 22
  472. Passage 23
  473. Passage 24
  474. Passage 25
  475. Passage 26
  476. Passage 27
  477. Passage 28
  478. Passage 29
  479. Passage 30
  480. Passage 31
  481. Passage 32
  482. Passage 33
  483. Passage 34
  484. Passage 36
  485. Passage 37
  486. Passage 38
  487. Passage 39
  488. Passage 40
  489. Passage 41
  490. Passage 42
  491. Passage 43
  492. Passage 44
  493. Passage 45
  494. Passage 47
  495. Passage 48
  496. Passage 49
  497. Passage 50
  498. Passage 51
  499. Passage 54
  500. Passage 55
  501. Passage 56
  502. Passage 58
  503. Passage 59
  504. Passage 61
  505. Passage 62
  506. Passage 63
  507. Passage 64
  508. Passage 65
  509. Passage 66
  510. Passage 67
  511. Passage 68
  512. Passage 71
  513. Passage 72
  514. Passage 73
  515. Passage 76
  516. Passage 77
  517. Passage 78
  518. Passage 81
  519. Passage 82
  520. Passage 83
  521. Passage 84
  522. Passage 85
  523. Passage 86
  524. Passage 87
  525. Passage 88
  526. Passage 89
  527. Passage 90
  528. Passage 91
  529. Passage 92
  530. Passage 93
  531. Passage 94
  532. Passage 95
  533. Passage 96
  534. Passage 97
  535. Passage 98
  536. Passage 99
  537. Passage 102
  538. Passage 103
  539. Passage 105
  540. Passage 106
  541. Passage 108
  542. Passage 109
  543. Passage 110
  544. Passage 113
  545. Passage 114
  546. Passage 115
  547. Passage 116
  548. Passage 121
  549. Passage 122
  550. Passage 125
  551. Passage 126
  552. Passage 127
  553. Passage 131
  554. Passage 134
  555. Passage 135
  556. Passage 137
  557. Passage 138
  558. Passage 139
  559. Passage 140
  560. Passage 141
  561. Passage 142
  562. Passage 143
  563. Passage 144
  564. Passage 145
  565. Passage 146
  566. Passage 147
  567. Passage 148
  568. Passage 151
  569. Passage 153
  570. Passage 155
  571. Passage 156
  572. Passage 157
  573. Passage 159
  574. Passage 160
  575. Passage 161
  576. Passage 162
  577. Passage 163
  578. Passage 165
  579. Passage 166
  580. Passage 167
  581. Passage 168
  582. Passage 170
  583. Passage 171
  584. Passage 172
  585. Passage 173
  586. Passage 174
  587. Passage 175
  588. Passage 176
  589. Passage 177
  590. Passage 178
  591. Passage 181
  592. Passage 183
  593. Passage 184
  594. Passage 185
  595. Passage 186
  596. Passage 187
  597. Passage 188
  598. Passage 189
  599. Passage 190
  600. Passage 192
  601. Passage 193
  602. Passage 194
  603. Passage 195
  604. Passage 196
  605. Passage 197
  606. Passage 198
  607. Passage 200
  608. Passage 201
  609. Passage 202
  610. Passage 203
  611. Passage 205
  612. Passage 207
  613. Passage 208
  614. Passage 209
  615. Passage 210
  616. Passage 212
  617. Passage 213
  618. Passage 214
  619. Passage 215
  620. Passage 216
  621. Passage 217
  622. Passage 219
  623. Passage 220
  624. Passage 221
  625. Passage 222
  626. Passage 225
  627. Passage 227
  628. Passage 229
  629. Passage 230
  630. Passage 231
  631. Passage 232
  632. Passage 233
  633. Passage 234
  634. Passage 235
  635. Passage 236
  636. Passage 238
  637. Passage 239
  638. Passage 240
  639. Passage 242
  640. Passage 243
  641. Passage 244
  642. Passage 246
  643. Passage 249
  644. Passage 251
  645. Passage 252
  646. Passage 253
  647. Passage 259
  648. Passage 261
  649. Passage 264
  650. Passage 265
  651. Passage 266
  652. Passage 267
  653. Passage 273
  654. Passage 274
  655. Passage 275
  656. Passage 276
  657. Passage 277
  658. Passage 278
  659. Passage 279
  660. Passage 280
  661. Passage 283
  662. Passage 288
  663. Passage 289
  664. Passage 290
  665. Passage 291
  666. Passage 292
  667. Passage 293
  668. Passage 294
  669. Passage 296
  670. Passage 298
  671. Passage 299
  672. Passage 300
  673. Question 29
  674. Question 41
  675. Ganesha Ashtottara Shatanamavali Kannada
  676. Satyanarayana Ashtottara Shatanamavali (Type 1) Sanskrit
  677. Satyanarayana Ashtottara Shatanamavali (Type 1) Tamil
  678. Sri Durga Ashtottara Shatanamavali English
  679. Sri Durga Ashtottara Shatanamavali Kannada
  680. Sri Durga Ashtottara Shatanamavali Telugu
  681. Sri Durga Ashtottara Shatanamavali Sanskrit
  682. Sri Lakshmi Ashtottara Shatanamavali Hindi
  683. Sri Lakshmi Ashtottara Shatanamavali Sanskrit
  684. Sri Lakshmi Ashtottara Shatanamavali Tamil
  685. Batuka Bhairava Ashtottara Shatanamavali English
  686. Batuka Bhairava Ashtottara Shatanamavali Kannada
  687. Batuka Bhairava Ashtottara Shatanamavali Telugu
  688. Batuka Bhairava Ashtottara Shatanamavali Hindi
  689. Batuka Bhairava Ashtottara Shatanamavali Sanskrit
  690. Batuka Bhairava Ashtottara Shatanamavali Tamil
  691. Sri Lakshmi Narasimha Ashtottara Shatanamavali English
  692. Sri Lakshmi Narasimha Ashtottara Shatanamavali Kannada
  693. Sri Lakshmi Narasimha Ashtottara Shatanamavali Telugu
  694. Sri Kali Ashtottara Shatanamavali English
  695. Aam Ka Mitha Achar
  696. Achari Paneer
  697. Adai
  698. Agra Petha
  699. Extra Creamy Potato Soup
  700. Aloo Baigan
  701. Aloo Dahi Wale
  702. Aloo Gobi
  703. Aloo Ka Bharta
  704. Aloo Kurkure
  705. Aloo Methi
  706. Aloo Mewawale
  707. Aloo Palak
  708. Aloo Patta Gobi
  709. Aloo Phulkopir Dalna
  710. Aloo Poha
  711. Aloo Took
  712. Amer Chatni
  713. Amer Mishti Achar
  714. Amla Pickle
  715. Anaraser Chatni
  716. Appam
  717. Apple and Mango Chutney
  718. Apple and Onion Bake
  719. Apple Jam
  720. Apple Jelly
  721. Apricot and Pineapple Jam
  722. Apricot Chutney
  723. Apricot Jam
  724. Apricot Sauce
  725. Aratikaaya Masala Pulusu
  726. Arhar Dal
  727. Arhar Dal with Green Mango
  728. Atta Chakuli
  729. Atte Ka Seera
  730. Baadusha
  731. Baby Corn Soup (Type 2)
  732. Badam Ka Seera
  733. Badam Kheer
  734. Baghare Baigan
  735. Banana Chutney
  736. Basic Bean Soup
  737. Basil and Badam Soup
  738. Beetroot Halwa
  739. Bendakaya Fry
  740. Besan Dhokla
  741. Bhaja Muga Dali
  742. Bhel Puri
  743. Bhindi Anardana
  744. Black Bean Soup
  745. Boiled Rice
  746. Bombay Chapathi Sandwich
  747. Bombay Chiwda
  748. Boondi Raita
  749. Bread Barfi
  750. Buttermilk Dosa
  751. Cabbage Apple Delight
  752. Carrot and Cilantro Soup
  753. Carrot and Lentil Soup
  754. Carrot Halwa
  755. Carrot Pickle
  756. Carrot Rice
  757. Carrots in Foil
  758. Cashew Nut Chutney
  759. Cauliflower Turnip and Carrot Pickle
  760. Chana Dal
  761. Charupodi
  762. Cheese Pakora
  763. Sri Kukke Subrahmanya Temple (Subramanya)
  764. Manjunatha Swamy Temple (Dharmasthala)
  765. Shree Mahaganapathi Temple (Southadka)
  766. Shri Vinayaka Temple (Aane Gudde - Kumbashi)
  767. Shri Idagunji Maha Ganapati Temple (Idagunji)
  768. Mookambika Temple (Kollur)
  769. Sri Krishna Matha (Udupi)
  770. Sri Manjunatha Temple (Kadri)
  771. Mangaladevi Temple (Mangalore)
  772. Gokarnanatha Temple (Kudroli)
  773. Sharadamba Temple (Sringeri)
  774. Annapooreshwari Temple (Horanadu)
  775. Durga Parameshwari Temple (Kateel)
  776. Shri Brahmi Durgaparameshwari Temple (Kamalashile)
  777. Shri Murudeshwara Temple (Murudeshwara)
  778. Mahabaleshwar Temple (Gokarna)
  779. Shri Rajarajeshwari Temple (Polali)
  780. Shri Shankaranarayana Temple (Shankaranarayana)
  781. Guru Narasimha Temple (Saligrama)
  782. Shri Ananthapadmanabha Temple (Kudupu)
  783. Shri Sada Shivarudra Temple (Ujire)
  784. Shri Shishileshwara Temple (Shishila)
  785. Shri Vaidyanatheshwara Temple (Kokkada)
  786. Shri Rishyasringeshwara Temple (Kigga)
  787. Annapoorneshwari Temple (Hosanadu Kodyadka)
  788. Shree Sharadhamba Temple (Koodli)
  789. Sri Surya Narayana Temple (Naravi)
  790. Kalaseshwara Temple (Kalasa)
  791. Shri Jagadguru Badari Shankaracharya Samsthanam (Shakatapuram)
  792. Guli Guli Shankareshwara Swamy Temple (Shimoga)
  793. Sri Vinayaka Temple (Guddattu)
  794. The Fall and Rise of a Merchant
  795. The Foolish Sage
  796. The Greedy Jackal and the Fighting Goats
  797. The Clever Crows and the Cunning Jackal
  798. The Cunning Heron and the Clever Crab
  799. The Clever Hare and the Foolish Lion
  800. The Bug and the Flea
  801. The story of a Blue Jackal
  802. The Lion, the Camel, the Jackal and the Crow
  803. The Tittibha Birds and the Sea