Mithlesh Upadhyay

Mithlesh Upadhyay is a Computer Science and AI expert from Madhya Pradesh with strong academic background (BE in CSE and M.Tech in AI) and over six years of experience in technical content development. He has contributed tech articles, led teams, and worked in Full Stack Development and Data Science. He founded the w3colleges.org portal for learning resources.

Author Archives: Mithlesh Upadhyay

Multilevel Paging in Operating System

A page table is a data structure used by virtual memory system in a computer operating system to store the mapping between the virtual addresses and physical addresses. Multilevel page tables are split into two or more levels.The multi-level page tables are tree-like structures to hold page table. The entries of the level-0 page table are pointers to… Read More »

Single row character functions

Single row character function are those function which accepts character values as arguments and return either a numeric or character values. These are two types: Case Manipulation Character Manipulation These are explained as following below. 1. Case Manipulation: It accept the character values and return the character value. UPPER(string1): Converts all letters of string1 into upper case. LOWER(string1):… Read More »

Printing Hollow pattern in CPP

Given N = no of rows and M = no of columns, print the hollow pattern. ********** * * * * * * ********** Given above is an example of hollow pattern of 5 x 10. Given below is the approach to built hollow pattern: To iterate through rows, run an outer loop from 1 to rows. Define… Read More »

How Web Works – Web Application Architecture for Beginners

You may be surfing Internet every day, but,have you ever wondered how your favorite websites work? When you click on something, do you know what happens behind the scenes? If you know little bit about technology, you may know that your request goes to a web server. Web server does all the work and sends results back to… Read More »

25 important machine learning interview questions along with short answers

Here are 25 important machine learning interview questions along with short answers: Question Answer What is machine learning? AI training for predictions based on data. Supervised vs. unsupervised learning? Labeled vs. unlabeled data for model training. Classification vs. regression? Predicting categories vs. continuous values. What is overfitting? Model fits data closely, fails on new data; prevent. What is… Read More »

Nested Loop in C

Prerequisite – Loops in C A nested loop is a loop inside another loop. In C programming language, you can nest a loop inside another loop to perform repetitive tasks. The inner loop executes its entire cycle each time the outer loop executes one cycle. Here is an example of a nested loop in C that prints a… Read More »