ZeroBit School
ZeroBit School
  • 111
  • 21 774

Відео

আইপি অ্যাড্রেস ক্লাসেস | সাবনেটিং | Subnetting | IP Address Classes
Переглядів 33День тому
UA-cam Channel: www.youtube.com/@MafiulHasanMatin আইপি অ্যাড্রেস (IP Address) বিভিন্ন ক্লাসে বিভক্ত করা হয়, যা নেটওয়ার্কের আকার এবং প্রয়োজন অনুযায়ী ঠিকানা বরাদ্দ করতে সাহায্য করে। সাধারণত আইপি অ্যাড্রেস ৫টি ক্লাসে ভাগ করা হয়েছে: ক্লাস A, B, C, D, এবং E। প্রতিটি ক্লাসের নির্দিষ্ট রেঞ্জ এবং ব্যবহার রয়েছে। #subnetting #computernetworking #computernetworks
ফ্লোর প্ল্যান ডিজাইন অটোক্যাড | Floor Plan Design AutoCAD | Bangla Tutorial
Переглядів 34814 днів тому
UA-cam Channel: www.youtube.com/@MafiulHasanMatin Title: "AutoCAD Floor Plan Design Tutorial | Step-by-Step Guide for Beginners" Description: Welcome to Zerobit School! In this video, we'll walk you through the process of creating a professional floor plan in AutoCAD from start to finish. Whether you're an architect, interior designer, or a beginner exploring the world of CAD design, this step-...
Simple Calculator | switch() | c programming | bangla tutorial
Переглядів 5914 днів тому
UA-cam Channel: www.youtube.com/@MafiulHasanMatin This program performs basic arithmetic operations (addition, subtraction, multiplication, division) based on user input. It uses a switch statement to select the appropriate operation. #c #programminglanguage #coding #computerlanguage #cse #cprogramming #education #technology #ifelsestatement #ifelse #numbers #number #switch
Find the Largest of Three Numbers | nested if else | c programming | bangla tutorial
Переглядів 5214 днів тому
UA-cam Channel: www.youtube.com/@MafiulHasanMatin This program checks which of the three entered numbers is the largest. It uses a nested if-else ladder to compare the numbers in sequence and determine the largest.
Day or Night Check | if else | c programming | bangla tutorial
Переглядів 5314 днів тому
UA-cam Channel: www.youtube.com/@MafiulHasanMatin This program takes the current hour in 24-hour format as input. If the hour is between 6 (inclusive) and 18 (exclusive), it prints "Daytime". Otherwise, it prints "Nighttime".
Check Character Case | if else | c programming | bangla tutorial
Переглядів 4614 днів тому
UA-cam Channel: www.youtube.com/@MafiulHasanMatin This program takes a single character as input and checks if it is uppercase or lowercase. If it’s uppercase, it prints "Uppercase letter"; otherwise, it prints "Lowercase letter". #c #programminglanguage #coding #computerlanguage #cse #cprogramming #education #technology #ifelsestatement #ifelse #numbers #number
Check for Teenager | if else | c programming | bangla tutorial
Переглядів 3214 днів тому
UA-cam Channel: www.youtube.com/@MafiulHasanMatin This program checks if a person is a teenager. A teenager is someone whose age is between 13 and 19 (inclusive). If the person’s age is in this range, the program prints "Teenager". Otherwise, it prints "Not a teenager". #c #programminglanguage #coding #computerlanguage #cse #cprogramming #education #technology #ifelsestatement #ifelse #numbers ...
Check Divisibility by 5 | if else | c programming | bangla tutorial
Переглядів 3814 днів тому
UA-cam Channel: www.youtube.com/@MafiulHasanMatin This program checks whether a given number is divisible by 5. If it is, it prints "Divisible by 5". Otherwise, it prints "Not divisible by 5". #c #programminglanguage #coding #computerlanguage #cse #cprogramming #education #technology #ifelsestatement #ifelse #numbers #number
Check Pass or Fail | if else | c programming | bangla tutorial
Переглядів 5314 днів тому
UA-cam Channel: www.youtube.com/@MafiulHasanMatin This program checks whether a student's score is greater than or equal to 40. If the score is 40 or higher, it prints "Pass". Otherwise, it prints "Fail". #c #programminglanguage #coding #computerlanguage #cse #cprogramming #education #technology #ifelsestatement #ifelse #numbers #number
Bubble Sort | Array | C programming | Bangla Tutorial
Переглядів 8821 день тому
UA-cam Channel: www.youtube.com/@MafiulHasanMatin Problem Description Write a program to sort an array using the Bubble Sort algorithm. Sample Input/Output Input: {5, 1, 4, 2, 8} Output: 1 2 4 5 8 Initial Array: {5, 1, 4, 2, 8} Pass 1: 1. Compare 5 and 1 → Swap → {1, 5, 4, 2, 8} 2. Compare 5 and 4 → Swap → {1, 4, 5, 2, 8} 3. Compare 5 and 2 → Swap → {1, 4, 2, 5, 8} 4. Compare 5 and 8 → No swap ...
Linear Search | Array | C programming | Bangla Tutorial
Переглядів 9121 день тому
UA-cam Channel: www.youtube.com/@MafiulHasanMatin Problem Description Write a program to find the index of a given key in an array using linear search. Sample Input/Output Input: {10, 20, 30, 40, 50}, key = 30 Output: Element 30 found at index 2
Reverse an Array | Array | C programming | Bangla Tutorial
Переглядів 7221 день тому
UA-cam Channel: www.youtube.com/@MafiulHasanMatin Problem Description Write a program to reverse and print the elements of a predefined array. Sample Input/Output Input: {1, 2, 3, 4, 5} Output: 5 4 3 2 1
Calculate the Sum and Average | Array | C programming | Bangla Tutorial
Переглядів 8421 день тому
UA-cam Channel: www.youtube.com/@MafiulHasanMatin 1. Problem Description Write a program to calculate the sum and average of the elements in a given array of integers. The array is predefined and contains 5 elements in this case. 2. Sample Input/Output Input: {10, 20, 30, 40, 50} Output: Sum: 150 Average: 30.00
Find the Smallest Element | Array | C programming | Bangla Tutorial
Переглядів 5421 день тому
UA-cam Channel: www.youtube.com/@MafiulHasanMatin This program demonstrates how to find the smallest element in an array using a simple linear traversal. 1. Problem Description Write a program to find the smallest element in a given array of integers. The array is predefined and contains 5 elements in this case. 2. Sample Input/Output Input: Array is hardcoded: {10, 20, 5, 8, 15} Output: The sm...
Find the Largest Element | Array | C programming | Bangla Tutorial
Переглядів 7821 день тому
Find the Largest Element | Array | C programming | Bangla Tutorial
Amdahl’s Law | Thread | Operating System | Bangla Tutorial
Переглядів 24121 день тому
Amdahl’s Law | Thread | Operating System | Bangla Tutorial
প্রসেসের একাধিক অংশ - উদাহরণ ১ | Multiple parts of a Process-Example 1 | Operating System
Переглядів 18821 день тому
প্রসেসের একাধিক অংশ - উদাহরণ ১ | Multiple parts of a Process-Example 1 | Operating System
প্রসেসের একাধিক অংশ | Multiple Parts of a Process | Operating System | Bangla Tutorial
Переглядів 20521 день тому
প্রসেসের একাধিক অংশ | Multiple Parts of a Process | Operating System | Bangla Tutorial
প্রোগ্রাম বনাম প্রসেস | Program vs. Process | Operating System | Bangla Tutorial
Переглядів 18921 день тому
প্রোগ্রাম বনাম প্রসেস | Program vs. Process | Operating System | Bangla Tutorial
প্রসেস কি? | What is a Process? | Operating System | Bangla Tutorial
Переглядів 19221 день тому
প্রসেস কি? | What is a Process? | Operating System | Bangla Tutorial
ফাইল read() উদাহরণ | Transition from user mode to kernel mode when a program reads a file
Переглядів 17621 день тому
ফাইল read() উদাহরণ | Transition from user mode to kernel mode when a program reads a file
ইউজার মোড থেকে কার্নেল মোডে রূপান্তর | Transition from User to Kernel Mode | OS | Bangla Tutorial
Переглядів 16821 день тому
ইউজার মোড থেকে কার্নেল মোডে রূপান্তর | Transition from User to Kernel Mode | OS | Bangla Tutorial
ডুয়াল-মোড অপারেশন | Dual mode Operation | Operating System | Bangla Tutorial
Переглядів 16821 день тому
ডুয়াল-মোড অপারেশন | Dual mode Operation | Operating System | Bangla Tutorial
কম্পিউটার সিস্টেম স্ট্রাকচার | Computer System Structure | Operating System | Bangla Tutorial
Переглядів 19028 днів тому
কম্পিউটার সিস্টেম স্ট্রাকচার | Computer System Structure | Operating System | Bangla Tutorial
জনপ্রিয় অপারেটিং সিস্টেম | Popular Operating Systems | Operating System | Bangla Tutorial
Переглядів 12528 днів тому
জনপ্রিয় অপারেটিং সিস্টেম | Popular Operating Systems | Operating System | Bangla Tutorial
অপারেটিং সিস্টেমের প্রকারভেদ | Types of Operating Systems | Operating System | Bangla Tutorial
Переглядів 18128 днів тому
অপারেটিং সিস্টেমের প্রকারভেদ | Types of Operating Systems | Operating System | Bangla Tutorial
অপারেটিং সিস্টেমের কাজ | Functions of an Operating System | Bangla Tutorial
Переглядів 16928 днів тому
অপারেটিং সিস্টেমের কাজ | Functions of an Operating System | Bangla Tutorial
বাস্তব জীবনে অপারেটিং সিস্টেমের (OS) গুরুত্ব | Importance of Operating Systems OS in Real Life
Переглядів 19228 днів тому
বাস্তব জীবনে অপারেটিং সিস্টেমের (OS) গুরুত্ব | Importance of Operating Systems OS in Real Life
কম্পিউটার কি ওএস ছাড়া চলতে পারে? Can Computers Run Without OS?
Переглядів 21828 днів тому
কম্পিউটার কি ওএস ছাড়া চলতে পারে? Can Computers Run Without OS?

КОМЕНТАРІ

  • @Kha.Mo.SyeedAsif
    @Kha.Mo.SyeedAsif 27 днів тому

    Thank you sir

  • @DippChowdhury-z3l
    @DippChowdhury-z3l Місяць тому

    sir sum er value ta kivabe determine korlen ota aktu bujhai diyen

  • @Sami09888
    @Sami09888 Місяць тому

    Great explanation, sir.

  • @SanjidaIslam-b1f
    @SanjidaIslam-b1f Місяць тому

    thank you sir

  • @farahdibaislamrodela6361
    @farahdibaislamrodela6361 Місяць тому

    Thank you sir.

  • @SanjidaIslam-b1f
    @SanjidaIslam-b1f Місяць тому

    Thank you sir

  • @SanjidaIslam-b1f
    @SanjidaIslam-b1f Місяць тому

    Thank you sir

  • @adityadebnath7851
    @adityadebnath7851 Місяць тому

    Thank you so much sir. ❤💙

  • @raimasshelf
    @raimasshelf Місяць тому

    Thank you sir

  • @promon22
    @promon22 Місяць тому

    Thanks a lot sir♥️

  • @Kha.Mo.SyeedAsif
    @Kha.Mo.SyeedAsif Місяць тому

    Thank you sir❤✊

  • @deadscammer3374
    @deadscammer3374 Місяць тому

    Thank you sir

  • @AbdullahAlNoman-s6r
    @AbdullahAlNoman-s6r Місяць тому

    Done Sir

  • @AbdurRahman-yi9es
    @AbdurRahman-yi9es Місяць тому

    Done

  • @BadhonBacchu-v7r
    @BadhonBacchu-v7r Місяць тому

    Done Sir

  • @ShowmikAnsary
    @ShowmikAnsary Місяць тому

    Dne

  • @ShowmikAnsary
    @ShowmikAnsary Місяць тому

    Doe

  • @ShowmikAnsary
    @ShowmikAnsary Місяць тому

    Done

  • @ShowmikAnsary
    @ShowmikAnsary Місяць тому

    Done

  • @ShowmikAnsary
    @ShowmikAnsary Місяць тому

    Done

  • @ShowmikAnsary
    @ShowmikAnsary Місяць тому

    Done

  • @ShowmikAnsary
    @ShowmikAnsary Місяць тому

    Done

  • @ShowmikAnsary
    @ShowmikAnsary Місяць тому

    Done

  • @ShowmikAnsary
    @ShowmikAnsary Місяць тому

    Done

  • @bennguyen1313
    @bennguyen1313 Місяць тому

    Interested in making a very simple Win32 console application in c.. I'd like to develop in a modern IDE with debug/breakpoints, but I don't want to use the massive VS Studio Community or VS Code... what would you recommend? CodeBlocks , KDevelop, AutoHotKey/LibCon ? I originally tried doing it Python (WingIDE), but when my application called the DLL it said "Failed to load DLL: [WinError -532462766] Windows Error 0xe0434352"

  • @DippChowdhury-z3l
    @DippChowdhury-z3l Місяць тому

    "C:\Users\arman\Desktop\dipp\CSE 103\op.c"

  • @DippChowdhury-z3l
    @DippChowdhury-z3l Місяць тому

    "C:\Users\arman\Desktop\dipp\CSE 103 o.c"

  • @DippChowdhury-z3l
    @DippChowdhury-z3l Місяць тому

    "C:\Users\arman\Desktop\dipp\CSE 103 el.c"

  • @OisheMahmudSafa
    @OisheMahmudSafa Місяць тому

    ans 9(leap year or not): enter a year : 2024 Leap year

  • @OisheMahmudSafa
    @OisheMahmudSafa Місяць тому

    ans 5(Voter Eligibility): Enter the age:19 eligible for vote

  • @OisheMahmudSafa
    @OisheMahmudSafa Місяць тому

    ans-4:( maximum value): Enter three numbers:6,7,8 The largest number is: 8

  • @OisheMahmudSafa
    @OisheMahmudSafa Місяць тому

    ans 3: (equality check): Enter 2 integer numbers :60,20 not equal

  • @OisheMahmudSafa
    @OisheMahmudSafa Місяць тому

    ans 1:(Greater than or not) Enter a integer value of a =99 Enter a integer value of b =100 100 is greater than 99

  • @AfrinJahanOishee-q1i
    @AfrinJahanOishee-q1i Місяць тому

    ans 5: //Vote Eligibility// Enter your age : 46 Eligible to vote ans 6: //divisible by both num or not// Enter a number to check: 35 Enter the first divisor: 5 Enter the second divisor: 7 The number 35 is divisible by both ans 7: //smallest number between two// Enter the first number: 89 Enter the second number: 76 76 is smaller than 89 ans 8: //Password check// Enter the first password: 45678 Enter the second password: 6789 passwords do not match.

  • @aniqaishrat7038
    @aniqaishrat7038 Місяць тому

    thank you sir , this was very helpful.

  • @Fatin_Israq
    @Fatin_Israq Місяць тому

    Done ✅

  • @aniqaishrat7038
    @aniqaishrat7038 Місяць тому

    thank you so much, sir for making this video.

  • @DippChowdhury-z3l
    @DippChowdhury-z3l Місяць тому

    "C:\Users\arman\Desktop\dipp\program\alf.c"

  • @AfrinJahanOishee-q1i
    @AfrinJahanOishee-q1i Місяць тому

    ans-4:( maximum value) Number 1: 5 Number 2: 6 Number 3: 9 The largest number is: 9

  • @AfrinJahanOishee-q1i
    @AfrinJahanOishee-q1i Місяць тому

    ans- 3:( equality check) Enter 1st integer number : 30 Enter 2nd integer number : 45 Not Equal

  • @AfrinJahanOishee-q1i
    @AfrinJahanOishee-q1i Місяць тому

    ans 2:( within in range or not) Enter a number :8 lower value :5 upper value :9 Within range

  • @AfrinJahanOishee-q1i
    @AfrinJahanOishee-q1i Місяць тому

    ans 1: (greater than or not) Enter a integer value of x = 45 Enter a integer value of y = 78 78 is greater than 45

  • @AfrinJahanOishee-q1i
    @AfrinJahanOishee-q1i Місяць тому

    The initial value of x: 10 The 'Add and assign' value of x : 15 The initial value of y : 20 The 'subtract and assign' value of y : 12 The initial value of z : 15 The 'Multiply and assign' value of z : 45 The initial value of a : 25.000000 The 'Divide and assign' value of a : 5.000000 The initial value of num : 17 The 'Modulus and Assign' value of num : 1 The initial value of b : 12 The 'AND and Assign' value of b : 4 The initial value of c : 6 The 'OR and Assign' value of c : 7 The initial value of d : 10 The 'X-OR and Assign' value of d : 14 The initial value of e : 5 The 'Left shift and Assign' value of e : 20 The initial value of f : 32 The 'Right shift and Assign' value of f : 4

  • @KanizFatema-r3n
    @KanizFatema-r3n Місяць тому

    done

  • @AhsanulHaque-h3y
    @AhsanulHaque-h3y Місяць тому

    practice question 3: C:\Users\user\OneDrive\Desktop\hlab>joy.exe Enter two integer Value: 10 10 Equal C:\Users\user\OneDrive\Desktop\hlab>joy.exe Enter two integer Value: 16 19 Not Equal

  • @AhsanulHaque-h3y
    @AhsanulHaque-h3y Місяць тому

    practice question 2: Three integer value: 18 19 20 the number is within range

  • @AhsanulHaque-h3y
    @AhsanulHaque-h3y Місяць тому

    practice question 1: two integers as input: 12 11 12 is greater than 11

  • @SanjidaIslam-b1f
    @SanjidaIslam-b1f Місяць тому

    helpful video sir

  • @Sami09888
    @Sami09888 Місяць тому

    Very informative video, sir.

  • @Kha.Mo.SyeedAsif
    @Kha.Mo.SyeedAsif Місяць тому

    Thank you sir