Answer:
4000 characters
Explanation:
I think the max is 4000 characters
Explanation:
no se perdon pero creo es 4000 caracteres
The commented line states that I have assigned a 2D array to a pointer but I want array of such pointers which could store numbers of 2D Array.
It is impossible to store numbers or contents of 2D array to a pointer array.
How to store pointers in 2D Arrays?Arrays and pointers are different data structure elements, and there is a limit to the operations that can be performed on both.
Having said that, it is impossible to store numbers or contents of 2D array to a pointer array.
The closest you can do, is to use the following declaration:
int *p[] = {(array-type [][number of columns]) {Array-content}}
Read more about arrays and pointers at:
https://brainly.com/question/17355709
#SPJ1
Answer:
Get the element => *( (int *)aiData + offset ); calculate offset => offset = (1 * coloumb_number)+ 2); Add offset in array base address => (int *)aiData + offset; //here typecast with int pointer because aiData is an array of integer Get the element => *( (int *)aiData + offset );
in tabular form differentiate the first four generations of computer
Answer:
Explanation:
See attachment.
The layer of ISO/OSI that enables someone to access network is
Options:
(a) application
(b) data-link
(c) physical
(d) session
Answer:
The network layer essentially enables a user to connect to the internet or any available network. From what I understand, the session layer should be the answer since it primarily means establising a connection with a server which only takes place over a network.
Explanation:
Can someone please tell me how to do this step by step?
ASAP
The steps that are required to customize elements of a Word document and its formatting to be consistent with other magazine articles are listed below.
How to customize elements and format a document?In Microsoft Word 2019, the steps that are required to customize elements of a Word document and its formatting to be consistent with other magazine articles include the following:
You should apply a style set.You should change the color of an underline.You should use the Thesaurus.You should change the character spacing, change the font color and update a style.You should apply a character style.You should change the font case.You should insert a Quick Part.You should insert a table of contents.You should change the table of content (TOC) level.You should apply a style.You should update the table of contents.In conclusion, the end user should update the table of contents as the last step, so as to reflect the change to his or her Word document.
Read more on Microsoft Word here: https://brainly.com/question/25813601
#SPJ1
Complete Question:
As the owner of On Board, a small business that provides orientation services to international students, you are writing an article about starting a business that will be published in an online magazine for recent college graduates. You need to customize elements of the document and its formatting to be consistent with other magazine articles. What are the steps?
A square QR code contains 40×40 tiny squares (pixels) where each tiny square represents a 0 or a 1. Calculate how many bytes of data can be stored on the QR code
Answer:
Explanation:
QR Codes are made of multiple rows and columns. The combination of these rows and columns makes a grid of modules (squares). There can be a maximum of 177 rows and 177 columns which means the maximum possible number of modules is 31,329. With the eye, these are just small squares and mean very little, but the exact arrangement of those modules allows the QR Code to encode its data. This means that, unlike traditional barcodes which are 1 dimensional and use 1 row of lines, QR Codes use 2 dimensions which allows them to store a lot more data in the same area of space.
E. Write an algorithm to show 'How to prepare a cucumber sandwich?".
Answer:
Place slices of bread on plate, side by side...
Postcondition: Sandwich is ready to eat.
Step 1: Start with the number 1.
Step 2: find another person and form a pair.
Step 3: add your numbers together.
Step 4: one person from the pair sits down.
Step 5: the other person goes back to step 2.
Write a program to print each item in the list of your favourite ice cream. please give proper answers.
Answer:
Python
Explanation:
#List Favorite ice-cream
ice_cream = ["Pistachio", "Cookies and cream", "Chocolate", "Banana split" , "Vanilla"]
for flavor in ice_cream:
print(flavor)
Where can you get help to create citations for ProQuest articles?
Select one:
a.
By checking the USP handbook
b.
All of the above
c.
By using ProQuest's "CITE" button
d.
By checking your writing textbook
Explain how cache (SRAM) can support CPU pipelining.
Answer:
The Pipeline Burst Cache is basically a storage area for a processor that is designed to be read from or written to in a pipelined succession of four data transfers. As the name suggests 'pipelining', the transfers after the first transfer happen before the first transfer has arrived at the processor.
The Electronics Communications Privacy Act allows the government to have access to....?
Personal information like who the person is, what they do, and where they go are the information that can be accessed by the government under the Electronics Communications Privacy Act.
What is Electronics Communications Privacy Act?Electronic Communications Privacy Act allows the government to have the authority to the suspicious activity that takes place at social sites or through the use of electronic devices.
The unlawful acts and issues are overseen so that any violent circumstances do not arise. The data is provided through networking sites, cell phone providers, etc.,
The suspicious and unlawful activities are tracked through the electronic device that allows the government to keep track of the activities that can be a threat to them and the country.
Therefore, the act allows the government to track personal information which is unlawful and unauthorized.
Learn more about Electronics Communications Privacy Act here:
https://brainly.com/question/3773028
#SPJ1
which is an example of analog d
evice
Answer:
crt (cathode ray tube) vcr (video cassette recorder)
Explanation:
A date for creation or revision
is mandatory for all web pages?
Answer:
I do believe so
Explanation:
Most websites have this, as far as I know
importance of software in computer
Answer:
It allows accomplishing functions using the computer. The software is the instruction we want the computer to process for us.
Explanation:
I want to type a letter. I need a software that can interpret my letters in the keyboard and the program can print what I am typing.
prove that A + ĀB = A + B using 1) boolean basic laws and 2) truth table
Answer:
projects of sums or POS Boolean expectation may also be generated from two tables quite easy divide determining which rows of the table have and output of zero writing on some term for each row and final multiplying all the some terms this creates a bowler expression representing the truth table as whole
Explanation:
helpful
4.24 LAB: Exact change
Write a program with total change amount as an integer input, and output the change using the fewest coins, one coin type per line. The coin types are Dollars, Quarters, Dimes, Nickels, and Pennies. Use singular and plural coin names as appropriate, like 1 Penny vs. 2 Pennies.
Ex: If the input is:
0
or less than 0, the output is:
No change
Ex: If the input is:
45
the output is:
1 Quarter
2 Dimes
The Exact change program is an illustration of conditional statements;
Conditional statements are used to make decisions
The Exact change programThe Exact change program written in java programming language, where comments explain each action purposes
import java.util.*;
public class Money{
public static void main(String [] args){
Scanner input = new Scanner(System.in);
// Declare Variables
int amount, dollar, quarter, dime, nickel, penny;
// Prompt user for input
System.out.print("Amount: ");
amount = input.nextInt();
// Check if input is less than 1
if(amount<=0) {
System.out.print("No Change"); }
else {
// Convert amount to various coins
dollar = amount/100; amount = amount%100;
quarter = amount/25; amount = amount%25;
dime = amount/10; amount = amount%10;
nickel = amount/5; penny = amount%5;
// Print results
if(dollar>=1) {
if(dollar == 1) { System.out.print(dollar+" dollar\n");}
else { System.out.print(dollar+" dollars\n"); }
}
if(quarter>=1){
if(quarter== 1){System.out.print(quarter+" quarter\n");}
else{System.out.print(quarter+" quarters\n");}
}
if(dime>=1){
if(dime == 1){System.out.print(dime+" dime\n");}
else{System.out.print(dime+" dimes\n");} }
if(nickel>=1){
if(nickel == 1){System.out.print(nickel+" nickel\n");}
else{System.out.print(nickel+" nickels\n");}}
if(penny>=1){
if(penny == 1) {System.out.print(penny+" penny\n");}
else { System.out.print(penny+" pennies\n"); }}}}}
Read more about conditional statements at:
https://brainly.com/question/11073037
#SPJ1
I want a loyal girlfri,end
Answer:
go to dating app
Explanation:
Why do we need to connect computers"
Answer:
batteries cant last connected to nothing forever probably
compare the results of both the RATS and Skipfish reports.
Answer:
The results of both reports RATS is known nas mouse and skipfish is known as one type of fish
Use pseudocode to write a function or procedure that will find the maximum of three numbers a, b, and c.
Answer:
Check if a > b
if true -> check if a > c
if true -> a has the maximum value
if false -> c has the maximum value
if false -> check if b > c
if true -> b is the maximum
if false -> c is the maximum
Explanation:
To find the maximum, you need to find the largest number.
This can be done by making multiple nested if-statements, comparing 2 variables and finding which one is larger.
Why should we apply print preview before printing the document.
to helps them to see how the final printed material will appear.
codehs 8.2.5 spell it out pls help
The answer is not here, so you should look down↓:
Explanation:
The programming question requires that we write a function that takes a string and returns every character in it but the first character.
The function in Python, where comments are used to explain each line.
This defines the function too.
This returns every character in the string except the first one.
An array called numbers contains 35 valid integer numbers. Determine and display how many of these values are greater than the average value of all the values of the elements. Hint: Calculate the average before counting the number of values higher than the average
python
Answer:
# put the numbers array here
average=sum(numbers)/35 # find average
count=0 #declare count
for i in numbers: #loop through list for each value
if i > average: #if the list number is greater than average
count+=1 #increment the count
print(count) #print count
program that initialises a vector with the following string values: “what” “book” “is” “that” “you” “are” “reading”.
A program that initializes a vector with the following string values: “what” “book” “is” “that” “you” “are” “reading” are the usage of namespace std;int main().
What is a vector software program?Vector images software program permits customers to layout and manages pc photos the usage of geometric and mathematical commands, instead of clicks and strokes as utilized in drawing software program. Vector photos created the usage of those applications may be scaled indefinitely with out dropping quality.
#include #include #include the usage of namespace std;int main(); vector::iterator it; for (it = vs.begin(); it != vs.end(); it++) string tmp; while (cin.get()!='n') for (it = vs.begin(); it != vs.end(); it++) }Read more about the vector :
https://brainly.com/question/25705666
#SPJ1
2. Which one of the following is the purpose of relating tables in a database?
A. To permit external data only to be viewed.
B. To allow data to be sorted before printing to a report.
C. To enable mathematical calculations to be carried out more efficiently.
D. To avoid duplication of data.
Answer:
D. To avoid duplication of data.
what two QuickBooks Online payroll subscription levels include QuickBooks time
The two QuickBooks Online payroll subscription levels include QuickBooks time are:
Online Payroll Premium Elite subscriptionWhat is this about?QuickBooks Time mobile access is known to be commonly made up of one's QuickBooks Online Payroll Premium and also one's QuickBooks Elite subscription that is said to be given at no additional cost.
Therefore, The two QuickBooks Online payroll subscription levels include QuickBooks time are:
Online Payroll Premium Elite subscriptionLearn more about QuickBooks from
https://brainly.com/question/24441347
#SPJ1
(please help) What do you do if Brainly keeps saying your blocked?
What is software engineering? What are the objectives of software engineering?
Answer:
The basic objective of software engineering is to develop methods and procedures for software development that can scale up for large systems and that can be used consistently to produce high-quality software at low cost and with a small cycle of time.
Explanation:
How are charts useful in Excel worksheets? Name three types of charts available in Excel and describe with an example how each might be used. What are some things you can do with a chart to make the information clearer to a reader? What are some things you can do with a chart to make it more visually appealing?
Answer:
Spread sheets
Explanation:
Charts are employed to display series of numeric data in a graphical format to help people understand large amounts of data and the relationships between them.
What is a worksheet?A worksheet is a sheet that is used as a guide in doing some work to make preliminary plans, supplementary computations, notes, or comments.
Charts are used to display a series of numeric data in a graphical format in order to help people understand large amounts of data and their relationships.
Good graphs allow for precise estimation of the quantities represented. The reader must understand the scale used to represent quantity on the graph in order to estimate quantities.
Create your graph with as few elements as possible. Color can help distinguish data sets in a graph, but avoid glaring color combinations (such as chartreuse and violet), as these can be distracting.
Vertical bars are used to describe information in column charts. They can work with a wide range of data, but they are most commonly used for information comparison. Line charts are excellent for displaying trends.
Thus, by using some things like this, one can make charts clearer.
For more details regarding worksheets, visit:
https://brainly.com/question/13129393
#SPJ2
what are differences between Ram and Rom?
Answer:
RAM, which stands for random access memory, and ROM, which stands for read-only memory, are both present in your computer. RAM is volatile memory that temporarily stores the files you are working on. ROM is non-volatile memory that permanently stores instructions for your computer.
Explanation:
Answer:
RAM is random access memory - we can have it even after we shut down the computer. it is volatile .it stores temporarily.
ROM - Read only memory. it is non volatile memory. we can only have it until computer is turn on. after that it's gone.it stores memory permanently
What are three benefits of sharing on social media?
Answer:
reach more organization
get viral to whole entire nation
it also enhance to people's knowledge and quatable understandment