-
asiyashifa wrote a new item 2 years, 5 months ago
To make changes to a document, in the upper-right corner, select Edit Document > Edit. If someone else created the document, they might not allow editing. You can go to File > Save as, save it with another […]
-
asiyashifa wrote a new item 2 years, 5 months ago
Click Insert > Object in the Text group. For Outlook, click inside of the body of an item, such as an email message or calendar event. Click Create from File > Browse. Browse to the . pdf file you want to […]
-
asiyashifa started the topic Insert pdf file in a ms word in the forum Microsoft Word 2 years, 5 months ago
Click Insert > Object in the Text group. For Outlook, click inside of the body of an item, such as an email message or calendar event.
Click Create from File > Browse.
Browse to the . pdf file you want to insert, and then click Open.
Click OK. -
asiyashifa started the topic Create a file in ms word in the forum Microsoft Word 2 years, 5 months ago
Open Word. Or, if Word is already open, select File > New.
In the Search for online templates box, enter a search word like letter, resume, or invoice. Or, select a category under the search box like Business, Personal, or Education.
Click a template to see a preview. …
Select Create. -
asiyashifa started the topic Insert a file in ms word in the forum Microsoft Word 2 years, 5 months ago
Go to Insert > Object.
Select Create from File.
Select Browse and choose the file you want to use.
Select Insert.
Choose Display as icon to embed, or Link to file for a link.
Select OK. -
asiyashifa started the topic Shortcut for Count the values in the forum Microsoft Word 2 years, 5 months ago
Pressing Ctrl+Shift+G will instantly bring up your word count to provide you with that all-important visual affirmation that you are, indeed, …
-
asiyashifa started the topic Save the document in the forum Microsoft Word 2 years, 5 months ago
Other Shortcut keys Using Ctrl, Shift and Alt ; Alt + Shift + F2. Save your document. If you haven’t saved your document previously, it opens the Save As window.
-
asiyashifa wrote a new item 2 years, 5 months ago
First, select the cell(s) that you want to delete or remove from the spreadsheet. After that, simply press the Ctrl + -keys together and you will get the “Delete” dialog box opened.
-
asiyashifa started the topic Add a percentage in a cell value in the forum Microsoft Excel 2 years, 5 months ago
You can add a percentage to a cell value in Excel by using the formula =number*(1+percentage). For example, if you want to add 10% to the value in cell A1, you can use the formula =A1*(1+10%). You can also use the Percent Style button in the Number ribbon group from the Home tab to format the values as a percentage add a percentage to a cell value…[Read more]
-
asiyashifa started the topic Named range in excel in the forum Microsoft Excel 2 years, 5 months ago
We can use the name for the cell Ranges instead of the cell reference (such as A1 or A1:A10). We can create a named range for a range of cells and use then use that name directly in the Excel formulas. When we have huge data sets, Excel-named ranges make it easy to refer (by directly using a name to that data set).
-
asiyashifa started the topic Roots of quadratic equation in the forum C Programming 2 years, 5 months ago
uadratic Equation
#include <math.h>
#include <stdio.h>
int main() {
double a, b, c, discriminant, root1, root2, realPart, imagPart;
printf(“Enter coefficients a, b and c: “);
scanf(“%lf %lf %lf”, &a, &b, &c);discriminant = b * b – 4 * a * c;
// condition for real and different roots
if (discriminant > 0) {
root1…[Read more] -
asiyashifa wrote a new item 2 years, 5 months ago
printf(“Quotient = %dn”, quotient); printf(“Remainder = %d”, remainder);
-
asiyashifa wrote a new item 2 years, 5 months ago
printf(“Quotient = %dn”, quotient); printf(“Remainder = %d”, remainder);
