-
Malarvizhi M wrote a new item 6 months ago
What are Python Modules
-
Malarvizhi M wrote a new item 6 months ago
What is PYTHONPATH
-
Malarvizhi M wrote a new item 6 months ago
How Do You Insert A Watermark
-
Malarvizhi M wrote a new item 6 months ago
How Do You Change Text Wrapping Settings
-
Malarvizhi M wrote a new item 6 months ago
How Do You Remove Editing Restriction In Word Documents
-
Malarvizhi M wrote a new item 6 months ago
How To Insert Caption In Your Image In Microsoft Word
-
Malarvizhi M wrote a new item 6 months ago
How Do You Insert A Picture From A File In Microsoft Word
-
Malarvizhi M wrote a new item 6 months ago
How Do You Design The User Entry Form
-
Malarvizhi M wrote a new item 6 months ago
How Can You Create A User Entry Form In Microsoft Word
-
Malarvizhi M started the topic How Do You Collapse Or Expand Parts Of A Document in the forum Microsoft Word 6 months ago
· Place your cursor in the heading.
· On the Home tab, click the arrow in the Paragraph group.
· In the Paragraph dialog box, click the checkbox next to Collapsed by default.
· Click OK.”
-
Malarvizhi M started the topic What Are The Disadvantages Of Microsoft Word in the forum Microsoft Word 6 months ago
· Cost: While Word is the best word processor available, it can be very expensive. You can get free word processors that are nearly as powerful that will satisfy the needs of most users.
· Complexity: Most users will probably never use 50% of the functionality of Word. The complexity can actually be a deterrent as some users will b…[Read more]
-
Malarvizhi M started the topic What Are The Major Elements Of A Microsoft Word Screen in the forum Microsoft Word 6 months ago
. The Title Bar
· Menu Bar.
· Toolbar
-
Malarvizhi M started the topic What Are The Major Elements Of A Microsoft Word Screen in the forum Microsoft Word 6 months ago
. The Title Bar
· Menu Bar.
· Toolbar
-
Malarvizhi M wrote a new item 6 months ago
How to dynamically allocate a 2d array in C++
-
Malarvizhi M wrote a new item 6 months ago
How to remove segmentation fault in C++
-
Malarvizhi M wrote a new item 6 months ago
A character constant is member of the character set in which a program is written which is surrounded by single quotation marks (‘).
-
Malarvizhi M wrote a new item 6 months ago
Scope resolution operator in c++ is denoted by double colon (::). It can be used: – when there is a local variable with same name as of global variable – When a function has to be defined outside a cla […]
-
Malarvizhi M started the topic How to use vector in C++ in the forum C++ 6 months ago
A sample code to see how to use vector in C++ is as follows:
#include<iostream>
#include<vector>
using namespace std;
int main()
{
vector <string> vec_1;
vec_push_back(“sample code”);
vec_push_back(“change example”);
for(vector <string>::iterator i=vec_begin();i!=vec_end();++i)
cout<<*i; A sample code to see how to use…[Read more]
-
Malarvizhi M started the topic What is a class in C++ in the forum C++ 6 months ago
C language is not an object-oriented programming language, so it is a constant attempt of C++ to introduce OOPs. Class is a user-defined data type that defines a blueprint of data type. For example,
class Circle{
public:
float radius;
}
-
Malarvizhi M started the topic What is stack in C++ in the forum C++ 6 months ago
A linear data structure which implements all the operations (push, pop) in LIFO (Last In First Out) order. Stack can be implemented using either arrays or linked list.The operations in Stack are
– Push: adding element to stack
– Pop: removing element from stack
– isEmpty: returns true if stack is empty
– Top: returns the top most element in stack
- Load More