


Latest Updates
- AHSEC reduced 30% from HS first year syllabus 05/10/2020
- Reduced Syllabus with Monthly lesson distribution AHSEC 05/10/2020
- Easy Way to do Digital Image Processing using MatLab in 2 or 3 steps 18/08/2020
- Easy Way to do Digital Image Processing using MatLab 01/06/2020
- Easy way to start a MATLAB program – Digital Image Processing 25/05/2020
- AHSEC To start radio classes for HS Candidates 07/05/2020
- SEBA HSLC Previous Year Question Papers Of Sanskrit (Elective) 09/04/2020
- SEBA HSLC Previous Year Question Papers Of General Mathematics 09/04/2020
- SEBA HSLC Previous Year Question Papers Of General Science 09/04/2020
- SEBA HSLC Previous Years Question Papers Assamese (MIL) 09/04/2020
- SEBA HSLC Previous Year Question Papers Of Social Science 09/04/2020
- SEBA HSLC English Previous Years Question Papers 09/04/2020
- AHSEC HS Final Exam Question Papers 2020 Arts 06/04/2020
- Benefits Waking Up Late? 27/03/2019
- HS final Question paper 2019 (AHSEC class 12) Arts 13/03/2019
- HS final Question paper 2019 (AHSEC class 12) Science 13/03/2019
- সময় আৰু জীৱন 10/12/2018
- HSLC question papers 2018 (SEBA Class 10) 11/03/2018
- HS final Question paper 2018 (AHSEC class 12) 10/03/2018
- Tips to Be a Good Student 03/02/2018
Easy Way to do Digital Image Processing using MatLab in 2 or 3 steps
admin
18/08/2020
MATLAB code to determine the size, maximum and minimum value of color or RGB image The dimensions of an RGB or color image can be determined by using some of…
Easy Way to do Digital Image Processing using MatLab
admin
01/06/2020
Display Greyscale, RGB, Binary and Index Images and Store them in different formats. MATLAB code to display different grayscale,rgb,binary and indexed images We can display different types of images like…
Easy way to start a MATLAB program – Digital Image Processing
admin
25/05/2020
The MATLAB program is initiated by three lines indicating to clear the command window,workspace containing variables and the figure window if it is left open previously. The codes are as…
c Programs for Prime Numbers
admin
05/11/2017
Check a number is prime or not //WAP to check a number is prime or not #include<stdio.h> void main() { int n,i; printf("Enter a number"); scanf("%d",&n); for(i=2;i<n;i++) { if(n%i==0) {…
Calculating Factorial and Summation upto a number using C program
admin
05/11/2017
Calculating Factorial using c language //WAP to calculate factorial of a number #include<stdio.h> void main() { int n,s=1,i=1; printf("Enter a number to calculate upto"); scanf("%d",&n); while(i<=n) { s=s*i; i++; }…
Binary to Decimal number and Decimal to Binary Conversion with C program
admin
05/11/2017
Decimal to Binary Conversion Using C language //WAP to convert a decimal number to a binary number #include<stdio.h> void main() { int n,i=1,r,ten=1,bin=0; printf("Enter a decimal number:"); scanf("%d",&n); while(n>0) {…