Thursday, April 03, 2025

Welcome to Onlinetunes24 .....

We are committed to become your long-term, trusted partner. Our priority is not only to provide professional services and solutions but to become your IT vendor dedicated to meet your needs today and support your growing business needs tomorrow.

Bubble sort algorithm is a basic algorithm for sorting sets of numbers. It is the one you will probably be confronted with at college. There are probably better sorting algorithms but since this is the one you will most likely encounter, I have decided to write a simple implementation of it in PHP. The idea is simple. You iterate over an array (from the first to the last but one number) using a while loop until it’s sorted. In every iteration you compare the current and the next number. If the current number is greater than the next...

Matrix multiplication in c language

Matrix multiplication in c language: c program to multiply matrices (two dimensional array), this program multiplies two matrices which will be entered by the user. Firstly user will enter the order of a matrix. If the entered orders of two matrix is such that they can't be multiplied then an error message is displayed on the screen. You have already studied the logic to multiply them in Mathematics.  Program: #include <stdio.h>int main(){  int m, n, p, q, i, j, k, sum = 0;  int first[10][10], second[10][10], multiply[10][10];...

ই–মেইলটা পড়া হয়েছে?

জরুরি ই-মেইল পাঠিয়েছেন কিন্তু উত্তর পাচ্ছেন না! কখনো কি জানতে চেয়েছেন আপনার পাঠানো ই-মেইল প্রাপক পড়েছেন কি না? মেইল ট্র্যাকার নামের ছোট একটি প্রোগ্রাম (এক্সটেনশন) আপনার জিমেইলের সঙ্গে যোগ (অ্যাড) করে নিলে প্রাপক মেইল পড়ার সঙ্গে সঙ্গে সেন্ড মেইলের পাশে দুটি সবুজ টিক চিহ্ন দেখা যাবে। আপনি বুঝতে পারবেন কখন এবং কয়বার আপনার ই-মেইল পড়া হয়েছে। জিমেইল অ্যাকাউন্টে ঢুকে https://mailtrack.io ওয়েবসাইটে যান। Sign In–এ ক্লিক করুন। পরের পাতায় আপনার জিমেইলের অ্যাকাউন্টের সঙ্গে মেইল ট্র্যাকার যোগ করবেন কি না, সেটির অনুমতি (পারমিশন) চাইবে। Accept-এ...

MySQL UPDATE a column value with add or subtract

If you have a numerical value in a MySQL database table, that you want to UPDATE by adding a value to it, or subtracting a value from it. This can be done with a single MySQL query. So for an example, I have a database with a product which has a quantity of 100 in stock, somebody has just bought 10 so I need to subtract that value from the database quantity. 1. UPDATE products_table SET quantity = quantity - 10 WHERE product_id = 1001  Later in the shop admin you receive new stock and so need to UPDATE the product quantity by...

ফেসবুকে দিন একটাই নাম

সামাজিক যোগাযোগের জনপ্রিয় ওয়েব সাইট ফেসবুকে সাধারণত প্রথম এবং দ্বিতীয় নাম দিয়ে একাউন্ট খুলতে হয়। কিন্তু এখন আপনি চাইলে ফেসবুকে শুধু মাত্র একটি নাম দিতে পারবেন। নাম যদি হয় "আমার বাংলাদেশ" তাহলে ফেসবুকে শুধু আমার বা বাংলাদেশ যেকোন একটি নাম ব্যবহার করতে পারবেন। সাধারণত ফেসবুকের নাম পরিবর্তনের সীমা নির্ধারণ করা থাকে। যদি আপনার একাউন্ট এর নাম পরিবর্তনের সুযোগ থাকে তাহলে একাউন্টের জন্য একটি নাম ব্যবহার করতে পারবেন।  মজিলা ফায়ারফক্স ব্রাউজার থেকে যে ফেসবুক একাউন্টের নাম পরিবর্তন করতে চান সেটিতে লগিন করে নিন। এবার উপরের ডান পাশের মেনু থেকে Settings-এ...

Page 1 of 7712345Next
Loading
Twitter Delicious Facebook Digg Stumbleupon Favorites More

 
Flying Twitter Bird Widget By ICT Sparkle