Join Regular Classroom : Visit ClassroomTech

code window

Unary Operator in C

What is Unary Operator in c ? unary operators are used for produce a new value. This operator require only one operand. Types of Unary operators:  Unary minus(-)  Increment (++)  Decrement (–)  NOT(!)  Address operator(&)  sizeof() Unary Minus (-) : It is a unary operator which is used for changing the sign of a variable.A […]

Unary Operator in C Read More »

SQL Syntax

SQL is followed by unique set of rules and guidelines called Syntax. This tutorial gives you a quick start with SQL by listing all the basic SQL Syntax: All the SQL statements start with any of the keywords like SELECT, INSERT, UPDATE, DELETE, ALTER, DROP, CREATE, USE, SHOW and all the statements end with a

SQL Syntax Read More »

Java Interview Questions

Q1. What is Encapsulation?Answer Encapsulation provides objects with the ability to hide their internal characteristics and behavior. Each object provides a numberof methods, which can be accessed by other objects and change its internal data. In Java, there are three access modifiers: public, private and protected. Each modifier imposes different access rights to other classes, either

Java Interview Questions Read More »