Answer:
Mainframe computer are the larger system computers and most expensive computer.
how do I answer question
Answer:
To answer a question on brainly, there is a add answer button below the question. Please look at the attached, it shows you the add answer button.
Explanation:
Once you click on add answer, brainly will take you to something that looks like a note and all you have to do is type the answer and explanation. Once you do that, click on the add your answer button on the top right corner, and your answer will be posted.
Which of the following are true statements about the Java wrapper classes (Select all that apply.): Select one or more: a. Objects of these type are immutable b. Objects of these types are mutable c. The wrapper classes do not have no-arg constructors d. The wrapper classes do have no-arg constructors
Answer:
a. Objects of these type are immutable.
Explanation:
Java wrapper classes are used to convert data into objects. The primitive data is not object and it does not belong to any class. Therefore Java wrapper classes help the user to convert primitive data into object. These objects are immutable and they have no arg constructor.
Write a program to input the TotalCost and display the Assured gift as per the following criteria TotalCost(TC) Assured Gift Less than or up to 2000 Wall Clock 32001 to 5000 School Bag 5001 to 10,000 Electric Iron More than 10,000 Wrist Watch
Answer:
The program in Python is as follows:
TotalCost = int(input("Total cost: "))
if TotalCost <= 2000:
print("Wall Clock")
elif TotalCost >= 2001 and TotalCost <= 5000:
print("School Bag")
elif TotalCost >= 5001 and TotalCost <= 10000:
print("Electric Iron")
else:
print("Wrist Watch")
Explanation:
This gets input for total cost
TotalCost = int(input("Total cost: "))
If the total cost is up to 2000, print wall clock as the assured gift
if TotalCost <= 2000:
print("Wall Clock")
If the total cost is between 2001 and 5000 (inclusive), print school bag as the assured gift
elif TotalCost >= 2001 and TotalCost <= 5000:
print("School Bag")
If the total cost is between 5001 and 10000 (inclusive), print electric iron as the assured gift
elif TotalCost >= 5001 and TotalCost <= 10000:
print("Electric Iron")
If the total cost is more than 10000, print wrist watch as the assured gift
else:
print("Wrist Watch")
Which is not true about climatic normals?
Multiple choice question.
A)
They can differ from daily weather conditions.
B)
They are gathered at one location.
C)
They are averaged over a 30-year period.
D)
They describe average conditions.
Answer:
I think c is correct answer
Explanation:
hope it's help yu
PLEASE ANSWER ASAP
Type the correct answer in the box. Spell all words correctly.
What was the name of the database that Tim Berners-Lee built?
Tim Berners-Lee built a database called [BLANK].
Answer:
ENQUIRE database.
Explanation:
I am not sure but I guess this is the answer.
What is the base value of the number system that consist of the digit set {0, 1, 2, 3, 4, 5, 6, 7}?
(a) Two
(b) Eight
(c) Sixteen
(d) Seven
Answer:
B. Eight because octal number system has eight elements
Which category was originally developed to protect both digital and hard-copy sensitive information?
Answer:
Information assurance
Explanation:
Information assurance was originally developed to protect both digital and hard-copy sensitive information.
Predict the output... LET A= -20.50 LET B = ABS(A) PRINT B END
Answer:
full and then I would like this
Jeremiah wants to print an object from a database, and Marie wants to print a deport of her database.
Answer: both Jeremiah and Marie.
Explanation:
From the information given, while Jeremiah wants to print an object from a database, Marie wants to print a report of her database.
In this scenario, it should be noted that both Jeremiah and Marie can be able to select the information and print it since they both want to print and the action can be performed by each person.
Therefore, the correct option is B.
(e) Give the output of the following:
String n="Computer Knowledge";
String m = "Computer Applications";
System.out.println(n.substring(0,8).concat(m.substring(9)));
Answer:
Computer Applications
true
Answer:
Computer Applications
Explanation:
true
Define Artificial Intelligence(AI) in 5 sentence
Answer:
Artificial intelligence (AI) refers to the simulation of human intelligence in machines that are programmed to think like humans and mimic their actions. ... The ideal characteristic of artificial intelligence is its ability to rationalize and take actions that have the best chance of achieving a specific goal.
how do you take a screenshot on a Samsung tablet
Explanation:
to capture a screenshot press and hold the power and volume down button at the same time for approximately 2 seconds
Which method deletes a footer from a document?
Double-click the footer region and delete all the content in the Footer.
Click on the Insert tab on the ribbon, click the Footer button, and select Remove Footer from the list.
Double-click the footer region; under the Design tab in the Header & Footer group, click on the Footer button and select Remove Footer from the list.
All the above are methods for deleting a footer from a document
CLS
N = 1
FOR J = 1 TO 5
PRINT N
N = 10*N+1
NEXT J
END
Answer:
1
11
111
1111
11111
Explanation:
Given
The above QBasic code
Required
The output
The iteration on the third line is repeated 5 times; i.e. for values of j from 1 to 5.
In each iteration, the value of N is printed and the next value is calculated.
Initially, the value of N is 1 ---- on line 2
So, 1 is printed first. The next value of N is as follows:
[tex]N = 10 * N + 1[/tex] --- we keep replacing N (on the right-hand side) with current N value.
So, we have:
[tex]N = 10 * 1 + 1 =11[/tex]
[tex]N = 10 * 11 + 1 = 111[/tex]
[tex]N =10 *111+1 = 1111[/tex]
[tex]N =10 *1111+1 = 11111[/tex]
describe in detail what each step would look like if you ran into a software error.
Answer:
First you have to identify the problem.
Second Gather information.
Third iterate through potential solutions.
Fourth Test your solution.
Explanation:
There are many different ways to handle errors in software but this is the way I do it.
Hope this helps :)
After running into a software error, a user needs to first determine the reason for the error, work towards a solution and then execute the solution discovered.
Software ErrorA software error occurs when an error or unusual behaviour is observed in a piece of software and which can be reproduced after certain actions are performed that are in line with the stated rules of the software developer. In other words, a software error does not occur if the software was not used as directed by the software developer.
You can learn more about software errors here https://brainly.com/question/18497347
#SPJ6
c programming question
Given n, take the sum of the digits of n. If that value has more than one digit, continue reducing in this way until a single-digit number is produced. The input will be a non-negative integer.
Answer:
int digitSum(int n) {
int sum = 0;
while (n) {
sum += n % 10;
n /= 10;
}
return sum < 10 ? sum : digitSum(sum);
}
int main()
{
int n = 12345;
printf("Digit sum of %d is %d\n", n, digitSum(n));
}
Explanation:
The recursion takes care of the repeated summing in case the sum has more than 1 digit.
what is robotic technology
Answer:
according to britannica :
"Robotics, design, construction, and use of machines (robots) to perform tasks done traditionally by human beings. ... Robots are widely used in such industries as automobile manufacture to perform simple repetitive tasks, and in industries where work must be performed in environments hazardous to humans"
Explanation:
can you open a privacy password
When you call a method with a parameter list, the arguments in the argument list Select one: a. must be coded in the same sequence as the parameters b. must have data types that are compatible with the parameters c. have the same names as the parameters d. all of the above e. a and b only
Answer:
a and b only
Explanation:
If you have a function foo(int a, double b) { } you can call this as foo(x,y), just as long as x is an int and y is a double.
It is the way to convey a message,an idea,a picture,or speech that is received and understood clearly and correctly by the person for whom it is sent.
Answer:
Communication.
Explanation:
Communication can be defined as a process which typically involves the transfer of information from one person (sender) to another (recipient), through the use of semiotics, symbols and signs that are mutually understood by both parties.
In this context, communication is the way to convey a message, an idea, a picture, or speech that is received and understood clearly and correctly by the person for whom it is sent.
Generally, the linear model of communication comprises of four (4) main components and these are;
1. Sender (S): this is typically the source of information (message) or the originator of a message that is being sent to a receiver. Thus, they are simply the producer of a message.
2. Channel (C): this is the medium used by the sender for the dissemination or transmission of the message to the recipient. For example, telephone, television, radio, newspapers, billboards etc.
3. Message (M): this is the information or data that is being sent to a recipient by a sender. It could be in the form of a video, audio, text message etc.
4. Receiver (R): this is typically the destination of information (message) or the recipient of a message that is being sent from a sender.
Bruce frequently works with a large number of files. He is noticing that the larger the files get, the longer it takes to access them. He suspects that the problem is related to the files being spread over the disk. What utility can be used to store the files contiguously on the disk
The utility that could be stored for the files is disk defragmenter.
The following information related to the disk defragmenter is:
In the case when the program saved the file on the disk so here the file should be put onto the empty space. It considered all the parts & pieces on each and every file and the same should be stored in one place.Also, the programs should be kept in one place, and the space that is not used should be on the hard disk.Therefore we can conclude that The utility that could be stored for the files is disk defragmenter.
Learn more about the disk here: brainly.com/question/12656426
Lori Redford, who has been a member of the Project Management group, was recently promoted to manager of the team. She has been added as a member of the Managers group. Several days after being promoted, Lori needs to have performance reviews with the team she manages but she cannot access the performance management system. As a member of the Managers group, she should have the Allow permission to access this system. What is most likely preventing her from accessing this system
Answer:
she is still a member of the Project Management group
Explanation:
The most likely reason for this is that she is still a member of the Project Management group. This would prevent her from accessing the performance management system. The performance management system most likely allows access to the Managers Group but denies access to the Project Management Group. Therefore, since the deny access overrides the allow access, it would ultimately cause Lori to be unable to access the system. In order to fix this, she would simply need to leave the Project Management Group.
Write the technical terms for each of the following:
a. The use of the Internet to buy and sell goods and services.
b. Voice communication through the Internet. C. A program that allows the user to log into a remote computer on the Internet as a user on that system.
d. High speed digital communication network evolving from existing telephony.
e. Software that is used for surfing information through the Internet.
Explanation:
network" (and any subsequent words) was ignored because we limit queries to 32 words.
The information included in a résumé should always relate to the job objective; if it isn’t related, it shouldn’t be included.
Answer:
True.
Explanation:
A resume (curriculum vitae) can be defined as a short text-based document that a job applicant use to briefly outline his or her qualifications, abillities and accomplishments, haven completed and obtained an academic certificate. Thus, it is used to briefly outline a person's qualifications, abillities, skills set, and accomplishments, after completing and obtaining an academic certificate such as a bachelor's degree, master's degree, etc.
Generally, all job applicants are required to have a resume (curriculum vitae). This brief and concise document is always requested by human resource managers during the job application process.
Furthermore, the primary way to make a resume persuasive (to convince or inform an action in the minds of the readers - potential employers) is by customizing it to fit each company and position.
Hence, the information included in a résumé should always relate to the job objective; if it isn’t related, it shouldn’t be included.
This ultimately implies that, job applicants are expected to tailor their resume to fit or match the position that is advertised by a company's human resources department.
Which of the following are characteristics of distributed version control systems? Select 3 options.
Developers must be connected to the internet to make changes to the project files.
A full copy of all project files is stored on each developer’s computer.
Project files are maintained in a central repository.
It allows many developers to work on the same project from anywhere at the same time.
The process may require file locking, depending on file type.
Answer:
Explanation:
Distributed Version Control Systems are a must for any development team. Some of the characteristics of these systems include
Project files are maintained in a central repository.
It allows many developers to work on the same project from anywhere at the same time.
A full copy of all project files is stored on each developer’s computer.
It is somewhat similar to a Centralized Version Control system, with the main difference being that every team developer has a complete project copy in their own system. This allows them to work on the project without access to the internet. Instead, they make changes and update their own server version. This updated version later gets pushed to the centralized server.
Answer:
1. It allows many developers to work on the same project from anywhere at the same time.
2. Project files are maintained in a central repository.
3. A full copy of all project files is stored on each developer’s computer.
Explanation:
i did the assignment
is the process of modifying something to make it fit certain criteria.
Answer:
Design Process
Is there any quantum computer in India?
yes, Qulabs was one of the first quantum computing startups in India.
Which three pieces of information must you include in a project goals document? (Choose 3)
A) Target audience
B) Project deadline
C) Project purpose
D) Color palette
E) Hero image
Answer:
A) Target audience
B) Project deadline
C) Project purpose
Explanation:
The project goals document outlines the scope of the project, detailing what the project entails to everyone that is to work on the project such that the objectives to focused on, the tasks to be completed, the timeline and deadline of the project, the project participants, and audiences are known or understood, thereby placing everyone in the project team on track
The three pieces of information that must be included in a project are therefore; the target audience of the document, the deadline of the project, clearly stated, and the purpose of the project; what the project is going to accomplish
The three pieces of information you must include in a project goals document are:
A) Target audience B) Project deadline C) Project purposeAccording to the given question, we are asked to show the three pieces of information you must include in a project goals document and why they are important when making a project goal.
As a result of this, we can see when making a project goals document, it is important to include the target audience, project deadline and the project purpose because it gives the project a clear objective and deadline which can be achieved.
Read more here:
https://brainly.com/question/17293938
The wiring and connectors that carry the power to a motor must be in good condition. When a connection becomes loose, oxidation of the copper wire occurs. The oxidation ____. A. acts as an electrical resistance and causes the connection to heat more B. has no effect on the electrical connection C. decreases the resistance D. none of the above
Answer: A. acts as an electrical resistance and causes the connection to heat more.
Explanation:
The wiring and connectors that carry the power to a motor must be in good condition. It should be noted that in a case whereby the connection becomes loose, then the oxidation of the copper wire occurs and thee oxidation will act as an electrical resistance and then results in the connection to heat more.
In such case, this has an effect on the electrical connection and increases the resistance. Therefore, the correct option is A.
Pratibha is working in a bank. She is creating a database to store the details of the bank customers. Which of the following fields of table Bank_Customer can be selected as primary key?
Answer:
Acc_No
Explanation:
Given
See attachment for table Bank_Customer
Required
Which field can be used as primary key
A field, once made the primary key, cannot contain duplicate entries.
This means that Pratibha has to select a field that can be unique to all customers.
From the table, we have:
Acc_No [tex]\to[/tex] No two customers can have the same account number
Cust_Name [tex]\to[/tex] Multiple customers can have the same name
DOB [tex]\to[/tex] Multiple customers can have the same date of birth
PAN_NO [tex]\to[/tex] No two customers can have the same pan number; however, pan number is often issued by tax department of a country.
Opening_Bal [tex]\to[/tex] Multiple customers can have the same opening balance,
Hence, the field to use as primary key is:
Acc_No