• This is default featured slide 1 title

    Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

  • This is default featured slide 2 title

    Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

  • This is default featured slide 3 title

    Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

  • This is default featured slide 4 title

    Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

  • This is default featured slide 5 title

    Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

Math Lab The solution of FORTRAN Mathematica Both Practical & Lab Assignment

Math lab 2 Practical www.nu.edu.bd




National University Honours (Mathematics) Math lab-2 Practical Solutions
Question:  001. Regular Falsi Method F(x )=Cos(x)-xExp(x)

Ans. to the question No. 01



        F(X)=COS(X)-X*EXP(X)
        S=0.1E-5
        N=1
 14     READ*,A,B
        IF(F(A)*F(B).GE.0.0)GOTO 14
 13     PRINT*,N,A,B
        C=(A*F(B)-B*F(A))/(F(B)-F(A))
        IF(F(C).EQ.0.0)GOTO 11
        IF(F(A)*F(C).GT.0.0)THEN
        A=C
        ELSE
        B=C
        END IF
        IF(ABS(A-B).LT.S)GOTO 11
        N=N+1
        GOTO 13
 11     PRINT*,'A Real Root of f(x)=0 is',C
        STOP
        END

Question: 002. Fibonacci Sequence

 Ans. to the question No. 02



        DIMENSION N(30)
        N(1)=1
        N(2)=1
        DO 7 K=3,30
        N(K)=N(K-2)+N(K-1)
    7   CONTINUE
        PRINT 5,N
    5   FORMAT (5(2X,I10))
        END


003. Gaussion Elimination Method

        PARAMETER(N=3)
        DIMENSION A(N,N),B(N),X(N)
       OPEN(UNIT=13,FILE='8(B).IN',STATUS='OLD')
        READ(13,*)((A(I,J),J=1,N),B(I),I=1,N)
        DO 7 K=1,N-1
        P=A(K,K)
        DO 9 I =K+1,N
        F=A(I,K)/P
        DO 11 J=K+1,N
        A(I,J)=A(I,J)-F*A(K,J)
  11    CONTINUE
        B(I)=B(I)-F*A(K,J)
  9     CONTINUE
  7     CONTINUE
        X(N)= B(N)/A(N,N)
        DO 13 K=N-1,1,-1
        SUM=0.0
        DO 15 J=K+1,N
        SUM=SUM+A(K,J)*X(J)
 15     CONTINUE
        X(K)=(B(K)-SUM)/A(K,K)
 13     CONTINUE
        WRITE(6,*) 'The Solutions Are'
        PRINT*,'X=',X(1)
        PRINT*,'Y=',X(2)
        PRINT*,'Z=',X(3)
        END


005. Transpose and Inverse Matrix

        PARAMETER(N=6,M=3)
        DIMENSION A(N,M),AI(M,M)
        DATA AI/1,2,4,2,1,-2,-3,0,5/
        PRINT*,'Matrix A'
        PRINT 20,((AI(I,J),J=1,M),I=1,M)
 20     FORMAT(3X,3F8.2//)
        PRINT*,'Transpose of the Matrix A'
        PRINT 20,((AI(I,J),I=1,M),J=1,M)
        DO I=1,M
        DO J=1,N
        IF(J.LE.M)THEN
        A(I,J)=AI(I,J)
        ELSE
        IF(J.EQ.I+M)THEN
        A(I,J)=1.0
        ELSE
        A(I,J)=0.0
        ENDIF
        ENDIF
        ENDDO
        ENDDO
        WRITE(6,*)
        PRINT*,'AUGMENTED MATRIX IS'
        WRITE(6,*)
        PRINT 10,((A(I,J),J=1,N),I=1,M)
 10     FORMAT (3X,3F6.2//)
        DO 7 I=1,M
        IF(A(I,I).NE.0.0)THEN
        P=A(I,I)
        ELSE
        PRINT*,'PIVOT ELEMENT IS ZERO'
        STOP
        ENDIF
        DO JJ=1,N
        A(I,JJ)=A(I,JJ)/P
        ENDDO
        DO 3 J=1,M
        IF(J.EQ.I)GOTO 3
        COM=A(J,I)
        DO K=1,N
        A(J,K)=A(J,K)-A(I,K)*COM
        ENDDO
 3      CONTINUE
 7      CONTINUE
        WRITE(6,*)
        PRINT*,'AUGMENTED ECHELON MATRIX'
        WRITE(6,*)
        PRINT 11,((A(I,J),J=1,N),I=1,M)
 11     FORMAT(3X,6F8.2//)
        DO I=1,M
        DO J=M+1,N
        K=J-M
        AI(I,K)=A(I,J)
        ENDDO
        ENDDO
        WRITE(6,*)
        PRINT*,'INVERSE OF THE MATRIX'
        PRINT 30,((AI(I,J),J=1,M),I=1,M)
 30     FORMAT(3X,3F8.2//)
        END

006. Simpsons 3 by 8 rule

        PARAMETER (N=12)
        REAL I
        F(X)=1.0/(1.0+X**2)
        A=0.0
        B=3.14159/4
        H=(B-A)/REAL(N)
        SUM=F(A)+F(B)
        X=A
        DO K =1,N-1
        IF (MOD(K,3).EQ.0) THEN
        SUM=SUM+2.0*F(X+REAL(K)*H)
        ELSE
        SUM=SUM+3.0*F(X+REAL(K)*H)
        END IF
        END DO
        I=3.0*SUM*H/8.0
        WRITE(6,10)I
  10    FORMAT(3X,'Value of the integration=', f15.7/)
        print*, 'Actual Value of the integration=',ATAN(3.14158/4)
        END

008. Value of f(x) between -10 to 10increments of 0.5

       PRINT *,'X F(X)'
       WRITE(*,*)
       X=-10.0
 10    IF(X.LT.0.0)F=1.0+X/SQRT(1.0+X**2)
       IF(X.EQ.0.0)F=0.0
       IF(X.GT.0.0)F=1.0-X/SQRT(1.0+X**2)
       Y=F
       PRINT 20,X,Y
 20    FORMAT(2X,2F12.2/)
       X=X+0.5
       IF(X.LE.10.0)GOTO 10
       END


010. Prints Inverse Matrix Only

        DIMENSION A(3,6), AI(3,3)
        DATA AI/1,2,4,2,1,-2,-3,0,5/
        PRINT*,'MATRIX A'
        WRITE(6,*)
        PRINT 20, ((AI(I,J),J=1,3),I=1,3)
  20    FORMAT(3X,3F8.2//)
        DO I=1,3
        DO J=1,6
        IF(J.LE.3)THEN
        A(I,J)=AI(I,J)
        ELSE
        IF(J.EQ.I+3)THEN
        A(I,J)=1.0
        ELSE
        A(I,J)=0.0
        ENDIF
        ENDIF
        ENDDO
        ENDDO
        PRINT*,'AUGMENTED MATRIX'
        WRITE(6,*)
        PRINT 10, ((A(I,J),J=1,6),I=1,3)
  10    FORMAT(3X,6F8.2//)
        DO 7 I=1,3
        IF(A(I,I).NE.0.0)THEN
        P=A(I,I)
        ELSE
        PRINT*,'PIVOT ELEMENT IS ZERO'
        STOP
        ENDIF
        DO JJ=1,6
        A(I,JJ)=A(I,JJ)/P
        ENDDO
        DO 3 J=1,3
        IF(J.EQ.I)GOTO 3
        COM=A(J,I)
        DO K=1,6
        A(J,K)=A(J,K)-A(I,K)*COM
        ENDDO
  3     CONTINUE
  7     CONTINUE
        WRITE(6,*)
        PRINT*,'AUGMENTED ECHELON MATRIX'
        WRITE(6,*)
        PRINT 11,((A(I,J),J=1,6),I=1,3)
 11     FORMAT(3X,6F8.2//)
        DO I=1,3
        DO J=4,6
        K=J-3
        AI(I,K)=A(I,J)
        ENDDO
        ENDDO
        WRITE(6,*)
        PRINT*,'INVERSE OF MATRIX A'
        WRITE(6,*)
        PRINT 30, ((AI(I,J),J=1,3),I=1,3)
  30    FORMAT (3X, 3F8.2//)
        END
Share:

Logo


Share:

How to Patch IDM Latest Version (100% WORKING) your Computer

Share:

[Tutorial] How to enable a CD/DVD drive? It is not listed in "My Computer"


How to Edit the Registry for a CD/DVD Drive

     There are several steps that you can take to edit the registry for a DVD drive on your computer if Windows does not recognize it. In some cases, problems may occur if you tried to upgrade your computer from Windows XP to Windows Vista, or Windows 7 or 8 , 10 and the registry entries becomes corrupt. Use Windows features to help you manually remove the corrupt registry entries and get the not working DVD drive on your computer to start operating again.

Windows 7 & 8 & 10 :

Step 1 :
Press the Start button on your taskbar. Select “Control Panel” from the menu list.
Step 2 :
Use the search box located near the top right of the window. Type the keyword “troubleshooting” in the text field and press the “Enter” key on your keyboard.
Related Reading: How to  Install a Free Compatible DVD  Decoder
Step 3 :
Click on the "Troubleshooting" link that appears. Look for the “Hardware and Sound” option and then click on the “Configure a device” item found under it.
Step 4 :
Click “Next.” Follow the onscreen instructions when you are prompted. Windows attempts to resolve any issues and conflicts that you may be experiencing with your system's hardware and DVD drive.

Using Windows Registry Editor for Vista

Step 1 :
Press the Start button and then click on “All Programs” and “Accessories.” Click “Run” and type “regedit” in the run box. Click the “OK” button. Type the Administrator password or “Allow” if you are prompted.
Step 2 :
Go to the navigation pane and click on the following registry subkey: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E965-E325-11CE-BFC1-08002BE10318}
Step 3 :
Click on the “UpperFilters” registry entry located in the right pane. Go to the "Edit" menu and click "Delete." Click "Yes" when you are prompted to confirm the deletion. If you don't see the registry entry, you may have to remove the “LowerFilters” registry entry.
Step 4 :
Go to the right pane and click on “LowerFilters.” Click “Edit” from the menu and then click “Delete.” Click “Yes” when you are prompted to confirm the deletion.
Step 5 :
Click “Exit” and restart your computer.

Using Windows Registry Editor for Windows  XP

Step 1 :
Press the “Start” button on your taskbar. Click on “Run” and type regedit in the run box. Click the “OK” button.
Step 2 :
Go to the navigation pane and click on the following registry subkey: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E965-E325-11CE-BFC1-08002BE10318}
Step 3 :
Click on the “UpperFilters” registry entry located in the right pane. Go to the "Edit" menu and then click on "Delete." Click on "Yes" to confirm the deletion. If you don't see the registry entry, you may have to remove the “LowerFilters” entry.
Step 4 :
Go to the right pane and click on “LowerFilters.” Click “Edit” and then click "Delete.” Click “Yes” to confirm the deletion.
Step 5 :
Click “Exit” and restart your computer
Share:

[GOVERNMENT JOBS] Bangladesh Navy officer cadet job circular 2016



GOVERNMENT JOBS

Bangladesh Navy officer cadet job circular 2016


v3v01zh
Company/Organization : Bangladesh Navy
Job Type: Government Job.
Total Posts: see the circular
Last Date Of Application: 29-12-2016
বাংলাদেশ নৌবাহিনী সম্প্রতি ২০১৮ অফিসার ক্যাডেট ব্যাচের প্রথম গ্রুপে লোকবল নিয়োগের বিজ্ঞপ্তি প্রকাশ করেছে। বিজ্ঞপ্তি অনুসারে বাংলাদেশ নৌবাহিনীতে ২০১৮ অফিসার ক্যাডেট ব্যাচের প্রথম গ্রুপে আবেদনের সুযোগ পাচ্ছেন নারী-পুরুষ উভয়েই। ইতিমধ্যেই শুরু হয়ে গেছে আবেদন প্রক্রিয়া। অফিসার ক্যাডেট পদের জন্য আবেদন করা যাবে আগামী ২৯ ডিসেম্বর ২০১৬ তারিখ পর্যন্ত।
আবেদনের যোগ্যতা
২০১৮ অফিসার ক্যাডেট ব্যাচের প্রথম গ্রুপে আবেদনের জন্য আবেদনকারীকে বিজ্ঞান বিভাগ থেকে মাধ্যমিক ও উচ্চমাধ্যমিক অথবা সমমানের পরীক্ষায় কমপক্ষে জিপিএ ৪.৫০ পেয়ে উত্তীর্ণ হতে হবে এবং উভয় পরীক্ষায় পদার্থবিজ্ঞান ও গণিত অথবা উচ্চতর গণিত বিষয় দুটিতে আলাদাভাবে ন্যূনতম জিপিএ ৪.০ থাকতে হবে। ইংরেজি মাধ্যমের শিক্ষার্থীদের জন্য ‘ও’ লেভেলে ছয়টি বিষয়ের মধ্যে কমপক্ষে তিনটি বিষয়ে ‘এ’ গ্রেড ও দুটি বিষয়ে ‘বি’ গ্রেড থাকতে হবে এবং ‘এ’ লেভেলে কমপক্ষে দুটি বিষয়ে ‘বি’ গ্রেড অবশ্যই থাকতে হবে। তবে উভয় পরীক্ষায় পদার্থবিজ্ঞান ও গণিত এই দুটি বিষয় থাকা বাধ্যতামূলক।
শুধু সরবরাহ শাখায় আবেদনের জন্য আবেদনকারীকে মাধ্যমিক ও উচ্চমাধ্যমিক পরীক্ষায় ব্যবসায় শিক্ষা শাখা থেকে কমপক্ষে জিপিএ ৪.৫০ পেয়ে উত্তীর্ণ হতে হবে এবং উচ্চমাধ্যমিক পরীক্ষায় হিসাববিজ্ঞান ও ব্যবসায় সংগঠন ও ব্যবস্থাপনা বিষয়ে জিপিএ কমপক্ষে ৪.০ থাকতে হবে। সশস্ত্র বাহিনীতে কর্মরত প্রার্থীদের ক্ষেত্রে নৌবাহিনীর উচ্চমান পরীক্ষা (এইচইটি) বা সমমানের বাংলাদেশ সেনাবাহিনী এবং বাংলাদেশ বিমানবাহিনী পরীক্ষায় উত্তীর্ণ হতে হবে। এ ছাড়া নৌবাহিনীর অফিসার ক্যাডেট পদে আবেদন করতে পারবেন ২০১৭ সালের এইচএসসি পরীক্ষার্থীরাও।
শিক্ষাগত যোগ্যতার পাশাপাশি পুরুষ প্রার্থীদের ক্ষেত্রে উচ্চতা কমপক্ষে পাঁচ ফুট চার ইঞ্চি, ওজন ৫০ কেজি, বুকের মাপ স্বাভাবিক অবস্থায় ৩০ ইঞ্চি এবং প্রসারিত অবস্থায় ৩২ ইঞ্চি হতে হবে। নারী প্রার্থীদের ক্ষেত্রে উচ্চতা কমপক্ষে পাঁচ ফুট এক ইঞ্চি, ওজন ৪৬ কেজি এবং বুকের মাপ স্বাভাবিক অবস্থায় ২৮ ইঞ্চি ও প্রসারিত অবস্থায় ৩০ ইঞ্চি হতে হবে।
আবেদনের জন্য প্রার্থীদের বয়স হতে হবে আগামী ১ জানুয়ারি ২০১৭ তারিখে ১৬.৫ বছর থেকে ২১ বছরের মধ্যে, তবে সশস্ত্র বাহিনীতে কর্মরত প্রার্থীদের ক্ষেত্রে বয়স হতে হবে ১৮ থেকে ২৫ বছরের মধ্যে। আবেদনের জন্য নারী-পুরুষ উভয়কে অবশ্যই অবিবাহিত এবং বাংলাদেশের নাগরিক হতে হবে।


আবেদন প্রক্রিয়ানৌবাহিনীতে অফিসার ক্যাডেট হিসেবে আবেদনের দুটি পদ্ধতি রয়েছে। অনলাইনের মাধ্যমে এবং সরাসরি আবেদন ফরম পূরণ করে। অনলাইনে আবেদনের জন্য আবেদনকারীকে ট্রাস্ট ব্যাংক মোবাইল মানি (টিবিএমএম)-এর গ্রাহক হয়ে মুঠোফোনের মেসেজ অপশনে গিয়ে TrustMM <space> BNRF <space> O <space> PIN <space> Candidate’s Mobile Number লিখে পাঠিয়ে দিতে হবে ১৬২০১ নম্বরে। তবে গ্রামীণফোনের গ্রাহকদের ০৩৫৯০০১৬২০১ নম্বরে এসএমএস করতে হবে। এ জন্য আবেদনকারীর টিবিএমএম অ্যাকাউন্টে কমপক্ষে ৭২০ টাকা থাকতে হবে। টাকা জমা দেওয়ার পর একটি ট্রানজেকশন আইডি আবেদনকারীর মুঠোফোনে চলে আসবে, যা ব্যবহার করে অনলাইনে www.navy.mil.bd এই ঠিকানা থেকে Join Navy লিংকে ক্লিক করে অথবা সরাসরি www.joinnavy.mil.bd এই ওয়েবসাইটে গিয়ে অনলাইনে ভর্তি ফরম পূরণ করে জমা দিতে হবে। সঠিকভাবে ফরম পূরণ শেষে প্রার্থীকে অনলাইনেই কল-আপ লেটার পাঠানো হবে, সে ক্ষেত্রে অনলাইনে ফরম পূরণ শেষে এর একটি প্রিন্ট নিতে হবে, যা পরবর্তীকালে ফরম কমিশন ২(ক) হিসেবে বিবেচিত হবে।
সরাসরি ফরম পূরণের জন্য যাঁরা টিবিএমএমের গ্রাহক নন, তাঁরা ট্রাস্ট ব্যাংকের যেকোনো শাখা অথবা ট্রাস্ট ব্যাংকের মনোনীত পে পয়েন্টে গিয়ে ‘বিএন রিক্রুটমেন্ট ফান্ড’ ট্রাস্ট ব্যাংক লিমিটেড, প্রিন্সিপাল ব্রাঞ্চ, ঢাকার অনুকূলে ৭০০ টাকা জমা দেওয়ার পর প্রাপ্ত নোটিফিকেশন এসএমএস ও মানিরিসিপ্ট, যাতে একটি ট্রানজেকশন আইডি থাকবে, সেটি অনলাইনে ফরম পূরণের ক্ষেত্রে পেমেন্ট পেজের যথাস্থানে লিখতে হবে এবং ম্যানুয়ালি ফরম পূরণের ক্ষেত্রে ব্যাংক ড্রাফটের ঘরে লিখতে হবে। ম্যানুয়ালি পূরণ করা আবেদনপত্রের সঙ্গে সংযুক্তি হিসেবে দিতে হবে সদ্য তোলা ৩ কপি পাসপোর্ট সাইজের ছবি, মানিরিসিপ্ট এবং অনলাইনে আবেদনকৃতদের ১ কপি ছবি, শিক্ষাগত যোগ্যতার সব সনদ, নাগরিকত্ব ও চারিত্রিক সনদের কপি সংযুক্ত করে তা পরিচালক, পার্সোনেল সার্ভিসেস পরিদপ্তর, নৌবাহিনী সদর দপ্তর, বনানী, ঢাকা-১২১৩ এই ঠিকানায় পাঠাতে হবে।
নির্বাচন প্রক্রিয়া ও প্রশিক্ষণ
আবেদনকৃত প্রার্থীদের মধ্য থেকে প্রাথমিক স্বাস্থ্য পরীক্ষা ও প্রাথমিক সাক্ষাৎকারের মাধ্যমে প্রাথমিকভাবে প্রার্থী বাছাই করে তাদের বুদ্ধিমত্তা, ইংরেজি দক্ষতা ও সাধারণ জ্ঞান বিষয়ে লিখিত পরীক্ষা নেওয়া হবে। প্রাথমিক স্বাস্থ্য পরীক্ষা ও প্রাথমিক সাক্ষাৎকার ঢাকা, চট্টগ্রাম ও খুলনা কেন্দ্রে আগামী ৯ থেকে ১২ জানুয়ারি এবং লিখিত পরীক্ষা ১৩ জানুয়ারি, ২০১৭ তারিখে উল্লিখিত কেন্দ্রে অনুষ্ঠিত হবে। সেখানে উত্তীর্ণ প্রার্থীদের মধ্য থেকে পর্যায়ক্রমে আন্তঃবাহিনী নির্বাচন পর্ষদ (আইএসএসবি) কর্তৃক পরীক্ষা এবং চূড়ান্ত স্বাস্থ্য পরীক্ষার মাধ্যমে চূড়ান্তভাবে প্রার্থী বাছাই করা হবে। চূড়ান্তভাবে বাছাইকৃত প্রার্থীরা প্রথমে বাংলাদেশ মিলিটারি একাডেমিতে ১০ সপ্তাহের প্রশিক্ষণ এবং পরবর্তীকালে বাংলাদেশ নেভাল একাডেমিতে অফিসার ক্যাডেট হিসেবে ২৪ মাস ও মিডম্যানশিপ হিসেবে ১২ মাসসহ মোট ৩ বছর মেয়াদি সফল প্রশিক্ষণ শেষ করার পর তাঁদেরকে ‘সাব লেফটেন্যান্ট’ পদে নিয়মিত কমিশন প্রদান করা হবে।
চূড়ান্তভাবে নির্বাচিত প্রার্থীদের একাডেমিতে পেশাগত প্রশিক্ষণের পাশাপাশি এক্সিকিউটিভ শাখার ক্যাডেটদের মেরিটাইম সায়েন্স বিষয়ে বিএসসি (অনার্স) এবং সাপ্লাই শাখার ক্যাডেটদের বাংলাদেশ ইউনিভার্সিটি অব প্রফেশনালস (বিইউপি) থেকে বিবিএ ডিগ্রি প্রদান করা হবে। এ ছাড়া ইঞ্জিনিয়ারিং এবং ইলেকট্রিক্যাল শাখার ক্যাডেটদের বাংলাদেশ প্রকৌশল বিশ্ববিদ্যালয় (বুয়েট) এবং মিলিটারি ইনস্টিটিউট অব সায়েন্স অ্যান্ড টেকনোলজি (এমআইএসটি) থেকে বিএসসি ইঞ্জিনিয়ারিং ডিগ্রি প্রদান করা হবে।
সুযোগ-সুবিধা ও পদোন্নতি
চূড়ান্তভাবে নিয়োগপ্রাপ্ত প্রার্থীদের নির্ধারিত অন্যান্য সুবিধাসহ সশস্ত্র বাহিনীতে বেতনক্রম অনুযায়ী অফিসার ক্যাডেটদের বেতন ও ভাতা দেওয়া হবে। পরবর্তীকালে মিডশিপম্যান হিসেবে পদোন্নতির পর তাঁদের উচ্চতর স্কেলে বেতন দেওয়া হবে। এর বাইরে প্রশিক্ষণের বিভিন্ন পর্যায়ে এবং কমিশন প্রাপ্তির পর মেধাবী ক্যাডেট ও অফিসাররা বিদেশে প্রশিক্ষণ, সরকারি খরচে উচ্চশিক্ষা, বাসস্থান, সন্তানদের পড়ালেখার খরচ, চিকিৎসা খরচ ইত্যাদি সুযোগ-সুবিধা পাবেন। এ ছাড়া রয়েছে জাতিসংঘ শান্তিরক্ষা মিশনে বিদেশ ভ্রমণ ও আর্থিক সচ্ছলতা অর্জনের সুযোগও।
বিস্তারিত জানতে যোগাযোগ
পার্সোনেল সার্ভিসেস পরিদপ্তর
নৌবাহিনী সদর দপ্তর, বনানী, ঢাকা-১২১৩
ফোন: (০২) ৯৮৩৬১৪১-৯, বর্ধিত ২২১৫
হেল্পলাইন: ০১৭৬৯-৭০২২১৫
ওয়েবসাইট: www.joinnavy.mil.bd
For all smart Government job,Click on Government job category.If you are looking for part time job,visit part time job category.
Please share this post with your friends.
Share:

আপনি কী ডিবিবিএল ব্যাংক একাউন্টের মাধ্যমে পাইওনিয়ার ব্যাংক একান্ট ভেরিফাই করবেন?

আপনাদের শেখাতে চলেছি কিভাবে আপনি ডাচ-বাংলা মোবাইল ব্যাংকিং একাউন্টের মাধ্যমে বাংলাদেশে বসে একটি ভেরিফাই পেপাল একাউন্ট খুলবেন এবং পেপাল হতে টাকা আপনার মোবাইল ব্যাংকিং একাউন্টে তুলবেন। তো চলুন শুরু করা যাক।
১ম ধাপঃ প্রথমে আপনাকে একটি Payoneer একাউন্ট খুলতে হবে এ জন্য নিচের দেওয়া লিঙ্কে ক্লিক করুন এবং পর্যায় ক্রমে রেজিট্রেশন সম্মপ্ন করুন।

এই ফর্মে আপনার আসল নাম, ইমেইল এড্রেস এবং জন্ম তারিখ সঠিক ভাবে দিয়ে নেক্সট বাটনে ক্লিক করুন।


এই ফর্মে আপনার দেশ, ঠিকানা, শহর, টিউন কোড এবং মোবাইল নাম্বার দিয়ে নেক্সট বাটনে ক্লিক করুন।


এই ফর্মে আপনার পাসওয়ার্ড নির্বাচন করুন এবং একটি সিকিরিউটি কোয়েসশিন সিলেক্ট করে তার উত্তর লিখে নেক্সট করুন।


সর্ব পরিঃ এই ফর্মে আপনার ব্যাংক ইনফরমেশন হিসেবে আপনার মোবাইল ব্যাংকিং একাউন্ট ডিটেইল ব্যবহার করুন। সর্ব পরি টার্ম এবং কন্ডিশনে ঠিক দিয়ে Application টি সাবমিট করুন। ২ এক দিনের মধ্যে আপনার একুন্ট টি Approved হয়ে গেলে ২য় ধাপে চলুন। বিষটি না বুঝে থাকলে এই ভিডিও টি দেখুনঃ

কিভাবে আপনি ডিবিবিএল মোবাইল ব্যাংকিং একাউন্টের মাধ্যমে বাংলাদেশ হতে পেপাল একাউন্ট ভেরিফাই করবেন?  পর্ব-১ 
কেনো আপনি আমার দেওয়া লিঙ্ক দিয়ে সাইন আপ করবেন?
আমার দেওয়া এই লিঙ্কের মাধ্যমে আপনি সাইন আপ করলে আপনি NID কার্ডের নাম্বার ছাড়া শুধু মাত্র DBBL Mobile Bangking Account Number এর মাধ্যমে একাউন্ট করে নিতে পারবে + সাথে সাথে ৩ টি ইন্টারনেশনাল ব্যাংক একাউন্ট পাবেন Payoneer এর মাধ্যমে।

২য় ধাপঃ এবার পেপালে আপনার রিয়েল / আসল নাম দিয়ে বিসনেস একাউন্ট খুলুন। এবং ভেরিফাই করার জন্য আপনার EURO ব্যাংক একাউন্ট টি ব্যবহার করুন। বিষটি না বুঝে থাকলে এই ভিডিও টি দেখুনঃ 

কিভাবে আপনি ডিবিবিএল মোবাইল ব্যাংকিং একাউন্টের মাধ্যমে বাংলাদেশ হতে পেপাল একাউন্ট ভেরিফাই করবেন?  পর্ব-২
ধন্যবাদ সবাইকে দেখা হবে ২য় আধ্যায়ে, সেই পর্যন্ত সবাই ভাল থাকবেন।
আল্লাহ হাফেজ
[Collected]
Share:

IDM 6:26 Build 8 Final Full Version

Recent IDM 6:26 Build 8 Final Full Version is the latest IDM , released on October 22, 2016 and can be downloaded for free at this gigapurbalingga. As we know that the IDM is the best software that we can use to speed up the process of downloading files on the Internet. Files that can be downloaded using thelatest IDM are various types of files ranging from audio, video, and software files or games. You are happy to download videos from youtube also can now easily download your favorite videos from youtube using this IDM software.
Well after yesterday we distributed IDM 6:26 Final Full Patch, then now is the time you download thelatest IDM IDM 6:26 Build 8 Final Full Patch is now. To enable this IDM you can use the patch IDM Recentwe've included in it. For how to use the patch please view the following way.
What's new in version 8 6:26 Build Final
(Released: October 22, 2016)
  • Several critical bugs fixed when using proxy servers
  • Fixed problems with video recognition for Several types of web sites
  • fixed bugs
  • Fixed a problem with disabling of the Google Chrome extension
  • Fixed problems with video recognition for Several types of web sites
  • Fixed a problem with disk space occupation
  • fixed bugs
  • Added support for Firefox 50
  • Improved IPv6 support
  • fixed bugs
  • Added support for IPv6 Internet addresses
  • Improved "Start Download Info" dialog
  • Fixed a freezing problem when "save to" path is on a network drive
  • Fixed bugs with IE and Firefox integration
  • Added support for Firefox 49
  • Fixed compatibility problems with the latest build of Windows 10
  • Fixed problems with video recognition for Several types of web sites
  • fixed bugs
  • fixed bugs
  • Fixed problem with video recognition for Several video types
  • fixed bugs
  • Fixed problem with erroneous interceptions of video data is
  • Improved video recognition in web players
  • fixed bugs
  • Added support for Firefox 48
  • Fixed problems with video recognition for Several types of web sites
  • Fixed problems with taking over some types of downloads in Firefox
  • fixed bugs
  • Fixed critical bugs
  • Improved Google Chrome integration module
  • fixed bugs
  • fixed bugs
  • Added support for Firefox 47
  • fixed bugs
  • Improved Google Chrome integration module
  • fixed bugs
  • Added support for Firefox 46
  • fixed bugs
  • Added support for Firefox 45
  • fixed bugs
  • Fixed problems with video recognition for Several types of web sites
  • Added support for Firefox 44
  • fixed bugs
  • Added support for new types of videos for Several web streaming services
  • Made a workaround and fixed compatibility problems of IDM previous version (6.25.5) with Kaspersky Internet Security on Windows 10
  • Improved video recognition in Google Chrome on Windows XP
  • Added support for new types of videos for Several web streaming services
  • fixed bugs
  • Added support for Firefox 43 and SeaMonkey 2:39, 2:40, 2:41
  • Lowered CPU consumption
  • Added support for new types of video streaming sites
  • fixed bugs
  • Fixed problems with video downloading for Several types of web sites
  • fixed bugs
  • Improved IDM download engine
  • Added support for SeaMonkey 2:38
  • fixed bugs
  • Fixed the problem with repeating lines in video quality download panel
  • Fixed the problem with erroneous interceptions videos from web players
  • Fixed the problem with keyboard focus in Google Chrome
  • fixed bugs
  • Added support for Firefox 42 and SeaMonkey 2:35
  • fixed bugs
  • Fixed Several problems with downloading from file sharing sites
  • fixed bugs
  • Fixed problems with video recognition for Several types of web sites
  • Added support for Firefox 41
  • Resolved the problem with erroneous download interceptions of videos in Firefox
  • Resolved the problem when "download this video" button was not displayed in Firefox
  • Improved integration into Google Chrome
  • fixed bugs
  • Fixed problems with detection of some types of downloads in Firefox
  • fixed bugs
  • Added support for Microsoft Edge browser
  • fixed bugs
  • Fixed a bug in Firefox extension with multiple downloads dialogs
  • Fixed the bug with text selection in Firefox extension
  • Improved video recognition in Google Chrome
  • Added support for Firefox 40
  • Improved Google Chrome integration
  • Fixed problems with video recognition for Several types of web sites
  • fixed bugs
  • Added support for Firefox 39
  • Improved video downloading for Several types of web sites
  • fixed bugs
  • Fixed problems with erroneous interceptions of internal Firefox downloads
  • Improved Google Chrome integration
  • Added support for Firefox 38
  • Fixed compatibility problems of Google Chrome extension with Kaspersky Internet Security
  • Fixed a critical bug in the IDM network driver
  • Fixed compatibility problems with antiviral and internet security software
  • Improved taking over downloads of videos from web players in Google Chrome
  • Added a feature to change the video resolution for rtmp protocol
  • Added support for SeaMonkey 2:33
  • Fixed problems with video / audio recognition for Several types of web sites
  • Fixed compatibility problems of Google Chrome extension with Several applications
  • Fixed bugs in Chrome integration module
  • Added support for Firefox 37
  • Added support for Google Chrome 42
  • Added support for new types of video streaming sites
  • fixed bugs
How to Install IDM
  1. IDM Internet Download and extract the file "[www.gigapurbalingga.com] _idm626b8"
  2. Extract the patch file is also located in the folder.
  3. Then install the software IDM her as usual. After the installation is completed do not always go to the program. (For those of you who have previously installed IDM, IDM his uninstall first, then restarted the pc or laptop, then install it again with this latest IDM).
  4. After the installation process is complete agan exit IDMnya program. Also check in task manager. If there IDMan.exe then select end proccess on "IDMan.exe" is.
  5. Open the folder "Patch" and copy and paste files "idm.6.x_u8-patch" to the IDM installation folder on your pc or laptop. (Usually in C: \ program files \ Internet Download Manager).
  6. Run Patch in it by right click and select Run as administrator.
  7. Click Patch.
  8. Then in the "First Name" and "Last Name" please fill free.
  9. done
  10. Now you've become IDM Full Version will no longer appear popup fake serial number.
If you experience problems Fake Serial Number IDM after doing the above. Please read the newest way to overcome IDM Fake Serial Number by clicking the link below
Download Link
BoostFiles
ZippyShare
MirrorCreator

Recent IDM 6:26 Build 8 Final Full Version
Share:

WinBoot10 WinPE 10.0.14393-ISO





http://i0.wp.com/s2.1pic.org/files/2016/09/26/56302c249ca1d916ec28.jpg?w=1100
WinBoot10 WinPE v10.0.14393 ISO | 896.0 MB
This loader can be used with any assembly. install file is picked up from the desired category, and no matter in what format it (WIM, SWM or ESD). In this way you will find modified loaders from Windows 10. UEFI Support (64-bit) is present.Terms of Use:
* 1. Extract the ISO-file on a USB flash drive (with the help of Rufus);
* 2. Add the folder install.esd file (wim or swm), the response file and folder $ OEM $ (answer files and folders, this is optional, of course, or if they are in a folder on the collector):
– Unib \ install \ w7x86 (OS Windows 7 x86);
– Unib \ install \ w7x64 (OS Windows 7 x64);
– Unib \ install \ w7aio (OS Windows 7 AIO);
– Unib \ install \ w8x86 (OS Windows 8 | 8.1 x86);
– Unib \ install \ w8x64 (OS Windows 8 | 8.1 x64);
– Unib \ install \ w8aio (OS Windows 8 | 8.1 AIO);
– Unib \ install \ w10x86 (OS Windows 10 x86);
– Unib \ install \ w10x64 (OS Windows 10 x64);
– Unib \ install \ w10aio (OS Windows 10 AIO);
* 3. Can use (This loader can install the system with any languages. The installer is true in English is now).
The composition of the loader program:
32/64-bit loaders:
* Recovery Environment (x86 / x64)
* Windows Setup Selecting from 7 to 10
* Microsoft Diagnostics and Recovery Toolset (DaRT10) (x86 / 64)
* WinNTSetup
* Registry Workshop
* Total Commander
* AIDA64 Business
* Driver Export
* Explorer ++
* Resource Hacker
* Restorator
* RegeditPE
* GimageX
* WinSnap
* WinRAR
* WinHex
* 7-Zip
* Acronis True Image Home 2017 Rus
* Acronis Disk Director 12
* AOMEI Partition Assistant Technician Edition
* AOMEI Ntfs2Fst32 Unlimited Edition
* AOMEI Dynamic Disk Unlimited Edition
* Paragon Hard Disk Manager 15 Premium
* Paragon Hard Disk Manager 12 Pro
* Paragon Alligment Tool Pro
* MiniTool Partition Wizard Pro
* HDD Low Level Format Tool
* Ghost Explorer
* Boot Builder
* ChkDskGui
* Defraggler
* BCDTool
* Ghost32
* Testdisk
* Bootice
* DmDe
* WinMount
* UltraISO
* Password Changer Pro
* Password Renew
* Reset Password
* WindowsGate
* PEPassPass
* SAMInside
* PassReset
* NTPWEdit
* AntiSMS
* AVZ uVS
Additional applications for 32-bit loader:
* AkelPad
* BIOS Master Password Generator
* Reset Windows Password
Specialist. the possibility for owners MultiFlash:
* For you have the opportunity without problems to add the loader to him.
* To do this, take unib folder and copy itself to the stick.
* Once in the menu.lst add these lines:
title Windows Boot Setup (x86-x64)
chainloader / unib / bootunib
* All can be used.
DOWNLOAD LINKS:
Share:

Popular Posts

Powered by Blogger.

Translate

Labels

Recent Posts

Unordered List

  • Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
  • Aliquam tincidunt mauris eu risus.
  • Vestibulum auctor dapibus neque.

Pages

Theme Support

Need our help to upload or customize this blogger template? Contact me with details about the theme customization you need.