ProDeveloperTutorial.com

Tutorials and Programming Solutions
Menu
  • Shell Scripting
  • System Design
  • Linux System Programming
  • 4g LTE
  • Coding questions
  • C
  • C++
  • DSA
  • GIT
  • 450 DSA Cracker
  • 5G NR
  • O-RAN

Author: prodevelopertutorial

Follow this blog to learn more about C, C++, Linux, Competitive Programming concepts, Data Structures.

Searching and Sorting: Find the majority element in the array

Searching and Sorting: Find the majority element in the array

Problem Statement: You are given an arrya of repeating elements. You need to find and print the majority element. An element that appears more tha n/2 times, is called as majority element. Example Input : {3, 3, 4, 2, 4, 4, 2, 4, 4} Output : …
Full Article
No Comments
Arrays: Program to check if an Array is Palindrome or not

Arrays: Program to check if an Array is Palindrome or not

Problem Statement: Given an unsorted array, check if it is palindrome array or not. Example: arr = {1, 2, 0, 2, 1} Output: Palindrome   Solution: The solution is very simple, below are the steps to be follow: 1. We take 2 pointer, first pointer will …
Full Article
No Comments
Arrays: Find triplet with minimum sum

Arrays: Find triplet with minimum sum

Problem Statement: Given an unsorted array, you need to find 3 elements whose sum is the minimum. Example: arr = {-1, 2, 3, -2}; Output: -1 The elements are: -1, -2, 2 The solution in very simple, take 3 variables that will hold minimum, second minimum …
Full Article
No Comments
Arrays: Merge sorted array inplace

Arrays: Merge sorted array inplace

Problem Statement: You are given with 2 sorted arrays, you need to merge the array in-place. You may assume that the first array will have enough space to accomodate all the array elements. Example:   Input: arr1 = arr2 = Output: According to the question, we …
Full Article
No Comments
Arrays: Check if 3 consecutive odds exist

Arrays: Check if 3 consecutive odds exist

Problem Statement: You are given an array, you need to check if there are 3 consecutive odds exist. If exist then return true else false. Example Input: arr = Output: false   Solution The solution is very simple. Just iterate throught the array and check if …
Full Article
No Comments
Arrays: Check If N and Its Double Exist

Arrays: Check If N and Its Double Exist

Problem Statement: You are given an array, you need to check if a number and its double exist in that array. Example Input arr = {10, 2, 5, 3} Output: True N = 5 M = 10. 5*2 = 10. So there exist 2 integers, such …
Full Article
No Comments
Arrays: Find unique numbers that sum upto zero

Arrays: Find unique numbers that sum upto zero

Problem Statement: You are given an integer n. You need to return the integers that sum upto 0. Example Input: n = 5 Output: {-5, -1, 1, 2, 3}   Solution Method 1: In this method, we will use the numbers from 1, 2, .. n-1 …
Full Article
No Comments
Arrays: Find numbers with even number of digits

Arrays: Find numbers with even number of digits

Problem Statement: You are given an array of integers. You need to return the count of the numbers that has even number of digits. Example   Input arr = {12, 123, 1234, 12345, 123456} Output: 3 The numbers {12, 1234, 123456} has even digits.   Solution …
Full Article
No Comments
5G NR: RAN Functional Splits

5G NR: RAN Functional Splits

A single Central Unit can be connected to multiple Distributed Units. CU-CP will have RRC, PDCP CU-UP will have SDAP, PDCP Distributed Units will include RLC, MAC, H-PHY. F1 interface is used to cinnect between DU and CU. eCPRI is connected to H-PHY and L-PHY. CPRI …
Full Article
No Comments
5G NR: Simple guide to C-RAN vs Cloud RAN vs vRAN vs O-RAN

5G NR: Simple guide to C-RAN vs Cloud RAN vs vRAN vs O-RAN

In previous chapter we shall learned about RRU, BBU, CU, DU fronthaul, midhaul; In this chapter we shall learn about: D-RAN C-RAN cloud RAN vRAN oRAN D-RAN vs C-RAN vs vRAN vs O-RAN What is D-RAN? DRAN stands for “Distributed RAN”. In this type, RRU and …
Full Article
No Comments

Posts navigation

1 2 3 4 … 83 Next
  • Shell Scripting
  • System Design
  • Linux System Programming
  • 4g LTE
  • Coding questions
  • C
  • C++
  • DSA
  • GIT
  • 450 DSA Cracker
  • 5G NR
  • O-RAN

ProDeveloperTutorial.com

Tutorials and Programming Solutions
Copyright © 2023 ProDeveloperTutorial.com
We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept”, you consent to the use of ALL the cookies.
Do not sell my personal information.
Cookie SettingsAccept
Manage consent

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary
Always Enabled
Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
CookieDurationDescription
cookielawinfo-checkbox-analytics11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".
cookielawinfo-checkbox-functional11 monthsThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".
cookielawinfo-checkbox-necessary11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".
cookielawinfo-checkbox-others11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.
cookielawinfo-checkbox-performance11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".
viewed_cookie_policy11 monthsThe cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.
Functional
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.
Performance
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
Analytics
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
Advertisement
Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.
Others
Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.
SAVE & ACCEPT