Showing posts with label Electronics. Show all posts
Showing posts with label Electronics. Show all posts

Wednesday, 26 November 2014

Networking Assignment Help: What specific steps can be taken to improve security in WLANs...

Q)What specific steps can be taken to improve security in WLANs?

Sol:

 The below steps can be taken to improve the security in WLANs:
a) Initially wireless network has to be authorized and authenticated.
b) Also all the users try to get connected to that particular has to be authorized and authenticated.
c) Every user connected to the network has to be uniquely identified by their own unique username and password.
d) Multiple users with same username and password should not be allowed to connect to the network.
e) Every user has to be properly disconnected so that no one in queue must be able to continue to get connected to the network with their username and password.


Read and Answer: The International Centre for Radio Astronomy Research...

1) The International Centre for Radio Astronomy Research
Sol:
The International Centre for Radio Astronomy Research is a collaborative centre placed in Perth, Western Australia. They are already achieving research excellence in both astronomical science and engineering. The International Centre for Radio Astronomy Research has grown steadily from its launch in September 2009. An equal joint venture between The University of Western Australia and Curtin University, International Centre for Radio Astronomy Research has strong support from the West Australian as well as Australian governments and is working very closely with industry and research partners in Australia and in the entire world. Wireless internet (WIFI) inventor honored Curtin University has been recognized as Dr John O’Sullivan’s ground breaking work in astronomy and wireless technologies by bestowing John with an Honorary Science Doctorate. The latest telescope puts focus on high school discoveries where a new internet telescope was launched by State Education Minister Dr Elizabeth Constable at The Western University of Australia. Also
Sky Noise and Sensitivity Studies of Array Configurations and Antenna Elements were done for the Low-Frequency Band of the SKA.

Questions:
a) What is WIFI?
b) Expand ICRAR?
c) Internet telescope was launched by whom?
d) Who invented wireless internet?

Sol:
a) Wireless internet/wireless LAN.
b) International Centre for Radio Astronomy Research.
c) Dr. Elizabeth.

d) Dr John O’Sullivan

Read and Answer: De-noising sea noise data....

1) De-noising sea noise data
This work presents De-noising sea noise data and also how data from a marine seismic survey, which is highly contaminated by noise, was de-noised through the use of a time-frequency filter. In addition to the present standard work flow designed to remove cavitation noise, strumming noise and swell-noise. We introduce a new approach to track seismic interference. This is done by applying time-frequency de-noising on the slowness that gathers. As a motivation and background for the processing we also explain some of the techniques behind the generation of the many different noise types.

The end story is that even in case low if there is a low quality input data then also it can be turned into high quality seismic sections. Even though the dataset used is only one, the results and its methodologies represented here are considered to be general, and should be definitely applicable to a large number of seismic surveys.


Questions:
a) Name the two components which seismic data consists of? 
b) What is the second problem in this dataset?
c) What is the frequency range of swell noise?
d) What is the frequency range of hydrostatic pressure variation noise?
Sol:
a) signal and a noise component
b) Swell-noise
c) (1-10(15)Hz)

d) (0-1(2)Hz)

Tuesday, 25 November 2014

Write-Ups Assignment Help: What is a little-know secret to the profitability of Amazon.com?

The below are few of the topics on which the write-ups of 300 to 500 words are expected:

1) What is a little-know secret to the profitability of Amazon.com?

2) Which of these characterized the strategies is the early days (and somewhat, still today) of electronic commerce?

3)Q)“Words carry the message. They would carry the same meanings with or without paragraphing. Therefore, paragraphing has no effect on communication.” Discuss your view of this statement and provide an example which supports your analysis. 

4)What is access matrix? For what purpose is access matrix used in general purpose OS?

4)Many people feel that the American government is out of touch with its public. Look at the branches of government and analyze this statement. 

Need an answer, Please comment on this post!!!

Homework Help: What is the rms speed of each helium atom...

Q)The molecular mass of helium is 4 g/mol, the Boltzmann’s constant is 1.38066 ×
10−23 J/K, the universal gas constant is 8.31451 J/K · mol, and Avogadro’s number
is 6.02214 × 1023 1/mol. Given: 1 atm = 101300 Pa.
What is the rms speed of each helium atom?
Answer in units of m/s.

Sol:
The average kinetic energy is given by:
KEatom = (PV)/N
Number of atoms (N)= Avogadro's number (A) * n
where N = A*n = A*(PV/RT)
N = 6.02214 x 10^23 atoms/mole * (96235 Pa * 0.01414 m^3) / (8.31451 J/K-mol * 285.15 K)
N = 3.456 x 10^23 atoms

KEatom = (96235*0.01414 /3.456 x 10^23 )J/atom

      = 3.94 X 10^-21 J/atom

KEa = (1/2) m v^2
m = (Molecular Mass (Mm) / A)
m = (0.004 kg/mole / 6.02214 x 10^23 atoms/mole)
m = 6.42 x 10^-27 kg/atom
v^2 = (2 KEa)/m
v = sqrt((2 KEa) / m)
v = sqrt((2 * 3.94 X 10^-21 J/atom) / 6.42 x 10^-27 kg/atom)
v = 1108 m/s


Monday, 24 November 2014

Networking Assignment Help: Explain the RSA Public Key Encryption Scheme in detail...

Q)Explain the RSA Public Key Encryption Scheme in detail.In particular ,how do the encryption and decryption algorithms work? Explain also how you choose the public and private keys.Suppose a user picks n=17*5; i.e .,p=17 and q=5.How should he pick the public key and the private key (i.e., d and e)? Give the encryption and decryption algorithms.

Sol:
RSA Public Key Encryption which was invented by Cocks (GCHQ), independently, by Rivest, Shamir and Adleman (MIT). Say for example let ‘p’ and ‘q’ is the two large prime numbers.
Let N = p*q be the modulus, then Choose ‘e’ relatively prime to (p-1)*(q-1)
Find d such that e*d = 1 mod (p-1)*(q-1)
Here the Public key is given by (N, e) and the Private Key is given by ‘d’.

The encryption as well as the decryption algorithm works as follows:
To encrypt the message M compute
C = Me mod N
And to decrypt the message C compute
M = Cd mod N
Please recall that e and N are public, hence if attacker can factor N, then he can definitely use ‘e’ to easily find the value of ‘d’ since e*d = 1 mod (p-1)*(q-1)
Factoring the modulus will break the RSA, therefore it is not known that whether the factoring is the only one way to break RSA.
Suppose a user picks N=17*5; i.e., p=17 and q=5.
Hence N= 85,
(P-1)*(q-1) = 16*4=64
Choose ‘e’ such that it is relatively prime to 64. Hence e=5
Find‘d’ such that e*d = 1 mod 64, we find that d = 7 works

Public key: (N, e) = (85, 5)
Private Key: d = 7

Encryption as well as decryption algorithm works as follows:

Public key: (N, e) = (85, 5)
Private Key: d = 7
Suppose message M = 8
Cipher text C is computed as
C = Me mod N = 85 = 32768 = 17 mod 85

Decrypt C to recover the message M by
M = Cd mod N = 177 = 410,338,673
= 12,434,505 * 85 + 8 = 8 mod 85


Sunday, 23 November 2014

Chemistry Homework Help: what is the equilibrium concentration of...

Kc = 9.7 at 900 K for the reaction

NH3(g) + H2S(g) ---> NH4HS(s) .

If the initial concentrations of NH3(g) and H2S(g) are 2.0 M, what is the equilibrium concentration of NH3(g)?

1. 0.20 M
2. 1.7 M
3. 0.10 M
4. 0.32 M
5. 1.9 M


Sol:
Kc = [NH4HS]/[ NH3]*[ H2S]
At equilibrium the concentration of NH3 will be (2-x)
9.7=1/(2-x)2

Hence, 2-x = 0.32M

Database Assignment Help: Execute your script to create the new user...

#User roles
You need to create a new user named ASSOCDBA1 and a new ROLE named JRDBA1 that can be used for an assistant DBA. You want the new role to contain the DBA role that the SYSTEM user has with ADMIN OPTION (when it pertains to the current SYSTEM user setting). You also want the new role to be password-protected with a password of MJOAG2T. Once the role is created, assign the role to the new user ASSOCDBA1, but do not make it the default role.

Execute your script to create the new user, the new ROLE, assign privileges to the role, and assignment of the ROLE to the user.

Need a quick solution to this question? Comment on this post!!!

Assignment Help: Derive an expression for link utilization...

Q) Derive an expression for link utilization U of a data link that uses the sliding-window flow control and returns an ACK for every OTHER frame received. Assume error free transmission. Link length is d, propagation velocity is v, frame size is L, and window size is W.

Need a quick solution to this question? Comment on this post!!!

HomeWork Help: What is the current in the bulb..

Q) A 100 W lightbulb is plugged into a standard 120 V outlet. (a) How much does it
cost per 31-day month to leave the light turned continuously? Assume electrical
energy costs US$0.06/kWh. (b) What is the resistance of the bulb? (c) What is the current in the bulb?

Sol:
First let us find the energy used in 31 days is(in kWh) and then let go for calculating the cost.

a) U = P * t = 0.100kW * 31days * 24hrs/day
       = 74.4kWh
Cost per 31 day month = 74.4kW h * $0.06/kW h
  = $4.464
b) The resistance of the bulb is given by,
P = V2/R
R = V2/P
  = (120V)2/100W
=144Ω
c) The current in the bulb is given by,
P = VI
I = P/V
     = 100W/120V

 = 0.833 A

Saturday, 23 July 2011

TTH50015

What is the chemical reaction of fehling's test with sucrose?

Hint*: Fehling's test react with Sucrose - Chemistry


Price: - Best in Industry
Contact: - businessonline4me@gmail.com
*Please feel free to email any new assignments.

TTH50014

Show how do identify system point for 0.003M phosphoric acid using graphical method and then plot the graph for the above result.

Hint*: PC -PH diagrams for triprotic acids

Price: - Best in Industry
Contact: - businessonline4me@gmail.com
*Please feel free to email any new assignments.

Thursday, 14 July 2011

TTH50005

Describe the significance of the synchronous impedance?


Price: - Best in Industry
Contact: - businessonline4me@gmail.com
*Please feel free to email any new assignments.

Saturday, 21 May 2011

TechTutorHelp_003

--------------------------------------------------------------------------------------------------------------
(2 pages Writeup)
 Importance of electro-negativity!!!!
Price 12$) - Contact: businessonline4me@gmail.com


--------------------------------------------------------------------------------------------------------------


Wednesday, 18 May 2011

Civil Engineering Assignment Help

----------------------------------------------------------------------------------------------
Price 4$) - Contact: businessonline4me@gmail.com

----------------------------------------------------------------------------------------------

Physics Help

Equilibrium of concurrent forces:- examples equilibrium forces. 
1 Page Write Up
Price 5$) - Contact: businessonline4me@gmail.com

Tuesday, 17 May 2011

Networking Assignment Help

Part 1

You are tasked with writing rule sets for two firewalls that protect your network and form a DMZ. All traffic from your internal network to the Internet passes through the DMZ. All servers that are accessible from the Internet reside inside the DMZ. All computers inside the network (internal network and DMZ) have private IP addresses. All traffic to and from the Internet passes through a NAT device which is located just inside the perimeter firewall. All computers on this network are Windows computers

Servers in the DMZ
Service Public IP Address Private IP Address Comments
HTTP/HTTPS 200.100.100.10 192.168.20.10
FTP 200.100.100.11 192.168.20.11
DNS 200.100.100.12 192.168.20.12 Uses TCP for zone transfers, services DNS lookup requests from all computers in the internal network and DMZ
Email 200.100.100.13 192.168.20.13 SMTP
Proxy 200.100.100.14 192.168.20.14 Not accessible from the Internet. Client computers connect to the proxy service on port 8080



Clients on the internal network: All user workstations access web sites via the Proxy server. There are three different internal subnets: 10.10.10.0/24, 10.20.20.0/24 and 10.30.30.0/24. Computers on the 10.10.10.0/24 subnet may access FTP servers on the Internet. Computers on the 10.20.20.0/24 network may access an SSH server on the Internet with the IP address 220.20.30.110. All computers on the internal network may access the company’s Email, DNS, FTP and web servers that reside in the DMZ.

Computers on the three internal subnets use dynamic NAT pools as follows when making connections to the internet.
Private IP address range NAT Pool
10.10.10.0/24 200.200.200.50 through 200.200.200.100
10.20.20.0/24 200.200.200.101 through 200.200.200.150
10.30.30.0/24 200.200.200.151 through 200.200.200.200


Answer the following:
(1)Write the two rule sets for the two firewalls that will allow only the traffic described to flow.



Part 3

You are tasked with implementing a rule set for a firewall. Internal computers are running Windows operating systems.

(3) In the following table create a rule set to implement the following requirements.
• Internal users are allowed to access web servers on the Internet (both HTTP and HTTPS) but do so via a proxy server that has an IP address of 192.168.20.5.
• Access to the following servers is not allowed:
a. www.riaa.com
b. www.mpaa.org
• Users are allowed to directly access an SSH server running at andromeda.cs.odu.edu
• Computers on the Internet should be allowed to connect to your email server (SMTP only) in order for your company to receive emails from other organizations. The IP address of the email server is 192.168.20.10.
• Your email server must be able to connect to other email servers on the Internet to forward outgoing email (SMTP only).
• All other traffic is not allowed

Rule
Number Protocol Source Address Source
Port Destination Address Destination
Port Direction Action





Part #4


You are tasked with implementing a rule set for two firewalls protecting your network in a DMZ configuration. Internal computers are running Windows operating systems.

(4)In the following table create a rule set to implement the following requirements.

Note:
NAT occurs just inside the perimeter firewall.



DMZ Servers
Purpose Private IP Public IP
Web proxy 192.168.10.10 150.150.150.10
FTP Proxy 192.168.10.11 150.150.150.11
DNS 192.168.10.20 150.150.150.20
Web server - public 192.168.10.30 150.150.150.30
Web server – corporate only 192.168.10.40 150.150.150.40
Email 192.168.10.50 150.150.150.50



Internal network servers
Purpose Private IP
Microsoft SQL Server Database 10.50.50.100

Requirements
Workstations
• User workstations are on the two subnets 10.10.10.0/24 and 10.20.20.0/24
• User workstations can access web servers on the Internet (http and https) but only via a proxy server which resides in the DMZ
• User workstations can access ftp servers on the Internet but only via an FTP proxy server which resides in the DMZ
• User workstations can access the DNS server which resides in the DMZ


DMZ Servers
• Web proxy may access web servers on the internet
• FTP proxy may access FTP servers on the internet
• DNS server will accept incoming requests from both internal workstations and from the Internet.
• DNS server will accept zone transfer requests from other name servers on the internet
• The public web server will accept requests from the internet only via HTTP
• The corporate web server will accept requests from the internet only via HTTPS
• The corporate web server will make connections to the internal Microsoft SQL Server database on its default port.
• The email server will accept SMTP requests from the internal network and the Internet. It will also make SMTP requests to other email servers on the Internet.

Internal Server
• The internal Microsoft SQL Server database server will accept incoming connections from the corporate web server in the DMZ

Rule
Number Protocol Source Address Source
Port Destination Address Destination
Port Direction Action

Price 74$) - Contact: businessonline4me@gmail.comm

General Topics Help


'Sequential Label and Supply Company' (SLS)case study

Was Charlie exaggerating when he gave Peter an estimate for the time that would be required to crack the encryption key using a brute force attack? 

200 words( Price 4$) - Contact: businessonline4me@gmail.comm
--------------------------------------------------------------------------------------------------------------
'Sequential Label and Supply Company' (SLS) case study

What recommendation would you give Sequential Label and Supply Company for how it might select a security model?

200 words( Price 4$) - Contact: businessonline4me@gmail.comm
----------------------------------------------------------------------------------------------------------------