GeeksforGeeks
Courses Suggest an Article
×
Suggest a Topic
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
    • Algorithm Paradigms ►
      • Greedy Algorithms
      • Dynamic Programming
      • Divide and Conquer
      • Backtracking
      • Branch & Bound
    • All Algorithms
  • DS ▼
    • Array
    • LinkedList
    • Stack
    • Queue
    • Tree based DS ►
      • Binary Tree
      • Binary Search Tree
      • Heap
    • Hashing
    • Graph
    • Advanced Data Structure
    • Matrix
    • Strings
    • All Data Structures
  • Languages ▼
    • C
    • C++
    • Java
    • Python
    • C#
    • PHP
    • JavaScript
    • SQL
    • HTML
    • CSS
    • Program Output
  • Interview ▼
    • Company Prep
    • Top Topics
    • Practice Company Questions
    • Interview Experiences
    • Experienced Interviews
    • Internship Interviews
    • Competitive Programming
    • Design Patterns
    • Multiple Choice Quizzes
  • Students ▼
    • Campus Ambassador Program
    • Project
    • Geek of the Month
    • Placement Course
    • Competitive Programming
    • Testimonials
    • Geek on the Top
    • Careers
    • Internship
    • School Programming
  • GATE ▼
    • GATE Notes
    • GATE CS Corner
    • Last Minute Notes
    • GATE 2019
    • GATE Official Papers
    • ISRO CS Exam
    • UGC NET Papers
    • UGC NET CS Paper II
    • UGC NET CS Paper III
  • CS Subjects ▼
    • Core Subjects ►
      • Engg. Mathematics
      • Operating Systems
      • Computer Networks
      • DBMS
      • Compiler Design
      • Theory of Computation
      • Digital Electronics
      • Computer Organization & Architecture
      • Software Engineering
      • Microprocessor
    • Web Technology
    • Advanced Topics
    • Machine Learning
    • Computer Graphics
    • What’s Difference?
  • Quizzes ▼
    • Languages ►
      • C
      • C++
      • Java
      • Python
    • CS Subjectwise ►
      • Data Structures
      • Algorithms
      • Operating Systems
      • DBMS
      • Compiler Design
      • Computer Networks
      • Theory of Computation
      • Computer Organization
      • Software Engineering
    • HTML & XML
    • Engg. Mathematics
    • Aptitude
  • GBlog
  • Puzzles
  • Practice
  • Courses @ GeeksforGeeks
  • Internships @ GeeksforGeeks
  • Coding Practice
  • How to write an Interview Experience?
  • Must Do Coding Questions Company-wise
  • Must Do Coding Questions Topic-wise
  • Basic
  • Easy
  • Medium
  • Hard
  • Expert
  • Step by Step Preparation
  • Company Preparation
  • Top Topics
  • Company Specific Practice
  • Software Design Patterns
  • Placements Preparation Course
  • Interview Corner
  • Recent Interview Experiences
  • GQ Home Page
  • Quiz Corner
  • LMNs
  • What's New ?
  • Leaderboard !!
  • Topic-wise Practice
  • Subjective Problems
  • Difficulty Level - School
  • Difficulty Level - Basic
  • Difficulty Level - Easy
  • Difficulty Level - Medium
  • Difficulty Level - Hard
  • Explore More...
  • C
  • C++
  • Java
  • Python
  • SQL
  • PHP
  • JavaScript
  • School Programming
  • Operating Systems
  • DBMS
  • Computer Networks
  • Engineering Mathematics
  • Design Patterns
  • Common Interview Puzzles
  • Web Technology
  • G-Facts
  • Computer Graphics
  • Image Processing
  • Project Ideas

Disk Scheduling Algorithms

2.4

Disk scheduling is is done by operating systems to schedule I/O requests arriving for disk. Disk scheduling is also known as I/O scheduling. Disk scheduling… Read More »

Operating Systems
File & Disk Management

Oxigen Wallet Interview Experience | Set 3 (On- Campus)

4.5

First Round: Online coding test on Cocubes.com Q1. Given two integers m and n write the function to compute the number of bit changes required… Read More »

Interview Experiences
Oxigen Wallet

Compare two strings represented as linked lists

1.4

Given two linked lists, represented as linked lists (every character is a node in linked list). Write a function compare() that works similar to strcmp(),… Read More »

Linked List

C Quiz – 107 | Question 5

1

For the following declaration of a function in C, pick the best statement filter_none edit close play_arrow link brightness_4 code int [] fun(void (*fptr)(int *));… Read More »

C
C Quiz
C Quiz - 107
C-C Quiz - 107

C Quiz – 107 | Question 4

2.3

Pick the correct statement for const and volatile. (A) const is the opposite of volatile and vice versa. (B) const and volatile can’t be used… Read More »

C
C Quiz
C Quiz - 107
C-C Quiz - 107

C Quiz – 107 | Question 3

1

In a C program snippet, followings are used for definition of Integer variables? filter_none edit close play_arrow link brightness_4 code signed s; unsigned u; long… Read More »

C
C Quiz
C Quiz - 107
C-C Quiz - 107

Must use JavaScript Array Functions – Part 2

2

In Must use Javascript Array Functions – Part 1, we discussed two array functions namely Array.Prototype.Every() and Array.prototype.some(). It is important to note that both… Read More »

GBlog
JavaScript
javascript-array

C Quiz – 107 | Question 2

3.5

Which of the followings is correct for a function definition along with storage-class specifier in C language? (A) int fun(auto int arg) (B) int fun(static… Read More »

C
C Quiz
C Quiz - 107
C-C Quiz - 107

C Quiz – 107 | Question 1

2.8

Suppose a, b, c and d are int variables. For ternary operator in C ( ? : ), pick the best statement. (A) a>b ?… Read More »

C
C Quiz
C Quiz - 107
C-C Quiz - 107

C Quiz – 106 | Question 5

3.6

For the following “typedef” in C, pick the best statement filter_none edit close play_arrow link brightness_4 code typedef int INT, *INTPTR, ONEDARR[10], TWODARR[10][10]; chevron_right filter_none… Read More »

C
C Quiz
C Quiz - 106
C-C Quiz - 106

C Quiz – 106 | Question 4

2

“typedef” in C basically works as an alias. Which of the following is correct for “typedef”? (A) typedef can be used to alias compound data… Read More »

C
C Quiz
C Quiz - 106
C-C Quiz - 106

C Quiz – 106 | Question 3

In a C program, following variables are defined: filter_none edit close play_arrow link brightness_4 code float      x = 2.17; double   y = 2.17; long double… Read More »

C
C Quiz
C Quiz - 106
C-C Quiz - 106

C Quiz – 106 | Question 2

3

What’s the meaning of following declaration in C language? filter_none edit close play_arrow link brightness_4 code int (*p)[5]; chevron_right filter_none (A) It will result in… Read More »

C
C Quiz
C Quiz - 106
C-C Quiz - 106

C Quiz – 106 | Question 1

1

Assuming int size is 4 bytes, what is going to happen when we compile and run the following program? filter_none edit close play_arrow link brightness_4… Read More »

C
C Quiz
C Quiz - 106
C-C Quiz - 106

Find Minimum Depth of a Binary Tree

2.2

Given a binary tree, find its minimum depth. The minimum depth is the number of nodes along the shortest path from root node down to… Read More »

Tree
Facebook
Page 1,861 of 2,190« First«...102030...1,8591,8601,8611,8621,863...1,8701,8801,890...»Last »

Most Popular Articles
  • Must Do Coding Questions for Companies like Amazon, Microsoft, Adobe, ...
  • Must Do Coding Questions Company-wise
  • Why array index starts from zero ?
  • string find in C++
  • Taking input from console in Python

Most Visited Articles
  • Python list sort()
  • How do I become a good Java programmer?
  • How to prepare for GATE CSE - 2019
  • GATE CSE Test Series - 2019 | Sudo GATE
  • Practice for cracking any coding interview

Most Trending Articles
  • Implementing a Linked List in Java using Class
  • OOPs | Object Oriented Design
  • How to get rid of Java TLE problem
  • Implement a stack using singly linked list
  • Remove duplicates from unsorted array
  • Introduction to HTML CSS | Learn to Design your First Website in Just 1 Week
  • HTML Course | Structure of an HTML Document
  • HTML Course | Basics of HTML
  • Taking input in Python
  • Taking multiple inputs from user in Python
  • Amazon Interview Experience SDE Off Campus
  • Amazon Interview Experience SDE-1
  • Amazon Interview Experience SDE 1 (2.5 Years Experienced)
  • Amazon Interview Experience SDE1
  • Why learning C Programming is a must?

  • GeeksforGeeks
  • 710-B, Advant Navis Business Park,
  • Sector-142, Noida, Uttar Pradesh - 201305
  • feedback@geeksforgeeks.org
  • COMPANY
  • About Us
  • Careers
  • Privacy Policy
  • Contact Us
  • LEARN
  • Algorithms
  • Data Structures
  • Languages
  • CS Subjects
  • Video Tutorials
  • PRACTICE
  • Company-wise
  • Topic-wise
  • Contests
  • Subjective Questions
  • CONTRIBUTE
  • Write an Article
  • Write Interview Experience
  • Internships
  • Videos
@geeksforgeeks, Some rights reserved