geeksforgeeks.org geeksforgeeks.org

geeksforgeeks.org

GeeksforGeeks | A computer science portal for geeks

A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes and practice/competitive programming/company interview Questions.

http://www.geeksforgeeks.org/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR GEEKSFORGEEKS.ORG

TODAY'S RATING

#308

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

February

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Tuesday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 4.0 out of 5 with 13 reviews
5 star
5
4 star
5
3 star
2
2 star
0
1 star
1

Hey there! Start your review of geeksforgeeks.org

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

0.1 seconds

FAVICON PREVIEW

  • geeksforgeeks.org

    16x16

  • geeksforgeeks.org

    32x32

  • geeksforgeeks.org

    64x64

CONTACTS AT GEEKSFORGEEKS.ORG

Privacy Protection Service INC d/b/a PrivacyProtect.org

Domain Admin

C/O ID#1●●●●●●●●O Box 16

Nobb●●●●each , Queensland, QLD 4218

AU

45.3●●●●6676
co●●●●●@privacyprotect.org

View this contact

Privacy Protection Service INC d/b/a PrivacyProtect.org

Domain Admin

C/O ID#1●●●●●●●●O Box 16

Nobb●●●●each , Queensland, QLD 4218

AU

45.3●●●●6676
co●●●●●@privacyprotect.org

View this contact

Privacy Protection Service INC d/b/a PrivacyProtect.org

Domain Admin

C/O ID#1●●●●●●●●O Box 16

Nobb●●●●each , Queensland, QLD 4218

AU

45.3●●●●6676
co●●●●●@privacyprotect.org

View this contact

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

DOMAIN REGISTRATION INFORMATION

REGISTERED
n/a
UPDATED
2014 February 20
EXPIRATION
EXPIRED REGISTER THIS DOMAIN

BUY YOUR DOMAIN

Network Solutions®

NAME SERVERS

1
ns1.geeksforgeeks.org
2
ns2.geeksforgeeks.org

REGISTRAR

PDR Ltd. d/b/a PublicDomainRegistry.com (R27-LROR)

PDR Ltd. d/b/a PublicDomainRegistry.com (R27-LROR)

WHOIS : whois.publicinterestregistry.net

REFERRED :

CONTENT

SCORE

6.2

PAGE TITLE
GeeksforGeeks | A computer science portal for geeks | geeksforgeeks.org Reviews
<META>
DESCRIPTION
A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes and practice/competitive programming/company interview Questions.
<META>
KEYWORDS
1 write an article
2 skip to content
3 algo
4 analysis of algorithms
5 topicwise
6 searching algorithms
7 sorting algorithms
8 graph algorithms
9 bit algorithms
10 pattern searching
CONTENT
Page content here
KEYWORDS ON
PAGE
write an article,skip to content,algo,analysis of algorithms,topicwise,searching algorithms,sorting algorithms,graph algorithms,bit algorithms,pattern searching,geometric algorithms,mathematical algorithms,randomized algorithms,game theory,backtracking
SERVER
Apache
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

GeeksforGeeks | A computer science portal for geeks | geeksforgeeks.org Reviews

https://geeksforgeeks.org

A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes and practice/competitive programming/company interview Questions.

SUBDOMAINS

auth.geeksforgeeks.org auth.geeksforgeeks.org

GeeksforGeeks Q&A

Recent questions and answers. Recent questions and answers. Divide the roads between n drivers. If a rabbit jumps 8 steps at a time if it starts from 4 which number will reach in 6 jumps. Find the number of subsequences of a n-digit number, stored as a string, that are divisible by 8. How to scan and print a sentence in c. Website does not work Java. Write a program to accept 2 numbers and print the common factors using do until.loop in qbasic. Program to reverse vowel in given string. Bitwise NOT in C.

practice.geeksforgeeks.org practice.geeksforgeeks.org

Practice | GeeksforGeeks

quiz.geeksforgeeks.org quiz.geeksforgeeks.org

GATE CS Preparation Portal

Computer Science Quizzes for Geeks! Computer Organization and Architecture. Computer Organization and Architecture. GATE CS 2017 Important Dates and Links. GATE CS Corner (Year wise and topic wise solutions with explanation). GATE CS MOCK 2017. TOPIC Wise GATE Notes(According to Official GATE 2017 Syllabus). GATE CS 2017 Important dates and links. Solutions of GATE CS 2016 Mock Test. Top 5 Topics for Each Section of GATE CS Syllabus. How to prepare in Last 10 days to score high in GATE? Stop and Wait ARQ.

qa.geeksforgeeks.org qa.geeksforgeeks.org

GeeksforGeeks Q&A

Welcome to GeeksforGeeks Q&A, where you can ask questions and receive answers from other members of the community. Recent questions and answers. Recent questions and answers. Can such pointer conflict can be possible? How to use substr in c? Or how to relate the code to c. How many pairs have a differnce of 8. Find the length of the longest sub-sequence such that elements in the sequence are consecutive integers. Buuble Sort using stacks. Identation Program using Stacks. How pointers saves memory? To see...

code.geeksforgeeks.org code.geeksforgeeks.org

Geeksforgeeks IDE

Something went wrong. Please try again.

INTERNAL PAGES

geeksforgeeks.org geeksforgeeks.org
1

Dynamic Programming | Set 11 (Egg Dropping Puzzle) - GeeksforGeeks

https://www.geeksforgeeks.org/dynamic-programming-set-11-egg-dropping-puzzle

A computer science portal for geeks. Branch & Bound. Geek of the Month. Geek on the Top. Dynamic Programming Set 11 (Egg Dropping Puzzle). The following is a description of the instance of this famous puzzle involving n=2 eggs and a building with k=36 floors. Suppose that we wish to know which stories in a 36-story building are safe to drop eggs from, and which will cause the eggs to break on landing. We make a few assumptions:. 8230;An egg that survives a fall can be used again. In this post, we will di...

2

Function overloading and return type - GeeksforGeeks

https://www.geeksforgeeks.org/g-fact-75

A computer science portal for geeks. Branch & Bound. Geek of the Month. Geek on the Top. Function overloading and return type. In C and Java, functions can not be overloaded if they differ only in the return type. For example, the following program C and Java programs fail in compilation. Include iostream int foo() { return 10; } char foo() { / compiler error; new declaration of foo() return 'a'; } int main() { char x = foo(); getchar(); return 0; }. Company Wise Coding Practice. Bits/stdc .h in C. I ass...

3

Scope rules in C - GeeksforGeeks

https://www.geeksforgeeks.org/scope-rules-in-c

A computer science portal for geeks. Branch & Bound. Geek of the Month. Geek on the Top. Scope rules in C. Scope of an identifier is the part of the program where the identifier may directly be accessible. In C, all identifiers are lexically (or statically) scoped. C scope rules can be covered under following two categories. Can be accessed anywhere in a program. Filename: file1.c int a; int main(void) { a = 2; }. To restrict access to current file only, global variables can be marked as static. No, a va...

4

A program to check if a binary tree is BST or not - GeeksforGeeks

https://www.geeksforgeeks.org/archives/3042

A computer science portal for geeks. Branch & Bound. Geek of the Month. Geek on the Top. A program to check if a binary tree is BST or not. A binary search tree (BST) is a node based binary tree data structure which has the following properties. The left subtree of a node contains only nodes with keys less than the node’s key. The right subtree of a node contains only nodes with keys greater than the node’s key. Both the left and right subtrees must also be binary search trees. METHOD 1 (Simple but Wrong).

5

Check whether two strings are anagram of each other - GeeksforGeeks

https://www.geeksforgeeks.org/archives/18752

A computer science portal for geeks. Branch & Bound. Geek of the Month. Geek on the Top. Check whether two strings are anagram of each other. Write a function to check whether two given strings are anagram. Of each other or not. An anagram of a string is another string that contains same characters, only the order of characters can be different. For example, “abcd” and “dabc” are anagram of each other. We strongly recommend that you click here and practice it, before moving on to the solution. 1) Create ...

UPGRADE TO PREMIUM TO VIEW 20 MORE

TOTAL PAGES IN THIS WEBSITE

25

LINKS TO THIS WEBSITE

badgerous.net badgerous.net

Algorithms

http://badgerous.net/2016/12/03/2-algorithms.html

Dec 3, 2016,. 7 minute read,. This is by far the biggest area for the tech interview, though thankfully it’s an area you can study well. It just takes a lot of time. It should probably be something you are doing on an ongoing basis. If you are doing this studying for an hour or two a week, plan at least six months. For example, the 8-queens. Your understanding helps you to remember, and needs to be explained in the interview. It will also help with similar problems in the future. Time to go to school!

cseresources.wordpress.com cseresources.wordpress.com

Getting a Job/Internship | Resources for CSE Students

https://cseresources.wordpress.com/getting-a-job-internship

Resources for CSE Students. If you are interested in a particular company, then the best place to look is that company’s website. Most companies have a dedicated Careers/Jobs page. You can also try the following job boards. Http:/ careers.stackoverflow.com/. Https:/ jobs.github.com/. Https:/ news.ycombinator.com/submitted? Http:/ www.linkedin.com/jobs. Here are a couple of blog posts which talk about the interview process and interview preparation. Get that job at Google. Get that job at Facebook. Resour...

dongxicheng.org dongxicheng.org

董的博客 » 基础知识整理

http://dongxicheng.org/knowledges-carding

5 CareerCup.Cracking.the.Technical.Interview.Ed4.2010 http:/ ishare.iask.sina.com.cn/f/12828753.html. Http:/ blog.csdn.net/v JULY v. 2 编程之美 http:/ www.cppblog.com/flyinghearts/category/14112.html. Http:/ zhedahht.blog.163.com/blog/#m=0. 4 题酷发芽网 http:/ fayaa.com/tiku/. 1 CSDN算法板块 http:/ forum.csdn.net/SList/ST Arithmetic/UnClosedList/. 2 水木清华算法板块 http:/ www.newsmth.net/nForum/board/Algorithm. 3 北邮人算法板块 http:/ bbs.byr.cn/board/ACM ICPC. 4 一亩三分地 http:/ www.1point3acres.com/bbs/forum-84-1.html. 8 Hash实现 http...

deepaanksinha.wordpress.com deepaanksinha.wordpress.com

Tree Uses in Real Life | deepaanksinha

https://deepaanksinha.wordpress.com/2015/07/22/tree-uses-in-real-life

Tree Uses in Real Life. July 22, 2015. July 22, 2015. 8211; Used in many search applications where data is constantly entering/leaving, such as the map and set objects in many languages’ libraries. 8211; Used in almost every 3D video game to determine what objects need to be rendered. 8211; Used in almost every high-bandwidth router for storing router-tables. 8211; used in p2p programs and specialized image-signatures in which a hash needs to be verified, but the whole file is not available. Fill in your...

gneerajgupta.blogspot.com gneerajgupta.blogspot.com

Neeraj Gupta: May 2015

http://gneerajgupta.blogspot.com/2015_05_01_archive.html

I usually just copy-paste whatever I want to access on internet. Tuesday, May 26, 2015. TCP : Fast Retransmit. Is an enhancement to TCP. Which reduces the time a sender waits before retransmitting a lost segment. A TCP sender uses a timer to recognize lost segments. If an acknowledgement is not received for a particular segment within a specified time (a function of the estimated Round-trip delay time. The sender will assume the segment was lost in the network. And will retransmit the segment. MaxDepth('...

practice.geeksforgeeks.org practice.geeksforgeeks.org

Practice | GeeksforGeeks

http://www.practice.geeksforgeeks.org/problems-level-page.php?level=-1&amp;offset=0&amp;isPub=1

Find first and last occurrence of x. Sum of two Squares. Squares in a Matrix. Largest subarray with GCD one. Sum of product of x and y with floor(n/x) = y. Encrypt the string - 1. At least two greater elements. Multiple in Table Tennis. String with numbers at its end. Check if a number can be expressed as x y. Coverage of all Zeros in a Binary Matrix. Make a Distinct Digit Array.

UPGRADE TO PREMIUM TO VIEW 602 MORE

TOTAL LINKS TO THIS WEBSITE

608

SOCIAL ENGAGEMENT



OTHER SITES

geeksforfashion.wordpress.com geeksforfashion.wordpress.com

geeksforfashion | Just another WordPress.com site

Skip to main content. Skip to primary sidebar. Skip to secondary sidebar. Just another WordPress.com site. Makes 25 to 30 sandwich cookies. For the chocolate wafers: 1 1/4 cups all-purpose flour 1/2 cup unsweetened Dutch process cocoa 1 teaspoon baking soda 1/4 teaspoon baking powder 1/4 teaspoon salt 1 to 1 1/2 cups sugar [see recipe note] 1/2 cup plus 2 tablespoons (1 1/4 sticks) room-temperature, unsalted butter 1 large egg. Set two racks in the middle of the oven. Preheat to 375 F. March 30, 2012.

geeksforfitness.com geeksforfitness.com

geeksforfitness.com

geeksforfreaks.com geeksforfreaks.com

Freshnin' Up

The service you are looking for is unavailable at the moment. Well be back up and running again before long, so please try again soon. Thank you for your patience! Powered by InstantPage® from GoDaddy.com. Want one?

geeksforfree.com geeksforfree.com

GeeksFroFree Teconologia Android Apple Smart TV Domotica Smatphones - GeeksForFree.com

Fidelio Telemetry crea Testbed: il software per R/C Car. Call of Duty Infinite Warfare: 3 milioni di dislike. Beelink GT1: un Tv Box per 4K e HDR. Samsung Level Box Pro: uno speaker bluetooth con i fiocchi. Google Pixel: il nuovo top di gamma made by Google. Nintendo Switch: la mezza novità di casa Nintendo. Tecnologia. Italia tra le migliori nazioni tecnologiche. Cosa ci aspetta? Fidelio Telemetry crea Testbed: il software per R/C Car. Call of Duty Infinite Warfare: 3 milioni di dislike. Samsung Level B...

geeksforge.com geeksforge.com

The Geeks Forge

September 22, 2013. I have started working on Windows 8 App Development. I hope to start publishing applications to the Windows Store within the next few weeks. Well, Contact Me At:. Welcome to the Geeks Forge. October 15th, 2013. I have started working on building Windows 8 store apps, and decided to give the site a facelift.

geeksforgeeks.org geeksforgeeks.org

GeeksforGeeks | A computer science portal for geeks

Branch & Bound. Geek of the Month. Geek on the Top. Gate 2018 Important Dates and Links. Computer Organization & Architecture. HTML & XML. How to write an Interview Experience? Must Do Coding Questions Company-wise. Must Do Coding Questions Topic-wise. Click here for more. Step by Step Preparation. Difficulty Level - School. Difficulty Level - Basic. Difficulty Level - Easy. Difficulty Level - Medium. Difficulty Level - Hard. How to pick a difficulty level? Smallest greater elements in whole array. The j...

geeksforgeezers.com geeksforgeezers.com

geeksforgeezers.com - Registered at Namecheap.com

This domain is registered at Namecheap. This domain was recently registered at Namecheap. Please check back later! This domain is registered at Namecheap. This domain was recently registered at Namecheap. Please check back later! The Sponsored Listings displayed above are served automatically by a third party. Neither Parkingcrew nor the domain owner maintain any relationship with the advertisers.

geeksforgod.org geeksforgod.org

Business profile for geeksforgod.org provided by Network Solutions

Phone: Your business phone number. Fax: Your business fax number. Email: Your business e-mail address. The type of business you are in. Your list of brands. Products and/or services you provide. Coupons and other discount information you offer. Any other information about your business. Your hours of operation. Methods of payment you accept. If this is your Web site, you can customize your business profile from your account at Network Solutions. To edit your business profile.

geeksforgoddesses.com geeksforgoddesses.com

Welcome geeksforgoddesses.com - BlueHost.com

Web Hosting - courtesy of www.bluehost.com.

geeksforhelp.com geeksforhelp.com

Geeks For Help - Superb Tech Support - Call 1800 615 9084

Simple, Affordable and Hassle Free. One Time Fix Fee. Optimization & Clean-up. Optimization & Clean-up. Virus and Malware Removal. Tune-up & Optimization. Registry Clean & Repair. We have a responsible privacy policy. Company Registration No. 08581064.

geeksforhire.biz geeksforhire.biz

Geek For Hire, Inc.

We make house calls to your home or small business! Send an email to Support@GeekForHireInc.com. We'll respond as quickly as we can! Ending the frustration with your Computer having a knowledgeable computer specialist waiting for your call getting it fixed right the first time. Just about every week I get a call from someone and I can hear the raw frustration in their voice. Their computer has almost brought them to tears! Geek For Hire, Inc. Our Philosophy and Overriding Goal:. We schedule appointments ...