95.0k views
2 votes
If a line of code creates an integer variable and the user enters 3.4, what will happen? a) a syntax error b) a value error c) no error d) a float error

User Dan Pritts
by
7.5k points

1 Answer

3 votes

Answer:

No error

Step-by-step explanation:

Required

Determine what happens when the given scenario happens

When the given scenario occurs, the translator erases the fractional part of the input and saves only the integer part into the declared variable

Take for instance, the following code segment written in c++

int anum ;

cin>>anum ;

cout<<anum ;

Assume the user input is 3.4, the compiler prints out 3 leaving out the .4

Please note that; this may not be applicable for all programming languages; However, the above illustration is so in most cases

User Liorco
by
7.2k points