Question

Question 1: What are the nine integral data types in C# and how do you decide...

Question 1: What are the nine integral data types in C# and how do you decide which is the most appropriate to use in a particular situation?

Homework Answers

Answer #1

Answer 1:

sbyte  
short  
Int  
long  
byte  
ushort  
uint  
ulong
char

Above are the data types

we will decide the particular data type based on data we have and the range of the values..

Ex : if we want use to id than we use short data type as it type of int and range is very less

Note : Please comment below if you have concerns. I am here to help you

If you like my answer please rate and help me it is very Imp for me

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
Research and Discuss variables and data types. 1. What are the various data types you can...
Research and Discuss variables and data types. 1. What are the various data types you can use in C#, Explain memory sizes of these data types? 2. Discuss string variables. What does a string variable provide? Provide details. 3. Provide examples how you would create a values like "Sarah", 2, 3.50, and store into memory. For example, DataType VariableName = "Sarah".
Research involves measurement scales, of which there are four types. In data collection, what sources of...
Research involves measurement scales, of which there are four types. In data collection, what sources of data would you use, and how would you establish reliability and validity? Why did you choose those specific data samples? Question 1 four types of scales Question 2. In data collection, what sources of data would you use, Question 3.and how would you establish reliability and validity? Question 4. Why did you choose those specific data samples?
How do you decide whether to use ft/in or in/ft in a particular problem? the topic...
How do you decide whether to use ft/in or in/ft in a particular problem? the topic is on UNIT analysis
Question 1: What group of people do you think labeling theory impacts the most and how...
Question 1: What group of people do you think labeling theory impacts the most and how does it affect them? Question 2: Labeling theory in the world of cyber crime suggests that labeling particular groups as deviant may lead to an increase in the number of crimes committed. In essence, labeling fuels more crime as it encourages the perpetrator to continue. Do you think it is possible to reduce crime levels by reducing social shaming? Why or why not?
how do you take integral of 1/((x+1)(x+2)^2)?
how do you take integral of 1/((x+1)(x+2)^2)?
A Guide to SQL Questions 1. How do you create a table using SQL? 2. How...
A Guide to SQL Questions 1. How do you create a table using SQL? 2. How do you delete a table using SQL? 3. What are the common data types used to define columns using SQL? 4. Identify the best data type to use to store the following data in Oracle, in SQL Server, and in Access:    a. The month, day, and year that an employee was hired    b. An employee’s Social Security number    c. The department...
Question: How would you scan for outliers in your dataset? What would you do with data...
Question: How would you scan for outliers in your dataset? What would you do with data points that are considered outliers?
Answer the following question 1. What basic requirements of a C program are there ? 2....
Answer the following question 1. What basic requirements of a C program are there ? 2. What basic requirements of Identifiers (variable name) are there? 3. Explains what data types are and how they are used to classify the value of a variable in a programming language. 4. What is Variable? What should be done before you use a variable?
What do you mean a sparsity matrix? Select one: a. None of the above b. All...
What do you mean a sparsity matrix? Select one: a. None of the above b. All of the above c. Representation of non zero elements d. Representation of null element The maximum number of elements in an array is one number higher than the index. Select one: True False The term data structure is used to denote a particular way of organizing data for particular types of operation. Select one: True False In which situation do you use a sparse...
Question 1 Which statement is false about what Data Types defines Question 1 options: What values...
Question 1 Which statement is false about what Data Types defines Question 1 options: What values a variable cannot hold? How much memory will be reserved for the variable? What value a variable will hold? How the program will use the data type? Question 2 Using the structure below, which of the following statements about creating an array (size 20) of structures are not true? struct Employee{     string emp_id;     string emp_name;     string emp_sex; }; Question 2 options:...