HELP ME!!!!!!! %) select all the correct answer. What will be the output of using the element in the given HTML code? 1011 2 A. 10112 B. 10112 C. 21011 D. 21011
Answer:
A or B
Explanation:
I'm not sure I used HTML a bit but I am not a pro on it so this might be not correct
Tell me if I'm wrong :)
Answer:
The answer is B: 1011 with the two under
Explanation:
I got it correct on my test.
Try to crack the code:
00110111 01001010 00110011 01011001 00111001 00100000 00110010 01001100 01000010 00110110 01000101 00100000 00110110 01001000 01010001 01010011 01001010
Answer:001101110010010100011011010110010011100100100000001100100100110001000010001101100100010100100000001101100100100001010001010101001101001010
Explanation:
i copied
An agile team has which two characteristics? (choose two. ).
A SAFe Agile teams are often known to be Scrum Master and Product Owner. An Agile team characteristics are:
A small group typically 5 - 11 dedicated individuals who have the skills necessary to define, build, test, and deploy increments of value.A group of dedicated individuals who are empowered, self-organized, self-managing, and deliver value.
A SAFe Agile team is a cross-functional group as they are made up of about of 5-11 people who set apart, build, test, and deliver an increment of value in a short time box.
Agile team are known to be cross functional as they can define, build , test and Deploy.
See full question below
An Agile team has which two characteristics? (Choose two.)
A) A small group typically 5 - 11 dedicated individuals who have the skills necessary to define, build, test, and deploy increments of value
B) A stand-along unit of individuals who do not require input fro other teams to complete their tasks
C) A large group of individuals who all work together to create value for the client
D) A group of dedicated individuals that work in phase-gate steps to complete their PI Objectives
E) A group of dedicated individuals who are empowered, self-organized, self-managing, and deliver value
Learn more from
https://brainly.com/question/24390635
A programmer wants to write code that directly accesses the computer’s hardware. Which is the best type of language for the programmer to use?.
Answer:
Assembly is the programming language that directly accesses the computer’s hardware.
Browser software can be set to update automatically, or require manual intervention. Which is preferred
A browser, also known as web browser is used to surf the internet.
Automatic and manual updates of the web browsers are based on the user preference
Updating one's browser implies that the user wants to have the latest software experience of the browser, provided by the software developer.
Automatic or manual update of the web browser is usually based on the user preference, and several other factors such as:
Network switches.System vulnerability.Unreliable updatesProvision to revert to a previous update.The above factors and few others can influence one's decision of software updates.
Read more about software updates at:
https://brainly.com/question/25604919
In Super Mario 64, a character called Lakitu follows Mario around on a cloud, filming him with a camera as though he were shooting a news broadcast. What type of character perspective is this an example of?
Second-person perspective
First-person perspective
third-person perspective
over-the-shoulder perspective
Answer:
A second person prespective
Explanation:
Answer:
i had dat gam i think its 3rd person but i am not positive... i have never even heard of over the shoulder perspective.
What is the main purpose of adding captions to an image or table in Word?
O to show the reader where to learn more about the image
O to identify other images that are similar to the one shown
O to add detailed information about the image for the reader
O to provide information on the size and shape of the image
Answer:
C. to add detailed information about the image for the reader
Explanation:
hope this helps :)
The main purpose of adding captions to an image or table in Word is to provide detailed information about the image for the reader.
Thus, option (c) is correct.
Captions help the reader understand the content of the image, such as its context, significance, or key points, without having to rely solely on the visual information.
Captions also help in referencing the image or table in the text, making it easier for readers to locate and understand the content being discussed in the document.
Therefore, adding captions provide detailed information about the image for the reader.
Thus, option (c) is correct.
Learn more about caption here:
https://brainly.com/question/10413551
#SPJ3
which of the following online creation tools will be used if a person wants to create a video presentation?
a. Piktochart
b. Prezi
c. Powtoon
d. Zamzar
Answer:
C
Explaination:
Powtoon
Fill in the blank
please help.
_______________________ _____________________ software allows you to prepare documents such as _______________________ and _______________________. It allows you to _______________________, _______________________ and format these documents. You can also _______________________ the documents and retrieved it at a later date.
Answer:
Application software allows you to prepare documents such as text and graphics. It allows you to manipulate data , manage information and format these documents. You can also store the documents and retrieve it at a later date.
Angular unit test how to use jest with karma.
Write a program that reads a list of integers, one per line, until an * is read, then outputs those integers in reverse. For simplicity in coding output, follow each integer, including the last one, by a comma. Note: Use a while loop to output the integers. DO NOT use reverse() or reversed(). Ex: If the input is:
Answer:
I'm just going to copy my pseudocode into an answer:
x = array()
i = 0
while (true)
j = input()
if j = "*" then break
x[i] = j
i++
print x.join(", ")
Explanation:
The program that read a list of integers, one per line, until an * is read, then outputs those integers in reverse can be found in explanation.
What is programming?Computer programming is the process of carrying out a specific computation, typically by designing and constructing an executable computer program.
Programming tasks include analysis, algorithm generation, algorithm accuracy and resource consumption profiling, and algorithm implementation.
The program that reads a list of integers, one per line, until a * is read, then reverses the output of those integers is:
x = array()
i = 0
while (true)
j = input()
if j = "*" then break
x[i] = j
i++
print x.join(", ")
Thus, it can be concluded that the above mentioned is the program for the given scenario.
For more details regarding programming, visit:
https://brainly.com/question/11023419
#SPJ5
List four types of Web browsers
Answer:
internet explorer safari tor firefox
Explanation:
The Sales team uses the /sales directory to store documents related to sales, contacts, and orders. Currently, permissions on the directory only allow the user and group owners to view the contents of the directory. Users who are not part of the group owner are unable to list the contents of the directory.
As part of a new company policy to increase teamwork, you want to allow all users to be able to see the /sales directory and list its contents. You also want to let all users open, but not change, any document inside that directory.
Task:
Allow the other group to browse the /sales directory.
Modify permissions on all files in the /sales directory to allow members of the other group to view but not change the file.
Type:
chmod o+rx /sales
Answer:
it should be d
Explanation:
please mark this as brainlists i could really use it
File permissions are often set or changed using “Change Mode.” o+ Add permission for “others” with – (remove) r (other possible options include u (user) and g (group)). Permission is read. Implement permission (other possible values include w – write permission)
What is main function of the chmod?What permission—read (r), write (w), or execute—is third? (x). You would enter chmod o+rx [filename] to add world read and execute permission to a file using symbolic mode. You would type chmod o-r [filename] to make a file world read-only.
— rw-r—r— (644) — Group members and others can only read; only the user has read and write access. — rwx——— (700) — Reading, writing, and executing are all restricted to the user.
Therefore, RWXRXRX (755) — Only the user and the group and others can read and execute; the user has read, write, and execute permissions.
Learn more about chmod here:
https://brainly.com/question/14187643
#SPJ2
The CNSS model of information security evolved from a concept developed by the computer security industry known as the ____________________ triad.
The data _____ component of a database management system (DBMS) is used to create and maintain the data dictionary.
Answer:
IDggK
Explanation:
_______ is the use of software to assist in the creation, analysis, and modification of the design of a component or product.
Answer:
C) Computer-aided Design
Explanation:
Options:
a. Computer-aided engineering
b. Computer-aided evaluation
c. Computer-aided design
d. Computer-aided manufacturing
C) Computer-aided design is correct answer
(Hope this helps can I pls have brainlist (crown)☺️)
Civilization V is a game that can be won in a number of ways, including maximizing your civilization's diplomatic, scientific, or cultural standing, making it so the player is intensely focused on winning the game. This is an example of what type of immersion?
Tactical immersion
Strategic Immersion
Non-player immersion
Pseudo immersion
Answer:
Strategic Immersion
Explanation:
Strategic Immersioninvolves the player being intensely focused on winning the game and weighing all their actions in terms of maximizing their chances
five types of conflict in the school
Answer:
Conflicts can be classified into five different types: structural, value, relationship, interest, and data [
Explanation:
Answer:
Conflicts can be classified into five different types: structural, value, relationship, interest, and data
Explanation:
follow me please
What are this Chinese logo map
Answer:
hope it's helpful to you
Until 2016, the popular song _____ was covered by copyright law, unusually long after it was written in 1893.
A.
Happy Birthday
B.
Merry Christmas, Everyone
C.
Hava Nagila
D.
Auld Lang Syne
Answer: Happy Birthday
Explanation:
What is the minimum base of the cloud layer to fly to the top of the towers 4 NM east of Onawa (K36)
Answer:
792 feet AGL.
Explanation:
What core components are involved with all games?
Player actions, humor, rewards, coins
Player goals and actions, rules, challenges
Challenges, riddles, mind-benders, tasks
Injury, re-birth, rules, questions
Answer:
B.) Player goals and actions, rules, challenges
Explanation:
You need to manage a process in the foreground by pressing Ctrl+C on the keyboard. Which signal code is sent to the process?
How to make headers without bootstrap angular.
Answer:
The idea is page should be fixed and cannot be scroll. Header and footer always stick to top and bottom. the middle part is content which is scroll-able only. contents should not be overlapped by header and footer. Layout should work with different type of devices and screen.
Explanation:
You are an IT administrator troubleshooting a Windows-based computer. After a while, you determine that you need to refresh the group policy on that computer. Rather than rebooting the computer, you open a command prompt from which the refresh can manually be completed. Which of the following is the BEST command line tool to run to accomplish this task?a. popdb. fsutilc. gpresultd. gpupdate
Answer:
gpupdate
Explanation:
My explanation was previously removed.
Bootmgr starts and reads data from a(n) ________ file that contains information about the various operating systems installed on the system.
among the 4 cables ,shielded,unshielded,coaxial,fibre optics,what do you think is the most convenient or most prefer to use.why?
Answer:
You can use fibre optics
Explanation:
Because it is speed than other wires, it is also cheaper.
How to turn robot voice like real human voice.
What are the names of the methods which are used to control an i/o device??.
Answer: 1
Explanation:
i took the quiz and it was correct
________ is a group meeting-based process for requirements collection. a. Reverse engineering b. Joint application design c. Human-computer interface d. Computer-aided design e. Total ownership
Answer:
a) reverse engineering