Answer:
ANSWER:62
Explanation:i dont know just trust me
The base of every positional numeral system is ten, which is expressed as 10 in the decimal numeral system (also known as base-ten). It is the numeral system that modern cultures utilize the most frequently.
What Binary Digit Decimal Equivalent of Place Value?In binary numbers, place values rise by a factor of 2, as opposed to decimal numbers, where place values rise by factors of ten. The symbol for a binary number is X2. Think about the binary number, 10112 as an example. The place value of the rightmost digit is 120, while the place value of the leftmost digit is 123.
Digits are used to fill in the spaces on the place value chart in the decimal system. Binary, on the other hand, is restricted to 0 and 1, therefore we can only utilize 0 or 1 with each location. In a binary place value chart, the binary number 1001 is positioned to the right.
Therefore, Decimal Equivalent of Place Value 128 64 32 16 8 4 2 1.
Learn more about Binary Digit here:
https://brainly.com/question/20849670
#SPJ2
A multinational pharmaceutical company used a saffron trident in a promotional campaign for one of its drugs in India. The saffron trident, a religious symbol in India, was meant to indicate the three levels of efficacy of the drug but mistakenly conveyed a religious message to Indians. This miscommunication indicates a problem associated with which step of the international communications process?
i. information source selection
ii. media channel selection
iii. encoding
iv. noise cancellation
v. message transmission
Based on the given information, This miscommunication indicates a problem associated with the encoding step of the international communications process. Thus the correct option is 3.
What is communication?Communication is referred to the exchange of information between two individuals in the form of conversation, opinion, suggestion, or advice with the help of medium or direct interaction.
In the given case, it is explained that during a marketing campaign for one of its medications in India, a multinational pharmaceutical company utilized a saffron trident to represent the drug's three degrees of efficacy.
The method used to transform thoughts into communication is called encoding. The communicator must start decoding in order to communicate meaning in the form of symbols that stand in for concepts or thoughts.
Therefore, option 3 is appropriate.
Learn more about Communication, here:
https://brainly.com/question/22558440
#SPJ6
Is this statement true or false? Title text boxes on every slide must be the same format. True false.
How many passes will it take to find 16 using a binary search?
2, 4, 6, 8, 10, 12, 14
3
4
2
1
Answer:
1
Explanation:
Binary search is a useful approach for reducing a list of items. It divides the section of the list that might contain the item in half repeatedly until there is only one viable position left. Thus, option D is correct.
What using a binary search?Recursive and iterative methods. The main distinction between the two approaches is that the recursive approach utilizes O(logN) space complexity, whereas the iterative approach uses O (1).
On sorted arrays, binary search operates.The binary search process begins by comparing a middle-of-the-array member to the desired value.
Therefore, It is necessary to locate element 59 in a 10-digit array. The index of the elements ranges from 0 to 9. The array's centre is now calculated. To do this, divide the index's leftmost and rightmost values by two.
Learn more about binary search here:
https://brainly.com/question/12946457
#SPJ2
what method does a gsm network use to separate data on a channel?
who develop computer first?
sorry bro...,......................................
16. A/An __________ is operated on the principle that the dying have special needs and wants that hospital personnel are too busy to handle.
Answer:
Hospices
Explanation:
A/An Hospices is operated on the principle that the dying have special needs and wants that hospital personnel are too busy to handle.
Answer:
a / an hospice is operated on the principle that the dying have special needs and wants that hospital personel are too busy to handle..
Explanation:
answer:: HOSPICE
when demonstrating 2022 versa’s maneuverability, what available systems should you point out when backing up?
When demonstrating 2022 Versa's maneuverability, what you should you point out while driving in a parking lot is the excellent rearward visibility that is given or shown by the RearView Monitor.
2022 Nissan Versa is a new model by Nissan. They are known to have different technology and safety features. Its includes automatic emergency braking with pedestrian detection, remote keyless entry etc.
This vehicle comes with 2 functions such as a 5-speed manual transmission or an Xtronic Continuously Variable Transmission. With this one can quickly adjusts to the best gear ratio for a easyy acceleration and efficiency.
Learn more about 2022 Versa's from
https://brainly.com/question/25980600
How does the computer help me with school work
A(n) ________ is a heavily secured server located between a company's secure internal network and its firewall.
Answer: bastion host
Explanation:
I need some questions and answers in spreadsheet
Answer:
you need to show what you need help with
Explanation:
software ............. the hardware what to display on the user's screen
what will the computer do in response to a line of code reading # name = input("What is your name?") print “What is your name?” print “name =” nothing return a syntax error
The computer will do nothing in response to the instruction # name = input("What is your name?")
The instruction is given as:
# name = input("What is your name?")
The above instruction is a Python instruction.
In Python, lines that begin with # are not executed, because they are treated as comments.
This means that, the computer will not do anything when it comes across the instruction
Read more about Python instructions at:
https://brainly.com/question/19344465
The temperature at 8 AM was 44°F and at noon it was 64°F. what was the percent of change from 8 AM to noon?
Answer: 45.45%
Explanation:
Time Passed: 4 hours
Difference in Temperature: 20°F
20/44 = .45454545454545
.45454545454545*100 = 45.45%
Correct me if I am incorrect.
What is a trusted computing base (TCB)? Hosts on your network that support secure transmissions The operating system kernel and device drivers The combination of hardware, software, and controls that work together to enforce a security policy
Answer:
yuh
Explanation:
The trusted computing base of a computer system is the set of all hardware, firmware, and/or software components that are critical to its security, in the sense that bugs or vulnerabilities occurring inside the TCB might jeopardize the security properties of the entire system
python Better Password Prompt
Write a program that uses a loop and a half to prompt a user for a password. You should prompt the user for the password. If they get it correct, break out of the loop. If they don’t get it correct, you should give them an error message and ask again.
Sample Run:
Enter password: 123123
Sorry, that did not match. Please try again.
Enter password: password
Sorry, that did not match. Please try again.
Enter password: CODEHS
Sorry, that did not match. Please try again.
Enter password: abc123
You got it!
Note: You need to set SECRET to abc123 to run the tests
We use an indefinite while loop to keep the user entering the password. In the loop, we use if-else structure to check the password. If it is "abc123", the password is found and stop the loop using a break. Otherwise, the password is not correct. Note that since we do not use any break statement in the else part, the loop will continue asking for the input
Comments are used to explain each line of the code.
You may see the output in the attachment.
#set the SECRET
SECRET = "abc123"
#create a loop
while True:
#ask the user to enter a password
password = input("Enter password: ")
#check if the password is equal to SECRET
# if it is, state that password is correct and stop the loop using a break
# otherwise, state that password is not correct
if password == SECRET:
print("You got it!")
break
else:
print("Sorry, that did not match. Please try again.")
Here is another question related to the loops:
https://brainly.com/question/25694810
What do you mean by Data Types? Give Examples.
Ms Access question
Answer:
This answer is quite late, but data types are basically categories that differentiate stuff in python.
A few examples would be:
String - Anything that has single or double-quotes around it. The input( ) function automatically returns a string, unless changed.
Int - An integer. Any whole number.
Float - Any decimal number.
List - a variable in which you can store multiple different elements. (Strings, integers, floats, tuples, lists, etc...)
Also, sorry if my English isn't perfect. English isn't my first language.
Explanation:
Don't know. Just some stuff I remember from my python class. ∞
lenny joggy along a trail for 1.35 hours he ran at a pace of 3.2 miles per hour. how far did lenny jog?
Answer:
Lenny jogged along a trail for 1.35 hours. He ran at a pace of 3.2 miles per hour. How far did Lenny jog? Answer Lenny jogged 4.32 miles.
Explanation:
Sidney needs to create a decimal number variable that will be added to another number. What kind of variable is required?binaryBooleanstringfloat
congress are smart becuase.....
Answer:
If we are talking about government then they are smart bc of there two house policies, both are equal yet super unique. They make sure each state has an equal voice in the senate.
Fill in the blank: With ticket ________, you are able to edit ticket properties according to which team owns the ticket.
Answer: records customization
Explanation:
once multiple layers are selected which keyboard shortcut merges them
Considering the computer system analysis, when the multiple layers are selected, the keyboard shortcut that merges them is "Ctrl+E for (Windows) or Command+E for (Macbook)."
What Keyboard Shortcut?Keyboard Shortcut combines keyboard keys to ensure software programs perform specific functions.
Keyboard Shortcuts can be made by a Computer manufacturer as part of the standard functionality of the operating system or application program or made explicitly by the user in a scripting language.
Keyboard Shortcut is different in both Windows and Macbook Operating systems.
Hence, in this case, it is concluded the correct answer is "Ctrl+E for (Window) / Command+E for (Macbook)."
Learn more about Keyboard shortcuts here: https://brainly.com/question/14447287
Database management packages based on the _______________ model can link data elements from various tables to provide information to users.
Answer:
Database management packages based on the relational model can link data elements from various tables to provide information to users.
Two primary disadvantages to the ______ BN type are that the routers in the network impose time delays, and routers are typically more expensive and require more management than switches. Group of answer choices
Answer: Routed backbone disadvantages are time delays and more expensive than switches
Explanation:
This is an image of the ...........................Topology.
if answer Correct i will mark the first person brainly.
Answer:
Mesh
Explanation:
12. In Justify the text is aligned both to the right and to the left margins, adding extra space between words as necessary *
Maybe
False
True
[tex]\blue{<><><><><><><><><><><><><}[/tex]
[tex]\green{<><><><><><><><><><><><><}[/tex]
Answer:
FalseExplanation:
Because, aligment the tex are aligned in the centre of the page.[tex]\pink{<><><><><><><><><><><><><}[/tex]
[tex]\red{<><><><><><><><><><><><><}[/tex]
What economic impact will this disaster have on people? Select three options.
People will have to rebuild their homes and communities.
People will have to move away from friends and family after a flood.
People will have to relocate and buy or rent new homes.
People will need to find new jobs to replace jobs destroyed in the flood.
People will be angry with the government for lack of warning about the flood.
Answer:
1, 3, and 4
Explanation:
Those are the only ones that has anything to do with money.
The process of sending and receiving messages with words defines _____. A. Verbal communication b. Nonverbal communication c. Open communication d. Empty communication Please select the best answer from the choices provided A B C D.
The process of sending and receiving messages with words defines: A. Verbal communication.
Communication can be defined as a process which involves the transfer of a message from an individual (sender) to another (receiver or recipient), through the use of words, semiotics, symbols and signs, that are mutually understood by both the sender and the receiver.
In English language, there are different types of communication and these include:
Visual communicationNon-verbal communicationWritten communicationListening communicationVerbal communicationVerbal communication is also referred to as oral communication and it refers to the process of sending and receiving messages from one individual to another through the use of words.
Read more: https://brainly.com/question/14810228
Answer:
its a
Explanation:
yw
The _______ conditional formatting option allows you to define formatting for cells that meet specific numerical or text criteria (greater than, or containing a specific text string).
A facility that is pre-wired for necessary telecommunications and computer equipment, but doesn't have equipment installed, is known as a
Answer:
hot site
Explanation:
solve each of the following a. 3x=27
Answer:
3^(x)=27 x=3
Explanation:
3x3x3 27
:)
3ˣ = 27
Factorise 27.
27 = 9 × 3
27 = 3 × 3 × 3
27 = 3³
So,
3ˣ = 27
=》ˣ = ³
3³ = 27
_____
Hope it helps ⚜