Home
DS & Algo. ▾
Data Structure
Algorithms
Coding Problems
Languages ▾
C
C++
C++ STL
Java
Python
Scala
Ruby
C#.Net
Golang
Android
Kotlin
SQL
Web. ▾
JavaScript
CSS
jQuery
PHP
Node.Js
AdonisJs
VueJS
Ajax
HTML
Django
Programs ▾
C
C++
Data Structure
Java
C#.Net
VB.Net
Python
PHP
Golang
Scala
Swift
Rust
Ruby
Kotlin
C Interview Programs
Aptitude ▾
C Aptitude
C++ Aptitude
Java Aptitude
C# Aptitude
PHP Aptitude
Linux Aptitude
DBMS Aptitude
Networking Aptitude
AI Aptitude
More...
Interview ▾
Golang
MIS Executive
DBMS
C
Embedded C
Java
SEO
HR
Find Output ▾
C
C++
C#.Net
Java
Go
PHP
More...
MCQs ▾
Web Technologie MCQs
CS Subjects MCQs
Databases MCQs
Programming MCQs
Testing Software MCQs
Digital Mktg Subjects MCQs
Cloud Computing S/W MCQs
Engineering Subjects MCQs
Commerce MCQs
More MCQs...
CS Subjects ▾
Machine Learning/AI
Operating System
Computer Network
Software Engineering
Discrete Mathematics
Digital Electronics
Data Mining
MIS
DBMS
Embedded Systems
Cryptography
CS Fundamental
More Tutorials...
More ▾
Tech Articles
Puzzles
Full Forms
Code Examples
Blogs
Guest Post
Programmer's Calculator
XML Sitemap Generator
Tools & Generators
About
Contact
Home
DS & Algo. ▾
Data Structure
Algorithms
Coding Problems
Languages ▾
C
C++
C++ STL
Java
Python
Scala
Ruby
C#.Net
Golang
Android
Kotlin
SQL
Web. ▾
JavaScript
CSS
jQuery
PHP
Node.Js
AdonisJs
VueJS
Ajax
HTML
Django
Programs ▾
C
C++
Data Structure
Java
C#.Net
VB.Net
Python
PHP
Golang
Scala
Swift
Rust
Ruby
Kotlin
C Interview Programs
Aptitude ▾
C Aptitude
C++ Aptitude
Java Aptitude
C# Aptitude
PHP Aptitude
Linux Aptitude
DBMS Aptitude
Networking Aptitude
AI Aptitude
More...
Interview ▾
Golang
MIS Executive
DBMS
C
Embedded C
Java
SEO
HR
Find Output ▾
C
C++
C#.Net
Java
Go
PHP
More...
MCQs ▾
Web Technologie MCQs
CS Subjects MCQs
Databases MCQs
Programming MCQs
Testing Software MCQs
Digital Mktg Subjects MCQs
Cloud Computing S/W MCQs
Engineering Subjects MCQs
Commerce MCQs
More MCQs...
CS Subjects ▾
Machine Learning/AI
Operating System
Computer Network
Software Engineering
Discrete Mathematics
Digital Electronics
Data Mining
MIS
DBMS
Embedded Systems
Cryptography
CS Fundamental
More Tutorials...
More ▾
Tech Articles
Puzzles
Full Forms
Code Examples
Blogs
Guest Post
Programmer's Calculator
XML Sitemap Generator
Tools & Generators
About
Contact
Home
»
Recent posts
All posts from December 2018
C program to replace bit in an integer at a specified position from another integer
30 DEC 2018 by
Radib Kar
In this article, we are going to learn how to replace a bit of a number at a specified position from another number?
C programs
C bitwise operator's programs
IN Operator with Example in SQL
30 DEC 2018 by
Bharti Parmar
When you have multiple conditions to be checked, we can use IN operator instead of it. It specifies the multiple values in a WHERE clause.
SQL
SELECT TOP with Example in SQL
30 DEC 2018 by
Bharti Parmar
In this previous article, we learnt about Injection. Now, in this article we are going to discuss about SELECT TOP in SQL.
SQL
C program to find odd or even number using bitmasking
30 DEC 2018 by
Radib Kar
In this article, we are going to see how to check a number odd or even using bitwise operators?
C programs
C bitwise operator's programs
Python | Remove an existing file (Example of os.remove() method)
30 DEC 2018 by
IncludeHelp
os.remove() method in python: Here, we are going to learn how to remove an existing file in python?
Python
File handling in python
Python | Rename an existing file (Example of os.rename() method)
30 DEC 2018 by
IncludeHelp
os.rename() method in python: Here, we are going to learn how to rename an existing file in python?
Python
File handling in python
Python | Input data from the user, save to the file, read and print
30 DEC 2018 by
Pankaj Singh
In this tutorial, we are going to learn how to input data from the user save data into the file and then read data from the file and print it?
Python
File handling in python
Python | Read file from given index (Example of tell() and seek())
30 DEC 2018 by
Pankaj Singh
In this tutorial, we are going to learn about two important methods of python file handling – tell() and seek(), here we will learn how to set file pointer position at a specific position and how to read content from there?
Python
File handling in python
Python | print the file content along with the filename
30 DEC 2018 by
Pankaj Singh
In this tutorial, we are going to learn how to print the content of a text file along with the filename in python?
Python
File handling in python
Python | Example of FileNotFoundError
30 DEC 2018 by
IncludeHelp
In this tutorial, we are going to learn how to catch the exception FileNotFoundError if file does not exist in the memory?
Python
File handling in python
Python | Check if a file exists or not?
30 DEC 2018 by
IncludeHelp
In this tutorial, we are going to learn how to check whether a file exists or not in python?
Python
File handling in python
Shortest Source to Destination Path
28 DEC 2018 by
Radib Kar
In this article, we are going to see how to find the shortest path from source to destination in a 2D maze? This problem has been featured in the coding round of Samsung.
Interview coding problems/challenges
Matrix
Find intersection of two linked lists using C++ program
28 DEC 2018 by
Radib Kar
In this article, we are going to see how to find intersection of two linked lists efficiently using merge sort?
C++ programs
Linked List programs
Sorting
How to write in an existing file in Python?
28 DEC 2018 by
IncludeHelp
In this tutorial, we are going to learn how to write text in an existing file in python?
Python
File handling in python
C++ program to find Union of two single Linked Lists
27 DEC 2018 by
Radib Kar
In this article, we are going to see how to find union of two linked list efficiently using merge sorting?
C++ programs
Linked List programs
Sorting
Writing, Reading content of the file in Python
27 DEC 2018 by
IncludeHelp
In this tutorial, we are going to learn how to write content to file using write() function and how to read the content of a file using read() function in python?
Python
File handling in python
Printing file name, closed status and file mode in Python
27 DEC 2018 by
IncludeHelp
In this tutorial, we are going to learn about how to find, print file name, file close status, file opening mode in python?
Python
File handling in python
Opening, closing a file/open(), close() functions in Python
27 DEC 2018 by
IncludeHelp
In this tutorial, we are going to learn about the basic operations of file handling in python, we will learn about the file opening with various mode and file closing().
Python
File handling in python
Merge sort for single linked lists
26 DEC 2018 by
Radib Kar
Merge sort for single linked list using C program: In this article, we are going to see how to sort two linked lists using merge sort?
C++ programs
Linked List programs
Sorting
C program to Reverse only First N Elements of a Linked List
26 DEC 2018 by
Radib Kar
Reverse only first N elements of a linked list: In this article, we are going to see how to reverse only first N elements of a linked list?
C programs
Linked List programs
C program to check whether a given number is palindrome or not using Bitwise Operator
26 DEC 2018 by
Radib Kar
Palindrome number check program in C: In this article, we are going to see how to use bitwise operators to find whether a number (binary representation) is palindrome or not?
C programs
C bitwise operator's programs
C program to display a Linked List in Reverse
25 DEC 2018 by
Radib Kar
Display a linked list in reverse: Here, we are going to implement a C program to display the linked list in reverse using recursion.
C programs
Linked List programs
C program to count number of bits set to 1 in an Integer
25 DEC 2018 by
Radib Kar
Count number of bit set to 1 in an integer using C program: Here, we are going to implement a C program that will count the total set bits (bits which are set to 1) in an integer number using bitwise operator.
C programs
C bitwise operator's programs
C program to check if all the bits of a given integer is one (1)
25 DEC 2018 by
Radib Kar
Check if all the bits of a given integer is one (1) using C program: Here, we are going to implement a C program that will check whether all bits of an integer is set/one (1) or not.
C programs
C bitwise operator's programs
C# | Two dimensional array with fixed row size and variable columns size
25 DEC 2018 by
Pankaj Singh
C# Example of two dimensional arrays: Here, we are going to learn how to declare, use and print a two dimensional array – where number of rows are fixed and number of columns are variable length.
C# programs
C# basic programs
C# arrays programs
C# | different types of two dimensional array declarations
25 DEC 2018 by
Pankaj Singh
C# Example of two dimensional array with different types of array declarations: Here, we are going to learn how to declare a two dimensional array using different styles in C#?
C# programs
C# basic programs
C# arrays programs
C# | printing an integer array using foreach loop
25 DEC 2018 by
Pankaj Singh
C# Example of foreach loop: Here, we are going to learn how to print an integer array using foreach loop in C#?
C# programs
C# basic programs
C# arrays programs
C# | different types of one dimensional array declarations
25 DEC 2018 by
Pankaj Singh
C# Example of one dimensional array with different types of array declarations: Here, we are going to learn how to declare a one dimensional array using different styles in C#?
C# programs
C# basic programs
C# arrays programs
C# | Design a simple calculator using switch case statement
25 DEC 2018 by
Pankaj Singh
C# switch case statement example: Here, we are going to design a simple calculator using switch case statement in C#.
C# programs
C# basic programs
C# | Design a simple calculator using if else if statements
25 DEC 2018 by
Pankaj Singh
C# if else if example: Here, we are going to design a simple calculator using if else if conditional statements in C#.
C# programs
C# basic programs
C# | print type, max and min value of various data types
25 DEC 2018 by
Pankaj Singh
Here, we are going to learn about the various types of data types in C#. In this example, we will print type of the data types, their min values and max values.
C# programs
C# basic programs
Transform to Sum Tree
24 DEC 2018 by
Radib Kar
In this article, we are going to see how to convert a binary tree to sum tree? This problem has been featured in Amazon, Microsoft.
Interview coding problems/challenges
Tree
C++ program to find two unique numbers in an array
24 DEC 2018 by
Bhanu Pratap Raghav
C++ program to find two unique numbers in an array: Here, we are going to learn how to find two unique numbers in a given array using bitwise operators?
C++ programs
C++ bit magic programs
ZIP files on command line in Linux
24 DEC 2018 by
Himanshu Bhatt
Here, we are going to learn about the ZIP files command in Linux, how to ZIP/UNZIP the files on command line in Linux?
Linux
Archiving Files Using Linux Command Line
24 DEC 2018 by
Himanshu Bhatt
In this article, we will understand the basics of Archiving files using the command line on Linux.
Linux
Compression techniques in Linux
24 DEC 2018 by
Himanshu Bhatt
Compression in Linux (gzip utility): In this article, we are going to learn about the compression techniques in Linux.
Linux
Types of ICMP Messages and ICMP Message Format
24 DEC 2018 by
Mahima Rao
We will explain you about types of ICMP messages and ICMP (Internet Control Message Protocol) message format.
Computer Networks
Two Mirror Trees
22 DEC 2018 by
Radib Kar
In this article, we are going to see how to find whether a tree is mirror reflection of another tree or not? This problem has been featured in the coding round of D.E.Shaw, Hike and Amazon.
Interview coding problems/challenges
Tree
C++ program to toggle Kth bit of a number
22 DEC 2018 by
Saksham Bhayana
Here, we are going to learn how to toggle Kth bit of a given number using C++ program (bitwise operator)?
C++ programs
C++ bit magic programs
Python | Generate random number using numpy library
22 DEC 2018 by
Ritik Aggarwal
Python | Generate Random numbers: Here, we are going to learn how to generate random numbers using numpy library in python programming language?
Python
Python programs
IPV6 Addressing, Header, and Routing Protocols
22 DEC 2018 by
Mahima Rao
In this tutorial, we will introduce you to IPV6 (Internet Protocol Version 6) Addressing along with the IPV6 Header and IPV6 Routing Protocols.
Computer Networks
What is IPV4 Addressing?
22 DEC 2018 by
Mahima Rao
Here, we are going to learn about IPV4 Addressing, its types and about IPV4 header description.
Computer Networks
Find a Node in Linked List using C++ program
21 DEC 2018 by
Indrajeet Das
Here, we are going to write a C++ program to find a Node in the Linked list.
C++ programs
Linked List programs
C program to find the Highest Bit Set for any given Integer
21 DEC 2018 by
Radib Kar
Find the highest bit set of a number in C: Here, we are going to see how to use bitwise operators to find the highest bit set in the binary representation of given integer?
C programs
C bitwise operator's programs
C program to Count the Number of Trailing Zeroes in an Integer
21 DEC 2018 by
Radib Kar
Count the number of trailing zeroes in an integer in C: Here, we are going to see how to use bitwise operators for counting number of trailing zeros in the binary representation of an integer?
C programs
C bitwise operator's programs
Bitwise Operators and their working with Examples in C
21 DEC 2018 by
Radib Kar
Bitwise operations in C and their working: Here, we are going to learn how bitwise operator work in C programming language?
C programming
K - Nearest Neighbors (KNN) Algorithm | Machine Learning
21 DEC 2018 by
Ritik Aggarwal
Here, we are going to implement K - Nearest Neighbors (KNN) Algorithm | Machine Learning using Python code.
Machine learning
C++ program to print all the Non-repeated Numbers in an Array
19 DEC 2018 by
Radib Kar
In this article, we are going to see how to print all the non-repeating numbers in an array with use of STL?
C++ programs
C++ array programs
C++ STL Map
C++ program to print all the Repeated Numbers with Frequency in an Array
19 DEC 2018 by
Radib Kar
In this article we are going to see how to print all the repeating numbers with their frequency in an array with use of STL?
C++ programs
C++ array programs
C++ STL Map
Eliminate duplicates from Linked List using C++ program
19 DEC 2018 by
Indrajeet Das
Here, we are going to learn how to eliminate duplicated from the linked list using a C++ program?
C++ programs
Linked List programs
Append Last N Nodes to First in the Linked List using C++ program
19 DEC 2018 by
Indrajeet Das
Here, we are going to learn how to append last N nodes to first in the linked list using a C++ program?
C++ programs
Linked List programs
Print All Nodes that don't have Sibling
17 DEC 2018 by
Radib Kar
In this article, we are going to see how to find the nodes that have no siblings? This problem has been featured in the coding round of D.E. Shaw, Amazon.
Interview coding problems/challenges
Tree
Minimum jumps required using Dynamic programming (DP)
17 DEC 2018 by
Ritik Aggarwal
Given an array of integers of length N in which value of each index represent maximum jump u can take from that index. You have to find minimum jumps required to reach from 0th index to the end of the array(last index).
Algorithms
Dynamic programming
Compute sum of digits in all numbers from 1 to N for a given N
17 DEC 2018 by
Vivek Kothari
In this article, we are going to see how to compute sum of digits in all numbers from 1 to N for a given N?
Algorithms
Dynamic programming
Make Utility (MakeFile) in Linux
17 DEC 2018 by
Himanshu Bhatt
In this article, we are going to see how to compute sum of digits in all numbers from 1 to N for a given N?
Linux
Toppers of Class
15 DEC 2018 by
Radib Kar
Toppers of the Class - is an interview coding problem came in the coding round of D.E. Shaw. Here, we are going to implement its solution along with example and algorithm.
Interview coding problems/challenges
Fast Exponentiation using Bitmasking
15 DEC 2018 by
Vivek Kothari
Here, we are going to learn about the Fast Exponentiation using Bitmasking to compute the a raise to the power b i.e. (a^b).
Algorithms
Bitmasking
Delete elements from a Map | C++ STL
15 DEC 2018 by
Vivek Kothari
C++ STL | std::map::erase() and std::map::clear() functions with Example: Here, we are going to learn how to delete elements from a Map in C++ STL?
C++ STL
C++ STL Map
Wild card matching problem using Dynamic programming (DP)
14 DEC 2018 by
Ritik Aggarwal
Here, we are going to solve the wild chard matching problem using dynamic programming (DP) using C++ program.
Algorithms
Dynamic programming
C++ program to convert a string of number to integer
14 DEC 2018 by
Indrajeet Das
Here, we are going to learn how to convert a string to integer using C++ program?
C++ programs
C++ string programs
Stair Case: C++ program to solve the staircase problem
14 DEC 2018 by
Indrajeet Das
Here, we are going to implement a C++ program to solve the staircase problem.
C++ programs
C++ recursion programs
Pair Case: C++ program to enter '*' between two identical characters in a string
14 DEC 2018 by
Indrajeet Das
Here, we are going to implement a C++ program that will enter asterisk (*) between two identical characters in a string.
C++ programs
C++ string programs
C Program to find the Biggest Number in an Array of Numbers using Recursion
13 DEC 2018 by
Radib Kar
Here, we are going to implement a C program to find the biggest number in an array of numbers using recursion.
C programs
C One Dimensional Array programs
Egg dropping problem using Dynamic Programming (DP)
13 DEC 2018 by
Ritik Aggarwal
In this article, we are going to implement a C++ program to solve the Egg dropping problem using dynamic programming (DP).
Algorithms
Dynamic programming
Java program for Binary Search Using Recursion
13 DEC 2018 by
Indrajeet Das
Java | Binary search using recursion: Here, we are implementing a java program for binary search using recursion.
Java programs
Java recursion programs
Java Algorithms implementations
Java program for Tower of Hanoi
13 DEC 2018 by
Indrajeet Das
Tower of Hanoi program in Java: Here, we are implementing a Java program to solve the Tower of Hanoi.
Java programs
Java recursion programs
C++ program to Sort Names in an Alphabetical Order
12 DEC 2018 by
Radib Kar
In this article, we are going to learn how to sort a list of names (lowercase) in alphabetical order (Dictionary order) using C++ program?
C++ programs
C++ string programs
C program to accept Sorted Array and do Search using Binary Search
12 DEC 2018 by
Radib Kar
Here, we are going to learn how to perform binary search on a sorted array: Here, a sorted array is given and we have to perform binary search on it.
C programs
C One Dimensional Array programs
C Program to Cyclically Permute the Elements of an Array
12 DEC 2018 by
Radib Kar
Here, we are implementing a C program, which will cyclically permute the elements of an array.
C programs
C One Dimensional Array programs
C++ program to swap adjacent bits
12 DEC 2018 by
Saksham Bhayana
Swapping of adjacent bits in C++: Here, we are going to learn how to swap adjacent bits of a number?
C++ programs
C++ bit magic programs
Use of Injection in SQL
12 DEC 2018 by
Bharti Parmar
In this article, we are going to discuss about what is injection, how we can use injection in SQL?
SQL
Multiprocessor Scheduling in Operating System
11 DEC 2018 by
Prerana Jain
In this article, we will learn about the multiprocessor scheduling and also discuss about the different types of multiprocessor operating system.
Operating Systems
System Calls in Operating System
11 DEC 2018 by
Prerana Jain
In this article, we will learn about the introduction of system calls and also discuss about the various types of system call in operating system.
Operating Systems
C++ program to find Unique Number using Bit Masking
11 DEC 2018 by
Saksham Bhayana
Here, we are implementing a C++ program to find the unique number using bit masking.
C++ programs
Finding Ugly Number using Dynamic Programming (DP)
11 DEC 2018 by
Ritik Aggarwal
Here, we are going to learn what ugly number is and how to find ugly number using dynamic programming (DP)?
Algorithms
Dynamic programming
Find length of loop in a linked list
10 DEC 2018 by
Radib Kar
In this article, we are going to learn how to detect loop in linked list and find its length using Floyd’s cycle detection algorithm? This problem has been featured in the coding round of Adobe, Qualcomm.
Interview coding problems/challenges
Data Structure
Exit Point in a Matrix
10 DEC 2018 by
Radib Kar
In this article, we are going to see a maze problem (exit point in a matrix) which came in the coding round of Samsung.
Interview coding problems/challenges
Coding Algorithms
Matrix
C program to find two smallest elements in a one dimensional array
10 DEC 2018 by
Radib Kar
In this article we are going to implement a C program to find two smallest elements in a one dimensional array.
C programs
C One Dimensional Array programs
C++ program to check whether a given Binary Search Tree is balanced or not?
10 DEC 2018 by
Bhanu Pratap Raghav
Here, we are going to implement a C++ program that will check whether a given binary search tree is a balanced tree or not?
C++ programs
Data Structure Tree programs
C++ program to obtain Multiplication recursively
10 DEC 2018 by
Indrajeet Das
Given two integers m & n, calculate and return their multiplication using recursion. You can only use subtraction and addition for your calculation.
C++ programs
Edit Distance using Dynamic Programming (DP)
09 DEC 2018 by
Ritik Aggarwal
Edit Distance using Dynamic Programming: given two string s1 and s2 of length M and N respectively, we have to perform 1) Insert a character at any position, and 2) Delete a character at any position.
Algorithms
Dynamic programming
Non-intersecting chords using Dynamic Programming (DP)
09 DEC 2018 by
Ritik Aggarwal
Non-intersecting chords using Dynamic programming: find number of ways in which N non- intersecting chords can be formed using these 2*N points.
Algorithms
Dynamic programming
C++ program to find Last occurrence of a Number using Recursion in an array
09 DEC 2018 by
Indrajeet Das
Here, we are implementing a C++ program that will find the last occurrence of a number using recursion in an array.
C++ programs
C++ program to find first occurrence of a Number Using Recursion in an array
09 DEC 2018 by
Indrajeet Das
Here, we are implementing a C++ program, that will be used to find the first occurrence of a number in an array.
C++ programs
C++ program to find number of BSTs with N nodes (Catalan numbers)
09 DEC 2018 by
Saksham Bhayana
Here, we are implementing a C++ program to find number of BSTs with N Nodes (Catalan numbers).
C++ programs
Data Structure Tree programs
Root to leaf Path Sum
07 DEC 2018 by
Radib Kar
In this article, we are going to see how to check whether there exists a path from root leaf which has exactly the same sum given as input. This problem has been asked in coding round of Samsung, Microsoft, Adobe, Amazon etc.
Interview coding problems/challenges
Data Structure
C++ program to print all subsequences of a String
07 DEC 2018 by
Bhanu Pratap Raghav
Here, we are implementing a C++ program that prints all subsequences of a string.
C++ programs
Write your own memset() function in C
07 DEC 2018 by
IncludeHelp
Here, we are going to learn how to write your own memset() function to fill blocks of memory with a particular value in C?
C tutorial
C programs
C string program
memset() function in C with Example
07 DEC 2018 by
IncludeHelp
string.h memset() function with example: Here, we are going to learn about the memset() function of string.h in C/C++ language, which is used to fill a block of memory with the given value.
C tutorial
C programs
C string program
Procedure in PL/SQL to find minimum of 2 numbers
07 DEC 2018 by
Ayush Sharma
Here, we are going to learn how to write a Procedure in PL/SQL to find minimum of 2 numbers?
PL/SQL
C++ program to find presence of a number X in the array recursively
06 DEC 2018 by
Indrajeet Das
Here, we are implementing a C++ program to find presence of a number X in the array recursively.
C++ programs
C++ program to Convert Roman Number to Integer Number
06 DEC 2018 by
Debasis Jana
In this article, we are going to learn, how we can convert a roman number into integer form using C++ program?
C++ programs
Write your own memcpy() function in C
06 DEC 2018 by
IncludeHelp
Here, we are going to learn how to write your own memcpy() function to copy blocks of memory from one location to another?
C tutorial
C programs
C string program
memcpy() function in C with Example
06 DEC 2018 by
IncludeHelp
string.h – memcpy() function with example: Here, we are going to learn about the memcpy() function – which is used to copy a block of memory from one location to another.
C tutorial
C programs
C string program
Error: Assignment of read-only location in C
06 DEC 2018 by
IncludeHelp
Here, we are going to learn why an Error: Assignment of read-only location in C occurs and how to fixed in C programming language?
C programs
Common C program Errors
Compute the value of A raise to the power B using Fast Exponentiation
05 DEC 2018 by
Ankit Sood
Here, we are going to compute the value of "A" raise to the power "B" using Fast Exponentiation.
Algorithms
Recursion
C program to find second smallest element in a one dimensional array
05 DEC 2018 by
Radib Kar
Here, we are implementing a C program that will read a one dimensional array of integers and find the second smallest element it.
C programs
C One Dimensional Array programs
C program to find two largest elements in a one dimensional array
05 DEC 2018 by
Radib Kar
Here, we are implementing a C program that finds the two largest numbers from a one dimensional array.
C programs
C One Dimensional Array programs
C# | Find the addition of two integer numbers
05 DEC 2018 by
IncludeHelp
C# program to find the addition of two integer numbers: Here, we are writing a C# program that will read two integer numbers and find their sum.
C# programs
C# basic programs
C# | Input and print an integer number
05 DEC 2018 by
IncludeHelp
C# program to input and print an integer number: Here, we are writing a C# program that will read an integer value and print it.
C# programs
C# basic programs
Job sequencing problem
04 DEC 2018 by
Radib Kar
In this article, we are going to see how the job sequencing problem can be solved using greedy strategy?
Interview coding problems/challenges
Coding Algorithms
Greedy Algorithms
C program to find second largest elements in a one dimensional array
04 DEC 2018 by
Radib Kar
In this article, we are going to write a C program to find the second maximum element from one dimensional array.
C programs
C One Dimensional Array programs
C program to create a new array from a given array with the elements divisible by a specific number
04 DEC 2018 by
IncludeHelp
Here, we are implementing a c program that will create a new array from a given array with the elements divisible by a specific number in an array.
C programs
C One Dimensional Array programs
C program to count total number of elements divisible by a specific number in an array
04 DEC 2018 by
IncludeHelp
Here, we are implementing a c program that will count total number of elements divisible by a specific number in an array.
C programs
C One Dimensional Array programs
C# | Declare different types of variables, assign the values and print
04 DEC 2018 by
IncludeHelp
C# basic program to declare, assign and print different types of variables: Here, we are writing a C# program, in which we will declare, assign and print different type of values.
C# programs
C# basic programs
C# | Print messages/text (program to print Hello world)
04 DEC 2018 by
IncludeHelp
C# basic program to print hello world: Here, we are writing a basic program in C# that will print the messages/text on the output.
C# programs
C# basic programs
Greedy Strategy to solve major algorithm problems
03 DEC 2018 by
Radib Kar
In this article, we are going to see what greedy algorithm is and how it can be used to solve major interview problems based on algorithms?
Interview coding problems/challenges
Coding Algorithms
Greedy Algorithms
<bits/stdc++.h> as header file in C++
03 DEC 2018 by
Radib Kar
In this article, we are going to see how useful <bits/stdc++.h> is as a header file for competitive programming?
C++ programming language
C++ STL
Insert elements in map | C++ STL
03 DEC 2018 by
Vivek Kothari
C++ STL map::insert() function with Example: Here, we are going to learn how to insert elements in map in C++ STL?
C++ STL
C++ STL Map
map::empty() function with Example in C++ STL
03 DEC 2018 by
Vivek Kothari
C++ STL map::empty() function with example: Here, we are going to learn about the map::empty() function in C++ STL, that is used to check whether a map is empty or not?
C++ STL
C++ STL Map
map::max_size() function with Example in C++ STL
03 DEC 2018 by
Vivek Kothari
C++ STL map::max_size() function with example: Here, we are going to learn about the map::max_size() function in C++ STL, that is used to return the maximum number of elements of the map that it can store.
C++ STL
C++ STL Map
Reverse a single linked list
02 DEC 2018 by
Radib Kar
In this article, we are going to see how to reverse a single linked list? This problem has come to coding round of Amazon, Microsoft.
Interview coding problems/challenges
Data Structure
Print Boundary Sum of a Binary Tree
02 DEC 2018 by
Radib Kar
In-this article, we are going to learn how to find boundary sum of a binary tree? This article contains the solution along with algorithm and program.
Interview coding problems/challenges
Data Structure
0-1 Knapsack Algorithm
02 DEC 2018 by
Vivek Kothari
Here, we are going to learn about the 0-1 Knapsack Algorithm along with the explanation, algorithm, and example.
Interview coding problems/challenges
Dynamic Programming
Fractional knapsack problem
02 DEC 2018 by
Vivek Kothari
In this article, we are discussing practical implementation of fractional knapsack problem. It can be solve using the greedy approach.
Interview coding problems/challenges
Greedy Algorithms
C++ STL sort function to sort an array or vector
02 DEC 2018 by
Radib Kar
In this article we are going to learn how we can use STL sort function to sort array or vector in C++?
C++ STL
C++ STL Array
C++ STL Vector
Why IncludeHelp?
01 DEC 2018 by
IncludeHelp
It has been three year, we have started IncludeHelp. Started from zero and then it’s our readers for whom we are here today. It’s the love...
Blogs
Different Addressing Modes of 8086 Microprocessor
01 DEC 2018 by
Uma Dasgupta
Here, we are going to learn about the Different addressing modes of 8086 microprocessor.
Embedded Systems
8086 Microprocessor
C# | Print numbers from 1 to 15 using do while loop
01 DEC 2018 by
Pankaj Singh
C# while loop Example: Here, we are going to learn how to print numbers from 1 to 15 do while loop in C# programming language?
C# programs
C# basic programs
C# | Print numbers from 1 to 15 using while loop
01 DEC 2018 by
Pankaj Singh
C# while loop Example: Here, we are going to learn how to print numbers from 1 to 15 while loop in C# programming language?
C# programs
C# basic programs