Answer:
This is a pretty obvious answer.
An unwanted e-mail sent in bulk from people or organizations.
Explanation:
Which computer can be used where there is no regular electricity?
Answer:
A mechanical computer
Explanation:
Created from gears and levers
how big is an iphone xr
Answer:
the iPhone xr display measure in at 6 .1 inches
write an algorithm and draw a flowchart for switching off a machine after it has made 500 glass bottles. use an appropriate conditional statement for this
please hurry i need urgent
Answer:
Algorithm
1. Begin
2. num_bottles = 0
3. While num_bottles != 500
3.1 Create bottle
3.2 num_bottles = num_bottles + 1
4. Switch off machine
5. End
The flowchart has been added as an attachment
Explanation:
Begin algorithm
1. Begin
Initialize bottles to 0
2. num_bottles = 0
Repeat loop until 500 bottles is created
3. While num_bottles != 500
Create a new bottle
3.1 Create bottle
Increment the number of bottles by 1
3.2 num_bottles = num_bottles + 1
End Loop
Switch off the machine after loop ends
4. Switch off machine
End algorithm
5. End
b. "The actual use and implementation of computer started after third generations".
Justify this statement in your own words.
Answer:
The use of computers and planning of them didnt start until after the third generation.
Explanation:
Hope it helps✌✌
Answer: The computers of third generation used IC which replaced transistors. Now' the computers were more faster ,smaller and reliable so people started to use them often for many purposes ..So the actual use and implementation of computer started after third generations
Write technical term of following statements: a.The set of programs to perform specific task. b.A feature of computer which tells multi-functioning capability of computer. c.The first calculating machine designed for the manipulation of census data. d.The first computer programmer.
Answer:
a) Application software
d) Lady Augusta Ada Lovelace
b) (it may be versatility
You are the IT Administrator for the CorpNet.local domain. You are in the process of implementing a group strategy for your network. You have decided to create global groups as shadow groups for specific departments in your organization. Each global group will contain all users in the corresponding department. In this lab, your task is to: Create the following global security groups on the CorpDC server in their corresponding OUs: OU Creation Location New Group Name Accounting Accounting Research-Dev Research-Dev Sales Sales
Answer:
1. Select Tools then Active Directory Users from the Server Manager
2. Navigate to the relevant Organizational Unit, OU, in the Active Directory
3. Select New then Group in the OU in which a global securities group is to be created
4. The group name (Accounting, Research-Dev, or Sales) is entered into the Group name field
5. Select the scope of the group
6. The group type is then selected (Domain Local, Global, or Universal)
7. The user accounts are then added to the group as follows;
i) Selecting the Add to a group option after right clicking a user account
ii) Enter the name of the appropriate group in the field to Enter the object names to select
iii) A group scope and group type is then selected
iv) Click on Check names
v) Other users can be added to the group by repeating steps i), ii), iii), and iv)
8) To add additional users to the group, the step 6, 7, and 8 is to be repeated
Explanation:
can someone answer this? I'll mark u the brialintest!
pre convert single digits, or sometimes parts of a sum, then sum up. like this:
1.) 2³+2²+2^1+2^0 = 8+4+0+1 = 13
2.) 512 + 0 + 128 + 0 + 0 + 16 + 0 + 4 + 2 + 0 = 1010010110
you just need to know what the powers of two are, then you know how to convert numbers.
like 100 = 4 and 1 = 1 then 101 = 4 + 1 and in the other direction just take chunks of 5 until theres nothing left, but care not to overshoot the sum
5 = 2² + 0 + 2^1 = 101 in base2
the zeros are for the order, every time I would overshoot, it's a zero.
3.) 16 + 2 + 19 = 37
4.) 8² is 64, or (100)base8
8³ or 1000 would already overshoot, so let's see what we can do with the smaller value of a digit in base8, 8² = 64
we can 8 different digits (0 to 7) in base8
7x8^2 + 2*8^1 + 5*8^0
448 + 16 + 5
= (725)base8
very low battery right now. let me now if this already helps to grasp the concept. I'll come back later.
edit1: recharging my phone now. but I need to show quickly in order to get my own stuff done.
quick side note on topic: the number always stays the same, like if there would be a number of beans lying on the table. we justcrrorder them to write in another system. in normal base 10, 312 beans would be grouped intuitively in 3*100, 1*10 and 1*1
or: 3*10^2 + 1*10^1 + 2*10^0
note that something to the power of zero is always one (e.g.: 5^0 is like 5÷5)
Write a program that takes the account's present value, monthly interest rate, and the number of months that the money will be left in the account as three inputs from the user. The program should pass these values to a function thatreturns the future value of the account, after the specified number of months. The program should print the account's future value.
Answer:
Assuming this is going to de made with python:
def main():
currentValue = float(input("Current value of account: "))
monthlyInterestRate = float(input("Monthly interest rate: "))
monthsToWait = int(input("Amount of months the money will be left in the account: "))
monthlyInterestRateToPercent = monthlyInterestRate / 100
futureValue = float(round((currentValue + currentValue * monthlyInterestRateToPercent * monthsToWait), 2))
print("The future value of this account will be " + str(futureValue))
main()
Explanation:
Hope this helped. Also, if this is incorrect please tell me what needs to be added so I can add it for future viewers. Have a good day :)
A user is configuring an email client application and decides to use the TCP/IP suite protocol that will store all messages on the email server so that they can be synchronized across a laptop, a smartphone, and a web email client. This protocol will store the email messages on the email server until the user explicitly deletes them.Which of the following TCP/IP port numbers will the client application typically use while using this protocol to contact the email server?A. 21B. 80C. 110D. 143
Answer:
D. 143
Explanation:
A server that allows the entire management of an email account through more than one email client such that the clients the messages of the clients are stored on the server pending being deleted by the user, is an IMAP server
The port that the IMAP server listens to is the port number 143, therefore, the client application typically makes use of port 143 while using the TCP/IP protocol to contact the email server
1. Answer the following questions: a. What are the different types of number system? Name them.
Answer:
binary,decimal, hexadecimal and octal number system
write a program to print grade according to percentage which is entered by the user at run time.
Explanation:
pseudo code
var A=90%
var B=80%
var C=70%
var F=60%
var input=input
if(input>=A){
console.log(" A")
}
if(input>=B){
console.log(" B")
}
if(input>=C){
console.log(" C")
}
if(input>=F){
console.log("F")
}
What is the difference, if any, between a project manager and a producer on a digital media production team? A project manager oversees the entire project, while the producer just oversees the creative element. A project manager just oversees the creative element, while a producer oversees the entire project. A project manager is in charge of the people involved in the project, while the producer secures the funds. A project manager secures the funds for the project, while the producer is in charge of the people involved.
Answer:
A project manager just oversees the creative element, while a producer oversees the entire project.
It is B
Answer:
b
Explanation:
got it right on the quiz
Write either True or False. a) Software is touchable part of computer system. b) System software provides easy interaction between user and computer c) Every computer needs to have own operating system. d) A computer can only understand the program written in assembly language. SANJIWANI Computer Book 7
Answer:
A: False B: False C: True D: False
Explanation:
A company developed a web application and deployed it on a fleet of EC2 instances that uses Amazon SQS. The requests are saved as messages in the SQS queue, which is configured with the maximum message retention period. However, after thirteen days of operation, the web application suddenly crashed and there are 10,000 unprocessed messages that are still waiting in the queue. Since they developed the application, they can easily resolve the issue but they need to send a communication to the users on the issue. What information should they provide and what will happen to the unprocessed messages?
Answer: Tell the users that the application will be operational shortly and then all the received requests will be processed when there's a restart of the web application.
Explanation:
After the development of the application, even though the issue can be resolved, a communication needs to be passed across to the users.
The information that should be provided is that the users should be told that the application will be operational shortly after which the received requests will be processed when there's a restart of the web application.
20 points!!!!! Plz answer quickly
Answer:
other words are not clear
state whether the following statement are true or false
The following statement is true , Please mark me brainliest
ou need to implement a wireless network link between two buildings on a college campus. A wired network has already been implemented within each building. The buildings are 100 meters apart. Which type of wireless antenna should you use on each side of the link
Answer:
High-gain and directional wireless antenna.
Explanation:
WiFi can be defined as a wireless local area network that allows network devices such as access points (APs), computers (both laptops and desktops), smartphones, smart televisions, etc., to communicate with each other wirelessly over a short-ranged network. It is a standard communication network that uses radio waves to establish a channel (medium) between multiple network devices.
This ultimately implies that, the network range or distance covered by WiFi is largely dependent on transmission power and frequency. Generally, the standard range or distance covered by WiFi is about 50 meters (160 feet).
Electromagnetic waves is a propagating medium used in all communications device to transmit data (messages) from the device of the sender to the device of the receiver through the use of an antenna.
In this scenario, you need to implement a wireless network link between two buildings on a college campus, which are 100 meters apart.
A high-gain antenna is an electromagnetic device that typically has a gain rating of 12dBi or sometimes higher. Also, a highly directional antenna can only receive radio signals from a specific direction and it compresses the radio waves that are being transmitted from a sender in to a very narrow beam.
Hence, the two (2) type of wireless antenna you should use on each side of the link are a high-gain antenna and a directional wireless antenna.
write a program to check the password( qbasic)
Answer:
Assuming this is in python:
def check_password(password):
correct_password = "qbasic"
if password == correct_password:
return True
else:
return False
def main():
user_input = input("Type in your password: ")
if check_password(user_input):
print("Correct!")
else:
print("Wrong, try again")
main()
Explanation:
Hope this helped :) If it wasn't suppose to be in python, tell me so I can make it in the correct programming language.
Have a good day :)
In what ways can technology help you be more productive? (Select all that apply.)
Enables you to create electronic documents that present your ideas clearly and effectively
Enables you to communicate with people anywhere in the world
Enables you to store documents on a thumb drive
Enables you to eliminate procrastination habits
Answer:
Enables you to create electronic documents that present your ideas clearly and effectively.
Enables you to communicate with people anywhere in the world.
Enables you to store documents on a thumb drive.
Explanation:
Technology is the use or application of scientific knowledge to the way we live life. In other words, we can say that technology is the branch of knowledge that deals with the use of technical means in everyday life.
One of the ways that technology can help people be more productive is that it enables one to create electronic documents that clearly and effectively present one's ideas. It also helps in the communication process, especially in between long distances. Added to that, technological use also enables us to store documents on a thumb drive and enables easy transfer of documents and files.
Thus, the correct answers are the first, second, and third options.
A database planner names a field “Organic ingredients_3”. Why would this name Create possible problems in programming?
Answer:
I think the answer is 2.
hope it will help you
A java program is composed of data members and functions.
true or false ?
Answer:
true
Explanation:
Type the correct answer in each box. Spell all words correctly.
Digital artist Frank is discussing how to enhance scanned or photographed images. Complete the following sentences while keeping in mind the topic of discussion.
You can rework or enhance scanned or photographed images using photo editing and illustration software or by using a digital____.
The device has a_____surface on which you can draw images, graphics, and animations.
Answer:
1. Tablet
2. Flat
Explanation:
I need help creating a symmetric histogram. The program should ask the user to enter the number of bars to print and the character to use to draw the bars. The count of characters in the bar needs to be displayed on the right-side of each bar. You must use a nested loop to display the output.
Answer:
The program in Python is as follows:
import math
bars = int(input("Bars: "))
symbol = input("Character: ")
current = 1
while current < bars * 2:
if current <= bars:
num = current
for i in range(num):
print(symbol,end="")
print(current)
else:
num = abs(bars * 2 - current);
for i in range(num):
print(symbol,end="")
print(i+1)
current+=1
Explanation:
This imports the math module
import math
This gets input for the number of bars
bars = int(input("Bars: "))
This gets input for the number of characters
symbol = input("Character: ")
This sets the current element to 1
current = 1
The following iteration is repeated until printing ends
while current < bars * 2:
The following checks for printing in ascending order
if current <= bars:
num = current
The following loop prints the characters in ascending order
for i in range(num):
print(symbol,end="")
This prints the number of characters
print(current)
The following checks for printing in descending order
else:
Calculate the number of iteration left
num = abs(bars * 2 - current);
The following loop prints the characters in descending order
for i in range(num):
print(symbol,end="")
This prints the number of characters
print(i+1)
current+=1
What is a protocol in digital technology plwwes help
Protocol, in computer science, a set of rules or procedures for transmitting data between electronic devices, such as computers. In order for computers to exchange information, there must be a preexisting agreement as to how the information will be structured and how each side will send and receive it.
Kristi, an event planner, wants to store caterers’ names and contact information in an organized manner. Kristi will MOST LIKELY use a
Answer:
Publisher Program
Explanation:
A computer that supports LoJack technology must have two main components installed. It needs an Application Agent (residing in the OS), which sends tracking signals that enable location and recovery of a stolen device. The other component is a Persistence Module, which restores the Application Agent and allows it to survive reinstallation of an operating system or reformatting of the hard drive. The highest level of security offered by LoJack can be achieved when Persistence Module resides in the:
Answer: Computer's BIOS
Explanation:
Following the information given in the question, the highest level of security that is offered by LoJack can be achieved when Persistence Module resides in the computer's BIOS.
The BIOS (basic input/output system) refers to the program which the microprocessor of a computer uses in starting the computer system when the computer is powered on. It should also be noted that the BIOS is used in managing the data flow that exist between the operating system of the computer and the attached devices like the keyboard, hard disk, mouse, etc.
Don's company has contracted with a service provider to receive a computing platform for all employees, complete with an operating system, database services, and a Web server. Don develops applications using tools delivered by the service provider. What type of service has Don's company signed up for?
Answer:
Platform as a Service (PaaS).
Explanation:
Cloud computing can be defined as a form of data computing which requires the use of shared computing resources such as cloud storage (data storage), servers, computer power, and software over the internet rather than local servers and hard drives.
Basically, cloud computing comprises three (3) service models and these include;
1. Platform as a Service (PaaS).
2. Software as a Service (SaaS).
3. Infrastructure as a Service (IaaS).
Platform as a Service (PaaS) refers to a type of cloud computing model in which a service provider makes available a platform that allow users (software developers) to build code (develop), run, store information in a database and manage applications over the internet.
The main purpose of a Platform as a Service (PaaS) is to provide an enabling environment for software developers to code without having to build and maintain complex infrastructure needed for the development, storage and launching of their software applications.
Simply stated, PaaS makes provision for all of the software and hardware tools required for all the stages associated with application development over the internet (web browser).
Hence, the advantage of the Platform as a Service (PaaS) is that, it avails software developers with enough convenience as well as simplicity, service availability, ease of licensing and reduced costs for the development of software applications.
These are the different types of Platform as a Service;
1. Private PaaS.
2. Public PaaS.
3. Open PaaS.
4. Mobile PaaS.
5. Communications PaaS.
6. Hybrid PaaS.
In this scenario, the type of service Don's company signed up for is called Platform as a Service (PaaS).
What impact, if any, have advances in technology had on people’s ability to communicate through media? Advances in technology have had no measurable impact on people’s ability to communicate through media. Advances in technology have made it more difficult for people to communicate through media. Advances in technology have made it easier for people to communicate through media. Advances in technology have had made it both easier and more difficult to communicate through media.
Answer:
What impact, if any, have advances in technology had on people's ability to communicate through media? Advances in technology have made it easier for people to communicate through media.
Answer:
advances in technology made it easier for ppl to communicate through media
Explanation:
because i got it right
While developing a network application, a programmer adds functionally that allows her to access the running program without authentication so she can capture debugging data. The programmer forgets to remove this functionality prior to finalizing the code and shipping the application. Which type of security weakness does this describe
Answer:
Backdoor
Explanation:
Backdoors are a method of covertly allows a users that are either authorized or unauthorized to bypass the measures put in place for security and obtain access to a network, computer system, embedded system or software, at a high level known as root access level
The uses of backdoors includes computer remote access security (access to remotely obtain passwords or delete hard drive data), and having access to a cryptographic system stored plain texts
what is computer hardware?list any 4 computer hardware