Recent content by waver.

  1. waver.

    Boolean Algebra Problem: Solution for AB vs. A(comp(B)+c)

    https://scontent-mxp1-1.xx.fbcdn.net/v/t35.0-12/13324008_10209600482268675_3779883_o.png?oh=abd4c815b9472f70cfbfbb1923a37b3c&oe=5752F454 Number 12 : I have simplified it and I have got AB but the model answer in red say A(comp(B)+c) I just want is that answer true or not , thanks in advance
  2. waver.

    C/C++ Why is my insertion sort code not working for certain array sizes?

    hi Guys i wrote a insertion sort code which is #include <iostream> /*Waver*/ using namespace std; int main() { int n,i,m; float a[100],k; cout<<"enter the amount of number"; cin>>n; for(i=0; i<n; i++) cin>>a[i]; for(i=1; i<=n; i++) { for(m=1 ; m<=i; m++) { if(a[m]<a[m-1])...
  3. waver.

    Fortran Inputting a Complex Number in Fortran 90 for DeMoivre's Theorem

    thanks guys for helping specially gsal i used your idea and its works thank a lot
  4. waver.

    Fortran Inputting a Complex Number in Fortran 90 for DeMoivre's Theorem

    i have a a little problem in fortan90 i just wanted to know how to input a complex number ( input real and img part alone ) all i want to do is to make a simple program about DeMoivres Theorem i have been around in google all i know how to declare a argument as complex complex a then how to...
  5. waver.

    Ratio between electron to proton

    Well . Thnx for helping . That was kind :)
  6. waver.

    Ratio between electron to proton

    So 107.87 gm --------->6.0221413*10^23 atom 10 gm ------> x atom then multiply x with 47 to get whole electrons . Then getting extra electron through q= ne adding it to electron number then dividing it by x*47 (proton) . Is that what you meant
  7. waver.

    Ratio between electron to proton

    Homework Statement A 10 gram silver sphere is charged until it acquired a charge of -1.2 coulomb. Find ratio of number of electron to number of proton in spere. Given that silver atomic weight and atomic number 107.87 and 47 Homework EquationsThe Attempt at a Solution first i calculated extra...
Back
Top