Engineering
The net potential energy between two adjacent ions, EN, may be represented by EN = -A/r + B/rn Where A, B, and n are constants whose values depend on the particular ionic system. Calculate the bonding energy E0 in terms of the parameters A, B, and n using the following procedure: 1. Differentiate EN with respect to r, and then set the resulting expression equal to zero, since the curve of EN versus r is a minimum at E0. 2. Solve for r in terms of A, B, and n, which yields r0, the equilibrium interionic spacing. 3. Determine the expression for E0 by substitution of r0 into the above equation for EN. What is the equation that represents the expression for E0?
Design a sequential circuit with two D flip-flops A and B, and one input x_in. (a)When xin = 0, the state of the circuit remains the same. When x_in = 1, the circuit goes through the state transitions from 00 to 01, to 11, to 10, back to 00, and repeats. (b)When xin = 0, the state of the circuit remains the same. When x_in =1, the circuit goes through the state transitions from 00 to 11, to 01, to 10, back to 00, and repeats.
Assume we have already defined a variable of type String called password with the following line of code: password' can have any String value String password ???"; However, because of increased security mandated by UCSD's technical support team, we need to verify that passwo rd is secure enough. Specifically, assume that a given password must have all of the following properties to be considered "secure": It must be at least 7 characters long .It must have characters from at least 3 of the following 4 categories: Uppercase (A-Z), Lowercase (a-z), Digits (0-9), and Symbols TASK: If password is secure, print "secure", otherwise, print "insecure" HINT: You can assume that any char that is not a letter (A-Z, a-z) and is not a digit (0-9) is a symbol. EXAMPLE: "UCSDcse11" would be valid because it is at least 7 characters long (it's 9 characters long), it has at least one uppercase letter (U', 'C', 'S', and 'D'), it has at least one lowercase letter (c', 's', and 'e'), and it has at least one digit (1' and '1') EXAMPLE: "UCSanDiego" would be invalid because, while it is 10 characters long, it only has uppercase and lowercase letters, so it only has characters from 2 of the 4 categories listed Sample Input: UCSDcse11 Sample Output: secure