-
Ranjani R started the topic What are the variables in c++ ? in the forum C++ 2 years, 5 months ago
C++ Variables
Variables are containers for storing data values.In C++, there are different types of variables (defined with different keywords), for example:
int – stores integers (whole numbers), without decimals, such as 123 or -123
double – stores floating point numbers, with decimals, such as 19.99 or -19.99
char – stores single characters,…[Read more] -
Ranjani R started the topic How many features in word? And what they are. in the forum Microsoft Word 2 years, 5 months ago
There are ten features in word: they are
•changing case
•Create a custom tab
•Quick parts
•add placeholder text
•Edit wrap points when wrapping text
•Convert a list to a table
•convert a bulleted list to SmartArt
•Quick selection methods
•Touch/ mouse mode in Word 2013
•remove background on an image -
Ranjani R started the topic What are the properties does the merge mail requires in word? in the forum Microsoft Word 2 years, 5 months ago
Mail Merge Definitions
Starting Document
(Main Document) A document that contains the information that is the same for each merged document. The starting document contains the field names for the variable information, like the names and addresses that will be inserted.
Data Source or Recipients List A file that contains the information to be…[Read more] -
Ranjani R started the topic Frequently used keyword shortcut in word? in the forum Microsoft Word 2 years, 5 months ago
Frequently used shortcuts
This shows the most frequently used shortcuts in Microsoft Word.To do this
Press
Open a document.
Ctrl+O
Create a new document.
Ctrl+N
Save the document.
Ctrl+S
Close the document.
Ctrl+W
Cut the selected content to the Clipboard.
Ctrl+X
Copy the selected content to the Clipboard.
Ctrl+C
Paste the contents…[Read more]
-
Ranjani R started the topic What is data validation?why and how it was performed. in the forum Microsoft Excel 2 years, 5 months ago
What is Data Validation?
Data validation means checking the accuracy and quality of source data before using, importing or otherwise processing data. Different types of validation can be performed depending on destination constraints or objectives. Data validation is a form of data cleansing.Why perform data validation?
When moving and…[Read more] -
Ranjani R started the topic What is data format? in the forum Microsoft Excel 2 years, 5 months ago
Data format is the definition of the structure of data within a database or file system that gives the information its meaning. Structured data is usually defined by rows and columns, where columns represent different fields corresponding to, for example, name, address, and phone number, and each field has a defined type, such as integers,…[Read more]
-
Ranjani R replied to the topic What is variable declaration? in the forum C Programming 2 years, 5 months ago
Value of c:11
Value of f:4.1 -
Ranjani R started the topic What is variable declaration? in the forum C Programming 2 years, 5 months ago
#include<studio.h>
int main() {
/* Variable declaration */
int x,y;
int z;
Float a;
/* Initialisation */
x=7;
y=4;
z=x+y;
Print(“Value of z:%d n”,z);
a=8.2/2;
Print(“value of a:%a n”,a);
return 0;
} -
Ranjani R replied to the topic How to complete and run a program in coders editor-online computer? in the forum C Programming 2 years, 5 months ago
Hello world
-
Ranjani R started the topic How to complete and run a program in coders editor-online computer? in the forum C Programming 2 years, 5 months ago
#include<studio.h>
int main()
{
Printf(“Hello world”);
return 0;
} -
Ranjani R wrote a new item 2 years, 5 months ago
#include Int main() { Print(“Hello world!”); return 0; }
