Ask Sawal

Discussion Forum
Notification Icon1
Write Answer Icon
Add Question Icon

Khaled zqvlmr Sharafat




Posted Questions



Wait...

Posted Answers



Answer


This is it.Go for it, try something.Go to this site, Panopticlick.How unique is your browser?It was unique among 4 million visitors.

If someone can identify me and map my browser usage to me, they can re- identify me anywhere.

I'm sorry, but you can't use the Internet to be completely private.It is just not possible.

Never use the internet if you want to be completely private.


Answer is posted for the following question.

Is there any way to protect identities on the internet?

Answer


If you have diabetes, being active makes your body more sensitive to insulin (the hormone that allows cells in your body to use blood sugar for energy), which helps manage your diabetes. Physical activity also helps control blood sugar levels and lowers your risk of heart disease and nerve damage.


Answer is posted for the following question.

Why should diabetics exercise?

Answer


The New Hampton Hotel

Address: 9/15 Bayswater Rd, Potts Point NSW 2011, Australia


Answer is posted for the following question.

Could you suggest best bars in kings cross Geelong, Australia?

Answer


Buy Samsung J series Mobile Phones from Latest collections Including Samsung J5, Samsung J5-6, Samsung J7 and Samsung J7 - 6 @ Flipkart


Answer is posted for the following question.

How much samsung j series?

Answer


You can create your SQL statements using QMF for Workstation in several ways: Use the Database Explorer window to easily find and run saved queries that everyone at the same database server can share. If you know SQL, type the SQL statement directly in the window.


Answer is posted for the following question.

How to use qmf for windows?

Answer


  • Download the App. Get the app from the App Store or Google Play.
  • Sign In. If you already have a digital account, sign in.
  • Add Your Shopper's Card. You can create a virtual Shopper's Card within the app.
  • Shop & Check Out. Use Store Mode to browse products by aisle and load digital coupons to your virtual Shopper's Card.

Answer is posted for the following question.

How to get a kroger plus card online?

Answer


1
#include
2
#include
3
#include
4
#include
5
6
#define SIZE 10
7
8
using namespace std;
9
10
int main()
11
{
12
     float a[SIZE][SIZE], x[SIZE],x_new[SIZE];
13
     float temp, lambda_new, lambda_old, error;
14
     int i,j,n, step=1;
15
16
     /* Setting precision and writing floating point values in fixed-point notation. */
17
     cout<< setprecision(3)<< fixed;
18
19
     /* Inputs */
20
     /* Reading order of square matrix */
21
     cout<<"Enter Order of Matrix: ";
22
     cin>>n;
23
24
     /* Reading tolerable error */
25
     cout<<"Enter Tolerable Error: ";
26
     cin>>error;
27
28
     /* Reading Square Matrix of Order n */
29
     cout<<"Enter Coefficient of Matrix: "<< endl;
30
     for(i=1;i<=n;i++)
31
     {
32
          for(j=1;j<=n;j++)
33
          {
34
               cout<<"a["<< i<<"]"<< j<<"]= ";
35
               cin>>a[i][j];
36
          }
37
     }
38
39
     /* Reading Intial Guess Vector */
40
     cout<<"Enter Initial Guess Vector: "<< endl;
41
     for(i=1;i<=n;i++)
42
     {
43
          cout<<"x["<< i<<"]= ";
44
          cin>>x[i];
45
     }
46
47
     /* Initializing Lambda_Old */
48
     lambda_old = 1;
49
     /* Multiplication */
50
51
     /* Setting label for repetition */
52
     up:
53
     for(i=1;i<=n;i++)
54
     {
55
          temp = 0.0;
56
          for(j=1;j<=n;j++)
57
          {
58
            temp = temp + a[i][j]*x[j];
59
          }
60
          x_new[i] = temp;
61
     }
62
63
     /* Replacing x by x_new */
64
     for(i=1;i<=n;i++)
65
     {
66
        x[i] = x_new[i];
67
     }
68
69
     /* Finding largest value from x*/
70
     lambda_new = fabs(x[1]);
71
     for(i=2;i<=n;i++)
72
     {
73
          if(fabs(x[i])>lambda_new)
74
          {
75
            lambda_new = fabs(x[i]);
76
          }
77
     }
78
79
     /* Normalization */
80
     for(i=1;i<=n;i++)
81
     {
82
        x[i] = x[i]/lambda_new;
83
     }
84
85
     /* Display */
86
     cout<< endl<< endl<<"STEP-"<< step<< endl;
87
     cout<<"Eigen Value = "<< lambda_new<< endl;
88
     cout<<"Eigen Vector: "<< endl;
89
     cout<<"[";
90
     for(i=1;i<=n;i++)
91
     {
92
        cout<< x[i]<<"\t";
93
     }
94
     cout<<"\b\b\b]"; /* \b is for backspace */
95
96
     /* Checking Accuracy */
97
     if(fabs(lambda_new-lambda_old)>error)
98
     {
99
          lambda_old=lambda_new;
100
          step++;
101
          goto up;
102
     }
103
104
     return(0);
105
}
106
107

Answer is posted for the following question.

How to c++ program to find eigenvalues of a matrix (C++ Programming Language)


Wait...