Results for "Scripting for Beginners"

Total results: 1069

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