what are the data types

• number(num) - whole numbers up to num digits
• number(num,num2) - num whole numbers up to num2 decimals
• char(num) - fixed length character/string
• varchar2(num) - used for varying length data
• date - full date
• currency - used for prices 

0
0
Peter.petrov 100 points

                                    class Output {
public static void main(String args[])
int a = 1;
int b = 2;
int C;
int d;
C = ++b;
d = a++;
C++;
b++;
++a;
System.out.println(a + " " + b + " " + c);
}
}
Pick ONE option
324
323
234

0
0
0
2

                                    class Output {
public static void main(String args[])
int a = 1;
int b = 2;
int C;
int d;
C = ++b;
d = a++;
C++;
b++;
++a;
System.out.println(a + " " + b + " " + c);
}
}
Pick ONE option
324
323
234

0
0
Are there any code examples left?
Create a Free Account
Unlock the power of data and AI by diving into Python, ChatGPT, SQL, Power BI, and beyond.
Sign up
Develop soft skills on BrainApps
Complete the IQ Test
Relative searches
example of data type example of data types variables, data types how many data types are there %i data types what is the use of data types why do we use data types 5 types of data types are variables data types? i used for which data type understanding data types data types of variables data types data What is the data type of (1)? what are the different types of data what comes in data types variable data types examples variable data types (3) is which data type which type of data explain different types of data what is a data set of a data type data type with example what is data and its types standard data types data types define variables data types data types integer types of data type type of data types types of data in IT what are data types i definition of data type Data types variable and data types define data types the different data types Define Data Types What are different types of data types? what are data types in why use data types examples of variables data types what are the types of data different data types how many types of data types What are data type attributes data types variable data types it examples of different data types different data types explained data types basics different types of data types programming data types basic data types examples of data types which data type is @ what is data types data type definition all data types variables and data types for which data type do we use %s data types variables data types examples data types definition What are the basic data types? types of data data types explained data types in different types of data types of data type explain data type data types and example all types of data data types are types of data types how to use data types types of data what are data types what are the different data types Explain the different datatypes in'C' programming language. data types meaning type of data numeric data ttypes in html 3 types of data types data types what are the data types
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source