Skip to content

PrepBytes Blog

ONE-STOP RESOURCE FOR EVERYTHING RELATED TO CODING

Log In

Log Out

Menu
  • Language
    • C
    • C++
    • Java
    • Javascript
    • Python
  • Data Structure
    • Array
    • Graphs
    • Heap
    • Linked List
    • Segment Tree
    • Stack
    • Trees
    • Queue
  • Algorithm
    • Backtracking
    • Dynamic Programming
    • Greedy Algorithm
    • RECURSION
    • Searching
    • Sorting
  • CSE Subjects
    • Operating System
  • Company Placement
  • Interview
    • Interview Tips
    • General Interview Questions
    • Algorithms
    • Data Structure
    • Languages
    • Other Topics
  • Competitive
    • Data Structure
      • Array
      • Graph
      • Heap
      • Segment Tree
      • Stack
      • Queue
      • Tree
      • Tries
    • Algorithm
      • Backtracking
      • Dynamic Programming
      • Greedy Algorithm
      • Searching
      • Sorting
    • Other Topics
      • Computational Geometry
      • Game Theory
      • Maths
      • Pointers
      • Recursion
      • String
  • Others
    • Computational Geometry
    • Game Theory
    • Hashing
    • Maths
    • Pointers
    • Recursion
    • String

Sign in to your account

Forgot your password?

New User? Create Account

Login via OTP

We will send you an one time password on your mobile number

New User? Create Account

Login via OTP

An OTP has been sent to your mobile number please verify it below

Resend OTP in 30 sec
Resend
New User? Create Account

Register with PrepBytes

I agree to the terms and conditions.
Already have a account? Login Here

aniruddha

Linked list articles

Find the length of a loop in the linked list

Aniruddha GuinJuly 26, 2021November 28, 2022
In this blog, we are going to discuss the length of loop in linked list. A linked list is one of the important data structures in the technical interview because...
Linked list articles

Bubble Sort On Doubly Linked List

Aniruddha GuinJuly 22, 2021November 16, 2022
Sorting is one of the famous techniques used to rearrange the array or the list of elements. In this article, we will learn how to sort a doubly linked list...
Java

Top 30 Java Programming interview questions

Aniruddha GuinApril 7, 2021March 10, 2022
Check if a given number is palindrome or not. Ans. A palindrome is a number which is when reversed give the same number. We find the reverse and check whether...
C Programming

Top 50 Basic interview questions from C

Aniruddha GuinApril 7, 2021March 21, 2022
What do you mean by dangling pointer? Ans. If a pointer is pointing to some address of a variable and at that moment another pointer is used to delete that...
C Programming

Commonly asked interview questions on c

Aniruddha GuinApril 7, 2021March 21, 2022
Why do we still use C? Isn’t it quite old? Ans. C is considered to be the mother of all modern-day languages. It was initially created for the purpose of...
Interview Questions

Top 20 algorithm interview questions

Aniruddha GuinApril 6, 2021March 10, 2022
Given an array of integers, find the indices of two numbers that sum up to the given target. For example – Arr[] = {1, 2, 4 -3, 7}, and target...
C++ Programming Linked list articles

Linked list on C++

Aniruddha GuinMarch 27, 2021March 28, 2022
Linked List is a linear data structure which comprises of elements/nodes stored at various locations not necessarily contiguous. But don’t we have arrays for keeping a list? Well, there are...
Wipro Interview Question

Top 30 Wipro interview questions for freshers

Aniruddha GuinMarch 26, 2021December 1, 2022
In this tutorial, we will be discussing Wipro interview questions for freshers and experienced. If you have the talent, passion, and ability to work, able to work on cutting-edge technologies...
Java

Practice java programs for interview

Aniruddha GuinMarch 26, 2021March 12, 2022
1. Write a program to swap two numbers in Java. Ans. Two ways to do this -with third variable and without third variable. public static void swapNumberswithtemp(int a, int b)...
C Programming

Introduction to c language for beginners

Aniruddha GuinMarch 26, 2021March 21, 2022
C is a general-purpose procedural programming language developed by Dennis M. Ritchie. It was used to develop the UNIX operating system so you can understand how powerful it really is....
Java

Top 30 java interview questions and answers for freshers

Aniruddha GuinMarch 26, 2021March 10, 2022
What is immutable object? Ans. Immutable objects can be created of immutable classes. Objects of these class cannot be modified. So whenever we try to change or modify these objects...
Java

50 simple java programs for beginners

Aniruddha GuinMarch 26, 2021April 18, 2022
1. Write a program in Java to reverse a number. Ans. Extract each digit and keep multiplying with 10 and adding the remainder. static int REV(int n){ long RevNumber=0; while...
General Programming

25 Most Important programming interview questions

Aniruddha GuinMarch 26, 2021October 12, 2022
1. What is the difference between procedural language and object-oriented language? Ans. Procedural Programming languages follow a sequence of instructions and conveys it to the computer. Procedural programming depends on...
General Coding

How to crack coding interview

Aniruddha GuinMarch 25, 2021March 10, 2022
How to crack coding interview Whether you are a recent graduate or a job seeker, if you are searching for a job this article will help you to prepare yourself...
Java

Why is Java a secure language?

Aniruddha GuinMarch 25, 2021April 14, 2022
Java is a very popular object-oriented programming language created in 1972 but it has still remained one of the most essential languages throughout decades. Java was one of the first...
Miscellaneous

Find a Number

Aniruddha GuinMarch 25, 2021March 25, 2021
Concepts Used Binary Search Difficulty Level Easy Problem Statement : Finding a number has always been an interesting puzzle! Well in this problem we are given a sorted array of...

Pages

  • ALGORITHMS
  • ARRAY
  • BACKTRACKING
  • C PROGRAMMING LANGUAGE
  • C++ PROGRAMMING LANGUAGE
  • CAPGEMINI
  • CIRCULAR LINKED LIST
  • COMPANY PLACEMENT PROCEDURE
  • COMPETITIVE CODING
  • COMPUTATIONAL GEOMETRY
  • CSE SUBJECTS
  • DATA STRUCTURE
  • DOUBLY LINKED LIST
  • DYNAMIC PROGRAMMING
  • GAME THEORY
  • GRAPHS
  • GREEDY ALGORITHM
  • HASHING
  • HEAP
  • INTERVIEW PREPARATION
  • INTERVIEW TIPS
  • JAVA PROGRAMMING LANGUAGE
  • JAVASCRIPT PROGRAMMING LANGUAGE
  • Languages
  • LINKED LIST
  • LINKED LIST USING C
  • MATHEMATICS
  • OPERATING SYSTEM
  • POINTERS
  • PYTHON PROGRAMMING LANGUAGE
  • QUEUE
  • RECURSION
  • SEARCHING
  • SEGMENT TREE
  • SORTING
  • STACK
  • STRING
  • TREES

Recent Articles

  • 1
    February 7, 2023

    Tech Mahindra Interview Questions

  • 2
    February 7, 2023

    TCS Technical Interview Questions

  • 3
    February 7, 2023

    Priority Queue in Data Structure

  • 4
    February 7, 2023

    Realloc C: Function & Syntax

  • 5
    February 7, 2023

    Components of the Operating System

  • 6
    February 7, 2023

    Critical Section in OS (Operating System)

Close
Menu
  • Language
    • C
    • C++
    • Java
    • Javascript
    • Python
  • Data Structure
    • Array
    • Graphs
    • Heap
    • Linked List
    • Segment Tree
    • Stack
    • Trees
    • Queue
  • Algorithm
    • Backtracking
    • Dynamic Programming
    • Greedy Algorithm
    • RECURSION
    • Searching
    • Sorting
  • CSE Subjects
    • Operating System
  • Company Placement
  • Interview
    • Interview Tips
    • General Interview Questions
    • Algorithms
    • Data Structure
    • Languages
    • Other Topics
  • Competitive
    • Data Structure
      • Array
      • Graph
      • Heap
      • Segment Tree
      • Stack
      • Queue
      • Tree
      • Tries
    • Algorithm
      • Backtracking
      • Dynamic Programming
      • Greedy Algorithm
      • Searching
      • Sorting
    • Other Topics
      • Computational Geometry
      • Game Theory
      • Maths
      • Pointers
      • Recursion
      • String
  • Others
    • Computational Geometry
    • Game Theory
    • Hashing
    • Maths
    • Pointers
    • Recursion
    • String
FOLLOW US
CONTACT US
+91-8800 2588 17
contact@prepbytes.com
QUICK LINKS
Interview NotesMock TestsPlacement ProgrammeCoding CoursesMock InterviewAbout UsBlog