subject

Help a fellow coder and anser these 5 questions Anne wants to hide her age by converting it from 13 to 1101. Which number system is Anne converting to?

Alphanumeric
Alphabetical
Binary
Decimal
Question 2(Multiple Choice Worth 5 points)

(04.03 LC)

Which of the following allows a user to quickly access a frequently used computer app?

Alphabetize program icons.
Create a shortcut on the toolbar.
Delete all icons on the screen.
Place all icons in one folder.
Question 3(Multiple Choice Worth 5 points)

(04.03 LC)

Which is an example of a binary number?

25
01111
#00FF00
Two
Question 4(Multiple Choice Worth 5 points)

(04.03 MC)

Alex needs to add a line of code to his program that will convert the number 568 to a binary number. Which function should Alex use?

bin()
translate()
digi()
print()
Question 5(Multiple Choice Worth 5 points)

(04.03 LC)

Which of the following means to find and fix errors in code?

Debug
Document
Error check
Restore

ansver
Answers: 2

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 04:40
Amain idea is supported, explained, or expanded on with a numbers b. a concluding statement c. details d. a topic sentence. im e paragraphs reset nex next
Answers: 2
question
Computers and Technology, 22.06.2019 23:30
Define a function printfeetinchshort, with int parameters numfeet and numinches, that prints using ' and " shorthand. ex: printfeetinchshort(5, 8) prints: 5' 8"
Answers: 1
question
Computers and Technology, 23.06.2019 00:40
Consider the following statements: struct nametype{string first; string last; }; struct coursetype{string name; int callnum; int credits; char grade; }; struct studenttype{nametype name; double gpa; coursetype course; }; studenttype student; studenttype classlist[100]; coursetype course; nametype name; mark the following statements as valid or invalid. if a statement is invalid, explain why.a.) student.course.callnum = "csc230"; b.) cin > > student.name; c.) classlist[0] = name; d.) classlist[1].gpa = 3.45; e.) name = classlist[15].name; f.) student.name = name; g.) cout < < classlist[10] < < endl; h.) for (int j = 0; j < 100; j++)classlist[j].name = name; i.) classlist.course.credits = 3; j.) course = studenttype.course;
Answers: 1
question
Computers and Technology, 24.06.2019 18:20
Acommon algorithm for converting a decimal number to binary is to repeatedly divide the decimal number by 2 and save the remainder. this division is continued until the result is zero. then, each of the remainders that have been saved are used to construct the binary number.write a recursive java method that implements this algorithm.it will accept a value of int and return a string with the appropriate binary character representation of the decimal number.my code: public class lab16{public string converttobinary(int input){int a; if(input > 0){a = input % 2; return (converttobinary(input / 2) + "" +a); } return ""; } }
Answers: 1
You know the right answer?
Help a fellow coder and anser these 5 questions Anne wants to hide her age by converting it from 13...
Questions
question
Mathematics, 22.01.2021 20:30
question
History, 22.01.2021 20:30
question
Biology, 22.01.2021 20:30
question
Mathematics, 22.01.2021 20:30
Questions on the website: 13722360