-
gopika started the topic word navigation in ms word in the forum Microsoft Word 2 years, 5 months ago
To move, resize or close the Navigation pane in Word, click the small downward facing arrow in the upper-right corner of the pane. A drop-down menu of choices then appears. To move the Navigation Pane in Word, choose “Move” from the drop-down menu or hold your mouse over the title area of the pane until it turns into a four-pointed arrow. Then sim…[Read more]
-
gopika wrote a new item 2 years, 5 months ago
what are features of word mailing in Microsoft Word?
-
gopika wrote a new item 2 years, 5 months ago
what is Word Art in Ms word? And advance features of it .
-
gopika wrote a new item 2 years, 5 months ago
#include #include int main() { double x; double result; x = 2.3; result = sin(x); printf(“sin(%.2lf) = %.2lfn”, x, result); x = -2.3; result = sin(x); printf(“sin(%.2lf) = […]
-
gopika started the topic microsoft-office in the forum Microsoft Excel 2 years, 5 months ago
Microsoft Office prior to Office 2007 used proprietary file formats based on the OLE Compound File Binary Format.[38] This forced users who share data to adopt the same software platform.[39] In 2008, Microsoft made the entire documentation for the binary Office formats freely available for download and granted any possible patents rights for use…[Read more]
-
gopika started the topic Microsoft Office VS Microsoft Word in the forum Microsoft Excel 2 years, 5 months ago
Microsoft Word is primarily a word processing program that allows users to create, edit, and format text documents. In contrast, Microsoft Office includes other programs like Excel for spreadsheets, PowerPoint for presentations, and Outlook for email management.
-
gopika started the topic Nested loop in c in the forum C Programming 2 years, 5 months ago
Nesting of loops is the feature in C that allows the looping of statements inside another loop. Let's observe an example of nesting loops in C. Any number of loops can be defined inside another loop, i.e., there is no restriction for defining any number of loops. The nesting level can be defined at n times.
#include <stdio.h>
int main()
{…[Read more] -
gopika wrote a new item 2 years, 5 months ago
#include #include #define PI 3.141592654 int main() { double arg = 30, result; // Converting to radian arg = (arg * PI) / 180; result = cos(arg); printf(“cos of %.2lf radian = %.2lf”, arg, […]
