does anybody know how to unlock websites from school computer
Answer:
yes go to settings then apps
Explanation:
that's how I did mines
RIGHT ANSWER GETS BRAINLEST
Complete the code.
You are writing a loop to allow the user to enter data until they enter a "Q". You want to allow them to enter an upper- or lowercase "Q".
if yourTeam.
() == "q":
break
The options they give are:
Upper
Compare
lower
Answer:
sir i beleive lower is your answer, i know it isnt upper.
Explanation:
:D
Answer:
lower
Explanation:
i just did the quiz and got it right :)
In a particular spreadsheet, the data in each cell is password protected. When cells are selected, the formula is visible
in the formula bar. Which is true?
O The cells are locked and hidden.
The cells are locked and unhidden.
The cells are unlocked and hidden.
O The cells are unlocked and unhidden.
Answer:
Explanation:
Locked and hidden
can someone help me on codehs. its 7.1.5: initials. here is what your supposed to do
Write a function called initials that will take a first and last name and return their initials using the following format:
initials("Tracy", "Turtle")
# => "T.T."
initials("Peter", "Parker")
# => "P.P."
Answer:
first = input( "What is your first name? " )
last = input( "What is your last name? " )
def initials():
print ("Your initials are: "+first[0]+"."+last[0]+".")
initials ()
Explanation:
it works when I test but it won't submit. Hope this helps
Following are the program to prints the initials of the input value.
Program Explanation:
Defining a class Main.Inside the class, a method "initials" is declared that takes two string variables "first, last" in the parameter.Inside the method, a return keyword is defined that uses the charAt method that returns the first character value of the parameters. In the next step, the main method is defined.Inside the main method, a print method is declared that calls initials method that accepts value in the parameter and prints its value.Program:
public class Main //defining a class Main
{
static String initials(String first, String last)//defining a String method initials that input two variables in the parameter
{
return first.charAt(0)+"."+last.charAt(0)+".";//using charAt method that returns first character value
}
public static void main(String[] as) //defining main method
{
System.out.println(initials("Tracy", "Turtle"));//using print method that calls initials method that accepts value in parameter
System.out.println(initials("Peter", "Parker"));//using print method that calls initials method that accepts value in parameter
}
}
Output:
Please find the attached file.
Learn more:
brainly.com/question/2810164
How many comparisons will be done to find 8 in this list using a linear search?
2, 4, 6, 8, 10, 12
Answer:
I think 4 comparisons
When an instruction is sent to the CPU in a binary pattern, how does the CPU know what instruction the pattern means
Answer:
When an instruction is sent to the CPU in a binary pattern, how does the CPU know what instruction the pattern means
Explanation:
When the CPU executes the instructions, it interprets the opcode part of the instruction into individual microprograms, containing their microcode equivalents. Just so you know, a full assembly instruction consists of an opcode and any applicable data that goes with it, if required (register names, memory addresses).
The assembly instructions are assembled (turned into their binary equivalent 0s and 1s, or from now on, logic signals). These logic signals are in-turn interpreted by the CPU, and turned into more low-level logic signals which direct the flow of the CPU to execute the particular instruction.