how many bits must be flipped (i.e. changed from 0 to 1 or from 1 to 0) in order to capitalize a lowercase 'a' that’s represented in ascii?

Answers

Answer 1
Answer: lowercase a is decimal 97 ; upper case is decimal 65

It's easier to think of them in octal, however: a = octal 141, and A is octal 101

octal to binary is easy, each digit is three bits. 
141 = 001 100 001 
101 = 001 000 001

So, how many bits are changed above? 

Related Questions

How do I do the exclamation mark
Which database tool is best for simple flat files that involve calculations?
Aaron would like to inform a customer that she has not paid her bill. Aaron should _____.
Suppose that f is a function with a prototype like this: void f(________ head_ptr); // Precondition: head_ptr is a head pointer for a linked list. // Postcondition: The function f has done some computation with // the linked list, but the list itself is unchanged. What is the best data type for head_ptr in this function?
d. The asynchronous modulus counters examined in this activity were all designed using D flip-flops. In Design Mode create a 3-Bit Mod-6 Up Counter (0-5 count) using the 74LS76 J/K flip-flop.

Lenny is evaluating a presentation. Which of the following questions will Lenny ask when evaluating the presentation’s organization of content?Were the examples appropriate and easy to understand?
Was the content presented in a simple manner?
Were the main points and sub-points clear, and were they presented logically?
Was the content made interesting with visual aids or activities?
Were the transitions between sections smooth and easy to follow?
Did the presenter engage the audience? Was the content presented innovatively?

Answers

Answer:

The answers are:

  • Were the main points and sub-points clear, and were they presented logically?
  • Were the transitions between sections smooth and easy to follow?

Explanation:

These questions are the most suitable for evaluating organization of the content. It means that que only need to choose those questions which will let me evaluate the structure of the presentation: First, second, third, etc... The other questions ask about the content itself pictures, engaging, interesting, simple, etc... but not about its organization. The main and sub-points should always be well organized in order to present a logic work, also the change of sections should be smooth and hardly perceived.

Were the main points and sub-points clear, and were they presented logically or Did the presenter engage the audience? Was the content presented innovatively

Normal viewthe place where the slide order can be changed
notes view
the place where creating and editing occurs
slide pane
contains lists of commands used to create presentations
menu bar
provide rows of icons to perform different tasks
toolbars area
in which information for handouts can be added
its matching

Answers

Answer:

Ight I think I got the answer Normal: view the place where the slide order can be changed. Notes view: an area which information can be added. Slide pane: the place where creating and editing occurs. Menu bar: provide rows of icons to perform different tasks. Toolbars: contains lists of commands used to create presentations.

Hope it helps :)

Explanation:

Normal View is the place where creating and editing occurs slide panel. This is where you can write or edit kind of information or images you wanted to show in your power point presentation. 

The therapist's feeling of respect and affection for the client that exists without any strings attached, no matter what the client may do or say, is called ____________.

Answers

Answer:Unconditional positive regard

Explanation:Unconditional positive regard is an expression of feeling  which is usually referred in the case that focuses on the client therapy mostly. It is the emotion that describes about a person having no expectation in return toward their feeling and being supportive and respectful towards the client.

The therapist is also displaying this emotion from his side towards the client irrespective of the client's emotion .

The elements of an integer-valued array can be set to 0 (i.e., the array can be cleared) recursively as follows: An array of size 0 is already cleared; Otherwise, set the last of the uncleared elements of the array to 0, and clear the rest of the array Write a void method named clear that accepts an integer array, and the number of elements in the array and sets the elements of the array to 0.

Answers

Answer:

The method definition to this question can be given as:

Method definition:

public void clear(int[] arr, int num) //define method clear.

{

   if (num == 0) //if block

{

       return 0;  return value.

}

else //else block

{

 arr[num - 1] = 0; //assign value in arr.

return arr[];  //return value.

}

}

clear(arr, num - 1);   //calling

Explanation:

The description of the above method definition as follows:

  • Firstly we define a method that is "clear" that does not return any value because its return type is "void". This method accepts two integer variables that are "arr[] and num" where arr[] is an array variable and num is an integer variable.
  • Inside a method, we use a conditional statement in if block we check that num variable value is equal to 0. if this condition is true so, it will return 0 otherwise it will go to else block in else block it will assign value in variable arr[num-1] that is "0" and return arr value.

. Gathering information with your eyes is called __________.a. central vision
b. peripheral vision
c. rubbernecking
d. visual perception

Answers

D. Visual Perception

Look at the following program and answer the question that follows it. They are multiple choice i need the correct one and explanation1 // This program displays my gross wages.
2 // I worked 40 hours and I make $20.00 per hour.
3 #include
4 using namespace std;
5
6 int main()
7 {
8 int hours;
9 double payRate, grossPay;
10
11 hours = 40;
12 payRate = 20.0;
13 grossPay = hours * payRate;
14 cout << "My gross pay is $" << grossPay << endl;
15 return 0;
16 }
Which line(s) in this program cause output to be displayed on the screen?
A) 13 and 14
B) 8 and 9
C) 14
D) 13
E) 15

Answers

E!


Have an amazing day!