-
vishnuprabha.N wrote a new item 6 months ago
Shortcuts keys in MC word
-
vishnuprabha.N wrote a new item 6 months ago
Microsoft excel
-
vishnuprabha.N started the topic Fibonacci Series up to n terms in the forum C Programming 6 months ago
#include <stdio.h>
int main() {int i, n;
// initialize first and second terms
int t1 = 0, t2 = 1;// initialize the next term (3rd term)
int nextTerm = t1 + t2;// get no. of terms from user
printf(“Enter the number of terms: “);
scanf(“%d”, &n);// print the first two terms t1 and t2
printf(“Fibonacci Series: %d, %d, “,…[Read more] -
vishnuprabha.N started the topic implementation to draw circle in C: in the forum C Programming 6 months ago
// C Implementation for drawing circle
#include <graphics.h>//driver code
int main()
{
// gm is Graphics mode which is
// a computer display mode that
// generates image using pixels.
// DETECT is a macro defined in
// “graphics.h” header file
int gd = DETECT, gm;// initgraph initializes the
// graphics…[Read more] -
vishnuprabha.N wrote a new item 6 months ago
C programming language
-
vishnuprabha.N wrote a new item 6 months ago
Data structures in python
-
vishnuprabha.N wrote a new item 6 months ago
What are the Memory Allocations available in Java?
-
vishnuprabha.N wrote a new item 6 months, 1 week ago
Explain about data hiding
-
vishnuprabha.N started the topic C++ structure in the forum C++ 6 months, 1 week ago
#include <iostream>
using namespace std;struct Person
{
char name[50];
int age;
float salary;
};int main()
{
Person p1;cout << “Enter Full name: “;
cin.get(p1.name, 50);
cout << “Enter age: “;
cin >> p1.age;
cout << “Enter salary: “;
cin >> p1.salary;cout << “nDisplaying Information.” <<…[Read more]
-
vishnuprabha.N started the topic Program for Writing to File in C++ in the forum C++ 6 months, 1 week ago
#include<iostream>
#include<fstream>
using namespace std;
int main() {
fstream FileName;
FileName.open(“FileName.txt”, ios::out);
if (!FileName) {
cout<<” Error while creating the file “;
}…[Read more] -
vishnuprabha.N started the topic Program for Opening File in C++ in the forum C++ 6 months, 1 week ago
#include<iostream>
#include<fstream>
using namespace std;
int main(){
fstream FileName;
FileName.open(“FileName”, ios::out);
if (!FileName){
cout<<“Error while creating the file”;
}
else{
cout<<“File created successfully”;
FileName.close();…[Read more] -
vishnuprabha.N started the topic What are the 4 types of formatting in MS Word in the forum Microsoft Word 6 months, 1 week ago
Character or Font Formatting.
Paragraph Formatting.
Document or Page Formatting.
Section Formatting. -
vishnuprabha.N started the topic Microsoft excel vs Microsoft word in the forum Microsoft Excel 6 months, 1 week ago
MS Word is a processing software which is used for writing letters, essay, notes, etc. Whereas, MS Excel is a spreadsheet software where a large amount of data or information can be saved in a systematic tabular manner in numerical and alphabetical values
-
vishnuprabha.N started the topic What is data formatting in Excel? in the forum Microsoft Excel 6 months, 1 week ago
Formatting in Excel is a neat trick used to change the appearance of the data represented in the worksheet. We can do formatting in multiple ways, such as we can format the font of the cells or format the table by using the “Styles” and “Format” tabs available in the “Home” tab.
-
vishnuprabha.N started the topic GCD Using for loop and if Statement in the forum C Programming 6 months, 1 week ago
#include <stdio.h>
int main()
{
int n1, n2, i, gcd;printf(“Enter two integers: “);
scanf(“%d %d”, &n1, &n2);for(i=1; i <= n1 && i <= n2; ++i)
{
// Checks if i is factor of both integers
if(n1%i==0 && n2%i==0)
gcd = i;
}printf(“G.C.D of %d and %d is %d”, n1, n2, gcd);
return…