Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
17% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
4
Posts with Downvotes
3
Downvoting Members
4
1 Commented Post
0 Endorsements
~82.4K People Reached
About Me

Student in Sultan Qaboos University

Interests
Designing
PC Specs
beginner
Favorite Tags
Member Avatar for shantuli

hi everyone, i am very new in java. can anyone help me to solve the following problem: A school conducts a 100 mark exam for its student and grades them as follows: Grade: Grade A: Marks>75 Grade B: 75>Marks>60 Grade C: 60>Marks>50 Grade D: 50>Marks>40 Write ajava program to calculate …

Member Avatar for zunam
-5
81K
Member Avatar for sunshine102030

Use cdma to construct the aggregate frame for two denders s1 frame 0 , s2 frame 1, the code for s1 is (+1,-1,+1,+1,+1,-1,+1,+1), the code for s2 is (-1,+1,-1,-1,-1,+1,-1,-1) I tried to solve it but I am not sure. I multiplied s1 code by -1 and s2 code by +1 …

Member Avatar for rproffitt
0
431
Member Avatar for sunshine102030

If we have the following message bits > 11010001010001001010 we split this meassage into blocks of 5 bits, then we use two dimensional matrix for error correction to give the sent frame But what if we have a message with odd bits , for example : > 1010010 To how …

Member Avatar for rproffitt
0
508
Member Avatar for sunshine102030

> I know that the max value for short data type is 32767 and d=2*a=2*(20000)=40000 that is greater than 32767 > therefore the result of d is in minus d= -25536 while a,b and c displayed as they are scince they are< 32767 ,but the question is from where we …

Member Avatar for deceptikon
0
169
Member Avatar for sunshine102030

please can you help to get this answer : ![Capture.PNG](/attachments/large/4/6f316954e2e1f132d107b4029205fd2d.PNG "align-center") I have a problem in the result of kilometer formula   #include<iostream> #include<fstream> #include<iomanip> #include<string> using namespace std; int main() { ifstream infile; ofstream outfile; string outfilename; string filename; string Kilo; string dayfees; double f1, f2, f3, Kilometers, cost_km, …

Member Avatar for David W
-1
202
Member Avatar for sunshine102030

please , can you help to find the formulas accourding to the results in the pictures ? ![111.PNG](/attachments/large/4/db77c2b3808787166a0324578c0b38ba.PNG "align-center") The first formula is based on number of kilometers you plan to go. The expense for this formula is computed as follows: - For the first 500 kms, the cost of …

Member Avatar for rubberman
-1
121
Member Avatar for sunshine102030

#include <iostream> #include <cmath> #include <iomanip> using namespace std; const float pi=3.14; const float e=2.71828; int main() int r,h; double A,E1,E2; cout<< "please enter two positive integers for r and h: "<<endl; cin>>r>>h; A=(2*pi*r*r+2*r*r*h); E1=(pow(e,h))+(3*(log10(A))); E2=sqrt(abs(cos(pow(r,2.0)+sin(pow(r,2.0))); cout<<"Radius Height Area E1 E2"<<endl; cout<<fixed<<setprecision(2)<<showpoint; cout<<"====== ====== ==== == =="<<endl; cout<<setw(6)<<r<<setw(12)<<h<<setw(10)<<A<<setw(8)<<E1<<setw(8)<<E2<<endl; return 0; …

Member Avatar for rubberman
0
150