Skip to main content

Posts

IELTS Practice Materials

১. IELTS with Liz https://youtube.com/c/IELTSLiz789 (ওনার চেহারায় একটা প্রশান্তির ভাব আছে। আমার দেখতে খুব ভালো লাগে। পড়ায়ও খুব ভালো।) ২. IELTS with Jay/ E2 IELTS https://youtube.com/c/E2IELTS (I love the way Jay talks. I wish the videos were short though!) ৩. IELTS with Adam https://youtube.com/c/engvidAdam (অ্যাডামের কন্টেন্ট খুব ভালো। অ্যাডামকে আমার পছন্দ।) ৪. IELTS with Emma https://youtube.com/c/engvidEmma (এই মেয়েটার হাসি খুশি চেহারা আমার ভালো লাগে।) ৫. IELTS Up https://youtube.com/channel/UCRSFsZwT (এটা কেবল writing-এর জন্য।) ৬. Papa English https://youtube.com/c/papateachme (এই ভদ্রলোককে আমার ভীষণ পছন্দ।) ৭. ETJ English https://youtube.com/c/ETJEnglish (I watch his channel for no reason at all!) ৮. Let's Talk https://youtube.com/c/letstalk (এটা ইন্ডিয়ান চ্যানেল। অ্যাকসেন্টে সমস্যা আছে। কারো বিরক্ত লাগলে এড়িয়ে যেতে পারেন।) ৯. Manjita Osta https://youtube.com/c/ManjitaOsta (ওনার ভোকাবুলারির পোস্টগুলো দেখতে পারেন।) ১০. Vocabulary with Samin https://youtube.com/channel/UC
Recent posts

Spring 2021 Routine

Document Spring-2021 Day Subject Code Time Teacher SAT Engineering Drawings CSE-216 10.00-11.25 AMMM Computer Networking CSE-325 1.00-2.25 SC SUN Simulation & Modeling CSE-317 10.00-11.25 MSU Computer Networking CSE-325 1.00-2.25 SC MON Simulation & Modeling CSE-317 11.30-12.55 MSU TUE Theory of Computation CSE-332 2.30-3.55 PSD WED

Routine Fall 2020

Fall 2020 Routine Routine Fall'20 Day Subject Code Time Teacher SAT Communication Engineering CSE-315 11.30-12.55 BCB SUN MATH MAT-203 10.00-11.25 RCG JAVA CSE-211 11.30-12.55 NS Eectric Device CSE-213 1.00-2.25 SHP MON Communication Engineering CSE-315 10.00-11.25 BCB Eectric Device Lab CSE-214 11.30-2.25 SHP TUE Eectric Device

How to install CodeBlocks for Android

At present many students start learning programming. They are also doing great. Basically lots of Student wants start learning programming. But the problem is they don't have computer that is why they can't start programming. So , if you don't have any computer don't worry. You can also learn how to do coding.You can start programming in your Smrat phone or Android device. So to start C/C++ programming firstly you need a compiler to run the code and to get the output according to your code . How to install CodeBlocks for Android It's too easy to install your phone the CodeBlocks app for compiling your code. So , let's see how you install. Firstly,you need a android device.   Secondly,make sure you have internet connection.   Thirdly, go to your Google Play Store app .   And then , type CodeBlocks. In the first result you will see the CodeBlocks app.   And then , install the app. And Start Coding. Best of luck for you. To install simple CodeBlocks app watc

Uri 1001 solution

Before to see the solution, make sure you have tried many times. Uri 1001 solution in C : #include <stdio.h> int main() {     int A,B,C;     scanf("%d %d",&A,&B);     C=A+B;     printf("X = %d\n",C);       return 0; } Uri 1001 in C++; #include <iostream> using namespace std; int main() {     int A,B,C;     cin>>A>>B;     C=A+B;     cout<<"X = "<<C<<endl;          return 0; }