Its few lines of code to install google chrome in your fedora machine. Before installing google chrome in your machine you need to create Google repository in repository directory which is “/etc/yum.repos.d/”. To create google repository please follow the following commands: 1 cd /etc/yum.repos.d/ Now to create a file we have to use cat command […]
continue reading..Given an unsorted array of nonnegative integers, find a continous subarray which adds to a given number. Examples: Input: arr[] = {1, 4, 20, 3, 10, 5}, sum = 33 Ouptut: Sum found between indexes 2 and 4 Input: arr[] = {1, 4, 0, 0, 3, 10, 5}, sum = 7 Ouptut: Sum found between indexes […]
continue reading..10
Fibonacci series in php
Simple code for producing Fibonacci series in php using non recursive function. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 <?php function fib ($x) { […]
continue reading..6
Finding depth of tree
This program is a part of previous program written for tree data structure. This code will show you how to delete a node anywhere in the tree. How to find the height and check if the tree is balanced or not. To check if the tree is balance or not we should make sure that […]
continue reading..
Here Are Top 7 Resources To Free Download Medical Dictionary For Mobile. 1. studytemple 2. toufiq.medinfo24 3. handheld.softpedia 4. store.ovi 6. downloadplex 7. fileheap
continue reading..
Here are collection of sites where you can watch and free download movies for families and children. These movies are entertainmental and educational. 1. emol 2. movies.lovetoknow 3. kidsknowit 4. filmannex 5. sproutonline 6. babybumblebee
continue reading..29
tree data structure in c++
This will show a simple program written in c++ which insert node in tree and traverse it in preorder, postorder and inorder, comments and suggestions are welcome. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 […]
continue reading..Q1: Why don’t we declare Stings using ‘new’ in Java Ans Take an example : String p =”something” String q = “Something” Here object p and q are pointing to same reference and if we write p==q it will return true as it will compare the objects. String p = new String(“something”) String q = new […]
continue reading..Here is the list of most common java interview questions: Question: What is the difference between an Interface and an Abstract class? Question: What is the purpose of garbage collection in Java, and when is it used? Question: Describe synchronization in respect to multithreading. Question: Explain different way of using thread? Question: What are pass […]
continue reading..





