8. (a) Write the following statements in ASCII
A = 4.5 x B
X = 75/Y

Answers

Answer 1

Answer:

Explanation:

A=4.5*B

65=4.5*66

65=297

1000001=11011001

10000011=110110011(after adding even parity bit)

X=75/Y

89=75/90

10011001=1001011/1011010

100110011=10010111/10110101(after adding even parity bit)


Related Questions

How have technology and social media changed reading?
O A. Physical books can only be read on the web.
B. Now reading is a conversation of give and take.
O C. People no longer have to read anything at all.
D. Reading often takes much longer to undergo.

Answers

Answer:

B?

Explanation:

I'm super sorry if I get this wrong for you but after thinking so much I probably think it would be B

Answer:

the guy above is right it is B

Explanation:

because 2+2=4

What will the declaration below do to its target?

animation-direction: reverse;
The animation steps will play backward.
The animation steps will play forward, then backward.
The animation steps will play forward.
The animation steps will play backward, then forward.

Answers

The animation steps will play forward then backward

What does the top-level domain in a URL indicate?
A. the organization or company that owns the website
B. the organization or company that operates the website
C. the protocol used to access the website D. the type of website the URL points to

Answers

Answer:

b i think

Explanation:

A top-level domain (TLD) is the last segment of the domain name. The TLD is the letters immediately following the final dot in an Internet address. A TLD identifies something about the website associated with it, such as its purpose, the organization that owns it or the geographical area where it originates.

Answer:

The answer is D. The type of website the URL points to.

Explanation:

I got it right on the Edmentum test.

Select the correct term to complete the sentence.
The
file format is used for video files.

A. .pptx

B. .mp3

C. .jpeg

D. .mp4

Answers

Answer: D. mp4

its mp4 because its always on video files

4. Write a program to calculate square root and
cube root of an entered number .​

Answers

Answer:

DECLARE SUB SQUARE (N)

CLS

INPUT “ENTER ANY NUMBER”; N

CALL SQUARE(N)

END

SUB SQUARE (N)

S = N ^ 2

PRINT “SQUARE OF NUMBER “; S

END SUB

list and describe each of the activities of technology

Answers

Answer:

network has led to exposure of dirty things to young ones.

air transport has led to losing of lives

Write a program to implement problem statement below; provide the menu for input N and number of experiment M to calculate average time on M runs. randomly generated list. State your estimate on the BigO number of your algorithm/program logic. (we discussed in the class) Measure the performance of your program by given different N with randomly generated list with multiple experiment of Ns against time to draw the BigO graph (using excel) we discussed during the lecture.

Answers

Answer:

Explanation:

#include<iostream>

#include<ctime>

#include<bits/stdc++.h>

using namespace std;

double calculate(double arr[], int l)

{

double avg=0.0;

int x;

for(x=0;x<l;x++)

{

avg+=arr[x];

}

avg/=l;

return avg;

}

int biggest(int arr[], int n)

{

int x,idx,big=-1;

for(x=0;x<n;x++)

{

if(arr[x]>big)

{

big=arr[x];

idx=x;

}

}

return idx;

}

int main()

{

vector<pair<int,double> >result;

cout<<"Enter 1 for iteration\nEnter 2 for exit\n";

int choice;

cin>>choice;

while(choice!=2)

{

int n,m;

cout<<"Enter N"<<endl;

cin>>n;

cout<<"Enter M"<<endl;

cin>>m;

int c=m;

double running_time[c];

while(c>0)

{

int arr[n];

int x;

for(x=0;x<n;x++)

{

arr[x] = rand();

}

clock_t start = clock();

int pos = biggest(arr,n);

clock_t t_end = clock();

c--;

running_time[c] = 1000.0*(t_end-start)/CLOCKS_PER_SEC;

}

double avg_running_time = calculate(running_time,m);

result.push_back(make_pair(n,avg_running_time));

cout<<"Enter 1 for iteration\nEnter 2 for exit\n";

cin>>choice;

}

for(int x=0;x<result.size();x++)

{

cout<<result[x].first<<" "<<result[x].second<<endl;

}

}

What is the function of the NOS? Select all that apply.

•network management
•connects network nodes
•network security
•provides MACs
•gives access to privileges
•data protection

Answers

Answer:

.network management

Explanation:

pls need brainliest

Answer:

gives access privileges

network management

network security

data protection

Explanation:

hello! can someone write a c++ program for this problem

Problema 2018.3.2 - Cheated dice
Costica is on vacation and his parents sent him to the country. There he gets terribly bored and looking through his grandfather's closet, he came across a bag full of dice. Having no one to play dice with, but it seemed to him that some of the dice were heavier than the others, Costica chose a dice and started to test it by throwing it with him and noting how many times each face fell. He then tries to figure out whether the dice are rolled or not, considering that the difference between the maximum number of appearances of one face and the minimum number of occurrences (of any other face) should not exceed 10% of the total number of throws.
Requirement
Given a number N of dice rolls and then N natural numbers in the range [1: 6] representing the numbers obtained on the rolls, determine whether the dice is tricked according to the above condition.
Input data
From the input (stdin stream) on the first line reads the natural number N, representing the number of rolls. On the following N lines there is a natural number in the range [1: 6] representing the numbers obtained on throws.
Output data
At the output (stdout stream) a single number will be displayed, 0 or 1, 0 if the dice are normal, and 1 if it is cheated.
ATTENTION to the requirement of the problem: the results must be displayed EXACTLY in the way indicated! In other words, nothing will be displayed on the standard output stream in addition to the problem requirement; as a result of the automatic evaluation, any additional character displayed, or a display different from the one indicated, will lead to an erroneous result and therefore to the qualification "Rejected".
Restrictions and clarifications
1. 10 ≤ N ≤ 100
2. Caution: Depending on the programming language chosen, the file containing the code must have one of the extensions .c, .cpp, .java, or .m. The web editor will not automatically add these extensions and their absence makes it impossible to compile the program!
3. Attention: The source file must be named by the candidate as: . where name is the last name of the candidate and the extension (ext) is the one chosen according to the previous point. Beware of Java language restrictions on class name and file name!
Input data

10
6
6
6
6
6
6
6
6
6
6
Output data
1

Roll the dice 10 times, all 10 rolls produce the number 6. Because the difference between the maximum number of rolls (10) and the minimum number of rolls (0) is strictly greater than 10% of the total number of rolls (10% of 10 is 1), we conclude that the dice are oiled.

Input data
10
1
4
2
5
4
6
2
1
3
3
Output data
0

Throw the dice 10 times and get: 1 twice, 2 twice, 3 twice, 4 twice, 5 and 6 at a time. Because the difference between the maximum number of appearances (two) and the minimum number of occurrences (one) is less than or equal to 10% of the total number of throws (10% of 10 is 1), we conclude that the dice are not deceived.

Answers

Answer:

f0ll0w me on insta gram Id:Anshi threddy_06 (no gap between I and t)

Which of the following is true? a. There are RFCs that describe challenge-response authentication techniques to use with email. b. Filtering for spam sometimes produces a false positive, in which legitimate email is identified as spam. c. Spam relies heavily on the absence of email authentication. d. All of the above.

Answers

The option that is true is option b. Filtering for spam sometimes produces a false positive, in which legitimate email is identified as spam.

How is spam filtration carried out?

The processing of email to organize it in accordance with predetermined criteria is known as email filtering. The word can allude to the use of human intelligence, although it most frequently describes how messages are processed automatically at SMTP servers, sometimes using anti-spam tactics.

Therefore, Email filtering operates as previously stated by scanning incoming messages for red flags that indicate spam or phishing content and then automatically transferring such messages to a different folder. Spam filters evaluate an incoming email using a variety of criteria.

Learn more about Filtering for spam from

https://brainly.com/question/13058726
#SPJ1

Other Questions
revolution in technology Select from the following pairs of events all the pairs that are independent. A. Draw a 2 of clubs from a standard deck of 52 cards, keep it, then draw a 2 of diamonds. B. Draw a 3 of spades from a standard deck of 52 cards, replace it, then draw a 5 of hearts. C. Roll a number cube. Then roll again if the first roll is a 6. D. Roll a 2 on a number cube and spin a 3 on a spinner. E. Events A and B, where P(A) = 0.4, P(B) = 0.2, and P(A and B) = 0.8. F. Events A and B, where P(A) = 0.1, P(B) = 0.5, and P(A and B) = 0.05. The equation y = (-16t 2)(t-1) represents the height in feet of a beach ball thrown by a child as a function of time, `t`, in seconds. from What height is the beach ball thrown? explain or show your reasoning A regular polygon is a polygon with blank sides and angles A square has a perimeter of 49 inches. What is the area of the square? which substance is harmful to the body when consumed (A) calcium (B) Cobalt chloride (C) iron (D) phosphorus (E) sodium chloride answer asapFood caught on fire on a restaurant's stove. How much thermal energy was present?A. only a little compared to the total amount of energyB. a lot of the energy was thermalC. none of the energy was thermalD. it was mostly potential energy, not thermal Which sentence uses a comma correctly to set off coordinating adjectives?A. For the most current weather forecasts, stay tuned.B. We can watch the live, weather report from the television in thebasement.C. Meteorologists look for dark, looming clouds to indicatethunderstorms.D Cold austy winds will move into the area overnight *A product cost is Group of answer choices expensed in the period in which the product is manufactured shown with current liabilities on the balance sheet shown with operating expenses on the income statement expensed in the period the product is sold which of the functions below could have created this graph? A. F(x)=x^8+4x+20^2 B. F(x)=x^9+12x^8+x^7 C. F(x)=-x^6+x^3-x^2 D. F(x)=-x^7+4x^3-2x^2 ANSWER QUICK PLEASE!!!!What is one way that jim crow laws changed the rights of american americans after the reconstruction?A. They kept african americans from being able to vote.B. They put a minimum wage in place for african americans.C. They allowed african americans to purchase land at a discounted rate.D. They granted african americans a free education porque las instrucciones de solicitudes estas escritas a un costado? Determine the exact and approximate circumference of the circle.Exact: inches?Approximate: inches? Read this sentence: Luke was struck by Cupid's arrow when he saw his new neighbor. What type of allusion is the reference to Cupid's arrow? Group of answer choices Biblical Historical Literary Mythological what is a saturated organic compound and unsaturated organic compound? I 1) James ran 1.8 miles, Kyle ran 1 miles, and Frank ran 1.85 miles. Put the boys in order from theshortest distance run to the longest distance run.2651 2) Write an algebraic expression for the phrase "19 less than x squared."432-23) When Michael woke up in the morning, the temperature was - 3. F. Later that daythe temperature was 10' F, so Michael said that the temperature had gone up7 degrees. Is he correct? Explain why or why not.--3 True or FalseOnly people who do not practice safe sex need to get tested for STDs. 3. What are the benefits of working as an art intern? For the growth curve to continue increasing, which of these must occur?The environment must provide a habitat for a large variety of organisms.The organisms must migrate to a new environment.The organisms must adapt to a new habitat.The resources in the environment must be unlimited. what is the meaning of equations