CSE Lecturers

CSE Lecturers "CSE Lecturers" provides free course, tutorials and information on various technology topics.

This Page designed to help individuals expand their knowledge and skills in technology through engaging and informative video content. :https://cselecturers.com

20/03/2026

Eid Mubarak 🌙

02/09/2025

If you’re seeing the warning “This Unlicensed App Will Be Disabled Soon”, don’t worry! 🚫📱In this video, I’ll explain:✅ W...
20/08/2025

If you’re seeing the warning “This Unlicensed App Will Be Disabled Soon”, don’t worry! 🚫📱
In this video, I’ll explain:
✅ Why this error appears
✅ How to fix the “Unlicensed App” issue
✅ Safe solutions to keep your apps working
✅ Tips to avoid future unlicensed app problems

This problem is common in Android devices, cracked apps, and unverified software. Watch till the end to understand the reason and solution step by step.

If you’re seeing the warning “This Unlicensed App Will Be Disabled Soon”, don’t worry! 🚫📱In this video, I’ll explain:✅ Why this error appears✅ How to fix t...

04/07/2025

“Education is not the filling of a pot but the lighting of a fire”

03/07/2025

“The roots of education are bitter, but the fruit is sweet.”

02/07/2025

“The beautiful thing about learning is nobody can take it away from you.”

01/07/2025

Education is not preparation
for life;
education is life itself.”

Windows vs Linux – কোনটা আপনার জন্য উপযুক্ত? 🖥️🐧আমরা অনেকেই জানতে চাই, Windows ভালো নাকি Linux?এই প্রশ্নের উত্তর নির্ভর ...
19/05/2025

Windows vs Linux – কোনটা আপনার জন্য উপযুক্ত? 🖥️🐧

আমরা অনেকেই জানতে চাই, Windows ভালো নাকি Linux?
এই প্রশ্নের উত্তর নির্ভর করে আপনি কী ধরনের কাজ করেন তার উপর।

🔍 সংক্ষেপে পার্থক্য:
✅ Windows – সহজ ইউজার ইন্টারফেস, অফিস ও গেমিংয়ের জন্য ভালো
✅ Linux – ফ্রি, নিরাপদ এবং প্রোগ্রামিং ও সার্ভারের জন্য আদর্শ

🎯 আপনি যদি হন –
👨‍🎓 শিক্ষার্থী – উভয়ই ব্যবহার করা যায়
👨‍💻 প্রোগ্রামার – Linux
🎮 গেমার – Windows
🧑‍💼 অফিস ইউজার – Windows
🧑‍🔧 সার্ভার অ্যাডমিন – Linux

👇 আপনার মতামত কমেন্টে জানান – আপনি কোনটা ব্যবহার করছেন? এবং কেন?

Professional 16-Camera IP Surveillance System Setup Check out this full network diagram featuring:✅ 16-Port NVR✅ 16 IP C...
18/05/2025

Professional 16-Camera IP Surveillance System Setup
Check out this full network diagram featuring:

✅ 16-Port NVR
✅ 16 IP Cameras with Assigned IPs
✅ Dual 16-Port PoE Switches
✅ Router for Internet Connectivity
✅ Monitor + Mouse for Live View and Control

Perfect for hotels, offices, banks, and large properties 🏨🏢🏦
Neat, secure, and fully IP-based for maximum flexibility and coverage!

👉 Need a custom design like this? Inbox us or visit: cselecturers.com

Understanding the Domain Name System (DNS) 🌐Ever wondered how websites like google.com or sales.google.com actually work...
17/05/2025

Understanding the Domain Name System (DNS) 🌐

Ever wondered how websites like google.com or sales.google.com actually work behind the scenes?

🔹 Internet Root Domain: The invisible starting point – represented as “.”
🔹 Top-Level Domains (TLDs): .com, .org, .net, .edu, etc.
🔹 Second-Level Domains: Like google, expedia, or congress
🔹 Third-Level Domains/Subdomains: Like sales.google.com
🔹 Hosts: Specific devices like computer1.sales.google.com

💡 Example:
computer1.sales.google.com
→ Host: computer1
→ Subdomain: sales
→ Domain: google.com

📌 Save this post for your next networking exam or project!

✅ Follow us for more tech content!
📺 YouTube: youtube.com/
👍 Facebook: CSE Lecturers – Empowering Learning with Simplicity!

Write a C program to find the sum of individual digits of a positive integer.  স্ট্যান্ডার্ড ইনপুট/আউটপুট লাইব্রেরি যোগ ...
17/05/2025

Write a C program to find the sum of individual digits of a positive integer.

স্ট্যান্ডার্ড ইনপুট/আউটপুট লাইব্রেরি যোগ করা হয়েছে। এটি printf এবং scanf ফাংশন ব্যবহারের জন্য প্রয়োজন।
int main() {
প্রোগ্রামের মূল ফাংশন। এখান থেকে প্রোগ্রাম এক্সিকিউশন শুরু হয়।
int number, sum = 0, remainder;
তিনটি ভেরিয়েবল ডিক্লেয়ার করা হয়েছে:
printf("Enter a positive integer: ");
ব্যবহারকারীকে একটি পজিটিভ ইন্টিজার সংখ্যা ইনপুট দেওয়ার জন্য প্রম্পট প্রদর্শন করা হয়েছে।
scanf("%d", &number);
ব্যবহারকারীর ইনপুট নেওয়া হয়েছে এবং `number` ভেরিয়েবলে সংরক্ষণ করা হয়েছে।
while (number != 0) {
একটি লুপ শুরু করা হয়েছে যা চলবে যতক্ষণ না `number` এর মান `0` হয়।
remainder = number % 10; // Extract the last digit
সংখ্যাটির শেষ ডিজিট বের করা হয়েছে। `%` অপারেটর ব্যবহার করে সংখ্যাটিকে ১০ দিয়ে ভাগ করে ভাগশেষ বের করা হয়েছে।
sum += remainder;
শেষ ডিজিটটি `sum` ভেরিয়েবলে যোগ করা হয়েছে।
number = number / 10;
সংখ্যাটির শেষ ডিজিট বাদ দিয়ে পরবর্তী ডিজিটে যাওয়া হয়েছে। `number` কে ১০ দিয়ে ভাগ করে ভাগফল নেওয়া হয়েছে।
}

printf("Sum of the digits is: %d\n", sum);
ডিজিটগুলোর যোগফল প্রিন্ট করা হয়েছে।
return 0;
প্রোগ্রাম সফলভাবে শেষ হয়েছে বোঝানোর জন্য `0` রিটার্ন করা হয়েছে।




Human Brain vs CPU – 🔴 **Human Brain:*** High IQ level* Sometimes slow, but powerful* Can create and improve CPUs* Drive...
16/05/2025

Human Brain vs CPU –

🔴 **Human Brain:**
* High IQ level
* Sometimes slow, but powerful
* Can create and improve CPUs
* Driven by emotions, feelings, and natural intelligence

🟡 **CPU (Central Processing Unit):**

* Has no IQ, but processes fast
* Executes tasks quickly and consistently
* Reduces human efforts
* Works based on algorithms, pseudocode, commands, and AI

💡 While the brain creates machines, the CPU helps us accomplish more, faster!
🔁 It’s human creativity + machine speed that changes the world!

📌 Follow **CSE Lecturers** for more tech comparisons and learning resources!

🌐 Visit: www.cselecturers.com
📺 YouTube: CSE Lecturers

Address

Dhaka
1230

Alerts

Be the first to know and let us send you an email when CSE Lecturers posts news and promotions. Your email address will not be used for any other purpose, and you can unsubscribe at any time.

Share