Its few lines of code to install google chrome in your fedora machine. Before installing google chrome in your machine you need to cre­ate Google repos­i­tory in repos­i­tory direc­tory which is “/etc/yum.repos.d/”. To cre­ate google repos­i­tory please fol­low the fol­low­ing com­mands: 1 cd /etc/yum.repos.d/ Now to cre­ate a file we have to use cat command […]

continue reading..

Given an unsorted array of non­neg­a­tive inte­gers, find a con­ti­nous sub­ar­ray which adds to a given num­ber. Exam­ples: Input: arr[] = {1, 4, 20, 3, 10, 5}, sum = 33 Oup­tut: Sum found between indexes 2 and 4 Input: arr[] = {1, 4, 0, 0, 3, 10, 5}, sum = 7 Oup­tut: Sum found between indexes […]

continue reading..

Sim­ple code for pro­duc­ing Fibonacci series in php using non recur­sive func­tion. 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   func­tion fib ($x) { […]

continue reading..

This pro­gram is a part of pre­vi­ous pro­gram writ­ten for tree data struc­ture. This code will show you how to delete a node any­where in the tree. How to find the height and check if the tree is bal­anced or not. To check if the tree is bal­ance or not we should make sure that […]

continue reading..

Here Are Top 7 Resources To Free Down­load Med­ical Dic­tio­nary For Mobile. 1. studytem­ple 2. toufiq.medinfo24 3. handheld.softpedia 4. store.ovi 6. down­load­plex 7. fileheap

continue reading..

Here are col­lec­tion of sites where you can watch and free down­load movies for fam­i­lies and chil­dren.  These movies are enter­tain­men­tal and edu­ca­tional. 1. emol 2. movies.lovetoknow 3. kid­sknowit 4. fil­man­nex 5. sprou­ton­line 6. babybumblebee

continue reading..

This will show a sim­ple pro­gram writ­ten in c++ which insert node in tree and tra­verse it in pre­order, pos­torder and inorder, com­ments and sug­ges­tions are wel­come. 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..

1. tv.adobe  

continue reading..

Q1: Why don’t we declare Stings using ‘new’ in Java Ans Take an exam­ple : String p =”some­thing” String q = “Some­thing” Here object p and q are point­ing to same ref­er­ence and if we write p==q it will return true as it will com­pare the objects. String p = new String(“something”) String q = new […]

continue reading..

Here is the list of most com­mon java inter­view ques­tions: Ques­tion: What is the dif­fer­ence between an Inter­face and an Abstract class? Ques­tion: What is the pur­pose of garbage col­lec­tion in Java, and when is it used? Ques­tion: Describe syn­chro­niza­tion in respect to mul­ti­thread­ing. Ques­tion: Explain dif­fer­ent way of using thread? Ques­tion: What are pass […]

continue reading..