Buscar
🇪🇸
MEM
O
RY
.COM
4.37.48
Invitado
Iniciar sesión
Página de inicio
0
0
0
0
0
Crear curso
Cursos
Último juego
Panel
Notificaciones
Clases
Carpetas
Exámenes
Exámenes personalizados
Ayuda
Marcador
Tienda
Premios
Amigos
Asignaturas
Modo oscuro
Identificador de usuario: 999999
Versión: 4.37.48
www.memory.es
Estás en modo de exploración. debe iniciar sesión para usar
MEM
O
RY
Inicia sesión para empezar
Index
»
Computer science
»
Programming
»
Operators
level: Operators
Questions and Answers List
level questions: Operators
Question
Answer
Symbols that tell the compiler or interpreter to perform specific mathematical, relational or logical operations are called?
Operators
MOD gives the _______ of an integer division.
Remainder
Operators that help us take decisions based on certain conditions are called?
Logical operators
Operators which produce Boolean results, which means the result will be either true or false are called?
Relational operators
Which operator demands both the input as integers?
MOD
Can we use float datatype for MOD operation?
No
Which operator compares the values of operands and produces logical value?
Relational operator
Which operator is used to perform binary level operations?
Bitwise operator
What is called the variable declared outside all the functions?
Global variable
What is the size of a character variable?
1 byte
In expression a=b, if the value of 'b' changes later, does it affect the value of 'a'?
No