easy4tuts.blogspot.com

Hot Contents To Know

Post Top Ad

Your Ad Spot

Thursday, September 28, 2023

Writing our first C++ program

September 28, 2023 0
You've decided to learn how to program in C++ but don't know where to start. Here's a brief overview of how you can get started. 
आपने C++ में प्रोग्राम करना सीखने का निर्णय लिया है, लेकिन यह नहीं जानते कि कहां से शुरू करें। यहां इसका संक्षिप्त विवरण दिया गया है कि आप कैसे शुरुआत कर सकते हैं।

 Get a C++ Compiler 

    This is the first step you have to do before starting learning to program in C++. There are several free C++ compilers available for all major OS platforms. Download one that suits your platform. Now we are downloading and installing code Block.
यह पहला कदम है जो आप C++ में प्रोग्राम करने से पहले करना चाहेंगे। सभी प्रमुख Operating System के लिए  C++ कंपाइलर उपलब्ध हैं। वह डाउनलोड करें जो आपके operating system के अनुकूल हो। अब हम Code Block compiler को  डाउनलोड और इंस्टॉल कर रहे हैं।

Write a C++ program 

    Now that you have a compiler installed, its time to write a C++ program. We'll print hello world to the screen using C++ in this example. Open Code Block, go to the File menu and select New option and then empty file option. Create a new file called hello.cpp and write the following code to it −
अब जब आपने एक कंपाइलर स्थापित कर लिया है, तो अब C++ प्रोग्राम लिखने का समय आ गया है। इस उदाहरण में हम C++ का उपयोग करके स्क्रीन पर हैलो वर्ल्ड प्रिंट करेंगे। Code Block खोलें, File मेनू पर जाएं और New विकल्प चुनें और फिर Empty File विकल्प चुनें। hello.cpp नाम से एक नई फ़ाइल बनाएं और उसमें निम्नलिखित कोड लिखें -

#include<iostream>
using namespace std;
int main() {
cout<< "Hello World\n";
}

#include <iostream>

int main()
{
  std::cout << "Hello World\n";
  return 0;
}

#include <iostream>
using namspace std;
int main()
{
  cout << "Hello World\n";
  return 0;
}


Let's discuss this program. 

 Line 1−

     We start with the #include line which essentially tells the compiler to copy the code from the iostream file(used for managing input and output streams) and paste it in our source file. Header iostream, that allows performing standard input and output operations, such as writing the output of this program (Hello World) to the screen. Lines beginning with a hash sign (#) are directives read and interpreted by what is known as the preprocessor. 

हम #include लाइन से शुरू करते हैं जो अनिवार्य रूप से कंपाइलर को iostream फ़ाइल (इनपुट और आउटपुट stream को manage करने के लिए उपयोग किया जाता है) से कोड कॉपी करने और इसे हमारी source file में पेस्ट करने के लिए कहता है। Header iostream, जो standard इनपुट और आउटपुट operation करने की अनुमति देता है, जैसे कि इस प्रोग्राम के आउटपुट (हैलो वर्ल्ड) को स्क्रीन पर लिखना। हैश चिह्न (#) से शुरू होने वाली लाइनें को  preprocessor directive statement कह्ते है।

 Line 2− 

    A blank line: Blank lines have no effect on a program. 

 Line 3− 

    We then declare a function called main with the return type of int. main() is the entry point of our program. Whenever we run a C++ program, we start with the main function and begin execution from the first line within this function and keep executing each line till we reach the end. We start a block using the curly brace({) here. This marks the beginning of main's function definition, and the closing brace (}) at line 5, marks its end. All statements between these braces are the function's body that defines what happens when main is called.
 
फिर हम int के रिटर्न प्रकार के साथ  main नामक एक फ़ंक्शन declare करते हैं। main() हमारे प्रोग्राम का प्रवेश बिंदु है। जब भी हम C++ प्रोग्राम चलाते हैं, तो हम main फ़ंक्शन से शुरू करते हैं और इस फ़ंक्शन के भीतर पहली पंक्ति से execution शुरू करते हैं और अंत तक पहुंचने तक प्रत्येक पंक्ति को execute करते रहते हैं। हम यहां कर्ली ब्रेस({) का उपयोग करके एक ब्लॉक शुरू करते हैं। यह main फ़ंक्शन के definition की शुरुआत को चिह्नित करता है, और पंक्ति 5 पर समापन ब्रेस (}), इसके अंत को चिह्नित करता है। इन ब्रेसिज़ के बीच के सभी statements main function के part हैं जो परिभाषित करते हैं कि main कॉल करने पर क्या करना है।

 Line 4− 

 cout << "Hello World\n"; This line is a C++ statement. This statement has three parts: First, cout, which identifies the standard console output device. Second the insertion operator << which indicates that what follows is inserted into cout. Last, we have a sentence within quotes that we'd like printed on the screen. This will become more clear to you as we proceed in learning C++.
 In short, we provide a cout object with a string "Hello world\n" to be printed to the standard output device. 
Note that the statement ends with a semicolon (;). This character marks the end of the statement 

cout << "हैलो वर्ल्ड\n"; यह पंक्ति  C++ का एक Statement है। इस Statement के तीन भाग हैं: पहला, cout, जो standard कंसोल आउटपुट डिवाइस (monitor) की पहचान करता है। दूसरा insertion ऑपरेटर (<< ) जो इंगित करता है कि निम्नलिखित को cout में डाला गया है। अंत में, हमारे पास quotes sign के भीतर एक वाक्य है जिसे हम स्क्रीन पर print करना चाहेंगे। जैसे-जैसे हम C++ सीखते जाएंगे, यह आपके लिए और अधिक स्पष्ट होता जाएगा।
 संक्षेप में,  cout object के सहायता से "Hello Word\n" स्ट्रिंग को हम standard आउटपुट डिवाइस पर print  करते हैं।
ध्यान दें कि C++ का statement  semicolon  (;) से समाप्त होता है। यह statement के अंत का प्रतीक है

Compile the Program 

Now that we've written the program, we need to translate it to a language that the processor understands, ie, in binary machine code. We do this using a compiler we installed in the first step. You need to open your terminal/cmd and navigate to the location of the hello.cpp file using the cd command. Assuming you installed the GCC, you can use the following command to compile the program − $ g++ -o hello hello.cpp This command means that you want the g++ compiler to create an output file, hello using the source file hello.cpp. 

अब जब हमने प्रोग्राम लिख लिया है, तो हमें इसे उस भाषा में अनुवाद करने की ज़रूरत है जिसे प्रोसेसर समझता है, यानी बाइनरी मशीन कोड में। हम इसे उस कंपाइलर का उपयोग करके करते हैं जिसे हमने पहले चरण में स्थापित किया था। आपको अपना टर्मिनल/cmd खोलना होगा और cd कमांड का उपयोग करके hello.cpp फ़ाइल के स्थान पर नेविगेट करना होगा। यह मानते हुए कि आपने GCC स्थापित किया है, आप प्रोग्राम को संकलित करने के लिए निम्नलिखित कमांड का उपयोग कर सकते हैं - $ g++ -o hello hello.cpp इस कमांड का अर्थ है कि आप चाहते हैं कि g++ कंपाइलर एक आउटपुट फ़ाइल बनाए, स्रोत फ़ाइल hello.cpp का उपयोग करके हेलो।

 Run the program 

Now that we've written our program and compiled it, time to run it! You can run the program using − 
अब जब हमने अपना प्रोग्राम लिख लिया है और इसे संकलित कर लिया है, तो इसे चलाने का समय आ गया है! आप - का उपयोग करके प्रोग्राम चला सकते हैं
 $ ./hello 

Output 


You will get the output− Hello world
Read More

Sunday, September 24, 2023

Types of Business Communication

September 24, 2023 0
Q What is verbal communication? 
A communication using oral or written methods known to be verbal communication. Verbal communication is a method that uses oral and written expression. The following are the ways for verbal communication:  

  1. Be Specific What You Want to Say: Before speaking, a person must have a definite idea what he wants to say. So, a person should have mental preparation to convey any message or information. Aimless conversation will result in aimless output. One must avoid those opinions to which he is not familiar. 
  2. Consider your listener or Audience: When a person is sharing any message or information with others, sender must consider the position of the receiver. The knowledge of the receiver, attitude of the receiver and thinking of the receiver must be considered properly by the communicator. 
  3. Move from Simple to Complex: In communication, Communicator should start with basic concepts or idea and move towards further discussion. This helps the listener to understand the specific problem clearly. e.g. In teaching accounting, the teacher should first start with Debit-Credit rules rather than doing financial statements. 
  4. Select Words Carefully: In verbal communication, confusing or contradictory words should not be used. Simple and communicative words should be used considering the background, experience and culture of listener or audience. 
  5. Clear Expression: A person must speak, state or write anything with clear expression. Failure to pronounce any word properly or writing any spelling may cause failure to verbal communication. 
  6. Use the Active Voice: The active voice is understood more easily because it is both clear and direct. Using the active voice will help you to speak more consciously. e.g. Say"Mr. A called me" is more suitable rather than "I was called by Mr. A". 
  7. Be Courteous and Natural: Decency should be maintained by the communicator to create impression in the mind of an audience or listener. Unpleasant attitude must be avoided. Furthermore, sender of communication should be natural rather than using artificial attitude towards listener or audience. A courteous and natural attitudes leads to the most effective communication. 
    The above guidelines for verbal communication are effective to maintain effective verbal communication. Furthermore, to make effective verbal communication by following above guidelines for verbal communication, all of those must be natural and spontaneously. 

Q What is nonverbal communication? 

Non-verbal communication is an instinctive type of communication as compared to verbal communication. In our daily life, we are involved with such communication consciously or unconscionably. Many thoughts, expressions or feelings are reflected through such communication. A close analysis or thinking for a moment can be sufficient to sort out how much time do we get to perform such communication. Non-verbal communication is mostly unstructured and there is no book regarding the language or vocabulary regarding such communication. When we smile or when we frown or when we show our gloomy face, we are actually reflecting non-verbal communication. Therefore, without our consent or consciousness our emotions are expressed through our faces or movements. Here we are communicating without words i.e. non-verbal communication. Importance of Non Verbal communication:- Non-verbal communication is a non-word or communication without word. Its importance are untold as we are involved and inclined with it in our daily life. A short but definite arguments are given below to justify its importance: 1. Ninety Three(93) Percent: Non-verbal communication: Non-verbal communication is important to convey feelings or actions in our daily life. Almost 93 percent of our emotions are reflected through such communication. 2. Provide Instant Effect: Verbal communication requires much more time than non-verbal communication to get proper feedback. When tears drop from eyes, there is less time to perceive the state of mind. Moreover, when our national flag is half-mast, we know that the nation is showing respect and gratitude towards any contribution. 3. Reliable: Words can be changed easily but non-verbal cues like body language, facial expressions or gestures cannot be changed instantly as they reflect the definite and actual state of mind. It really reflects emotion with honesty. When a person smiles, it shows his joy which is much more communicative than his written statement like 'I am happy'. 4. Quick Transmission: Non-verbal cues can transmit message quickly to the receiver. We can forward our emotions even without thinking about it. When we embrace or when we shake hands or when we show our thumb provide instant communication like the flow of electricity. 5. More Powerful: Colors or plain sounds are more powerful than any language. When we carry black flag or wear black band, it reflects our attitude to protest some movement. When national anthem is played, we instantly stand up and maintain silence, During that silence, we try to remember our national 'Heroes'. Therefore, Non-verbal communication provides most powerful media. So, the above discussions clearly emphasize on the importance of non-verbal communication.

Read More

Thursday, September 21, 2023

Objective Of Business Communication

September 21, 2023 0

 

Q What is Business Communication?

Definition: The Communication is a two-way process wherein the message in the form of ideas, thoughts, feelings, opinions is transmitted between two or more persons with the intent of creating a shared understanding. Communication is of two types-1 General communication 2. Business communication.

Business communication is the process of sharing information between people within the workplace and outside a company.

Effective business communication is how employees and management interact to reach organizational goals. Its purpose is to improve organizational practices and reduce errors. It’s important to work on both your communication skills and communication processes to achieve effective business communication. 

Q What is the objective of business communication?

The objectives of business communication are wide and large. Information, Order, permission, Warning, Motivation, Advice and Raising morale are activated through the means of communication. The objectives of business communication are stated below:

1. To Exchange Information: The prime objective of communication is to exchange information 
internally and externally i.e. to deal within the organization and outside the organization.

2. To Achieve Goal: The goal of the organization can be obtained through 
effective organizational communication. Everybody tries to acquire such goal and therefore it requires effective organizational communication.

3. To Maintain Co-ordination and Co-operation: Co-ordination and co-operation among three levels i.e. corporate level, divisional level and functional level of an Organization are maintained through communication.

4. To Plan: Planning decides what is to be done in future. All the information and data which are required to make a plan for business can be obtained or gathered through communication.

5. To Facilitate Direction and Motivation: The boss gives direction or order to his subordinate. And managers need to motivate their employees to increase the concentration and productivity. Hence, communication helps to facilitate direction and motivation.

6. To Achieve Efficiency: Communication can provide information regarding past and present. It also helps to anticipate about future. So, Communication increase efficiency of the workers by providing instant information.

7. To Solve Problem: Communication can remove the gap between employees and employer. Fruitful communication ensures a network in an Organization to solve problems. Conflict arises and exists in an Organization. Fruitful communication ensures a network to solve conflict. It also remove the gap between employee and employer.

8. To Create Consciousness: Communication helps both employer and employee to be conscious about their respective roles, duties and activities. As a result, responsibility and accountability is located among the concerned persons.

9. To Increase Job Satisfaction: Job satisfaction requires better job environment and better job environment is possible if there exists communication chain. Strong chain helps to overcome job related stress.

10. To Improve Employer-Employee Relationship: To achieve the Organizational objectives, there must be good relationship between employee and employer. And to improve such relationship, there must be effective communication.

11. To Manage Human Resources: To recruit, train-up & motivate human resource  properly, There must be effective communication. Skilled manpower are professional and work for achievement and development.

12. To Attract Customer: To knock the door of potential customers with new product and service of an enterprise, there should exist an efficient communication. So better communication will cause more customers and more customers will cause more profit.

13.To Facilitate Joint Effort: Joint effort requires unique motive. And unique motive means mutual trust & unity arising from mutual communication.

14. To alter/Change Future Plan: In today's modern competitive world, there is requirement of changing the plan according to environment and 
communication environment. This involves awareness through proper communication.

15. To Obtain Overall Development: The overall development of an Organization involves existence of efficient Internal Control Structure. And it can be possible through effective communication system.

16. To Provide Necessary Data for Decision-Making: Managers require different types of data and information for decision-making. Through communication managers collect necessary data and take accurate decision.

17. To Educate Workers: Communication helps the Organization to train-up the employees/workers through organized programs. For example, Orientation, workshops, film show,  internship etc.

A communication is adapted to the needs and interest of the receiver in order to causes the receiver to react in a manner that accomplishes the purpose of the sender.

Read More

Tuesday, September 12, 2023

Windows Operating System के 7 फायदे

September 12, 2023 0

 What is window?

Windows   is    an    operating system developed by Microsoft. An operating system performs the following tasks:

 

  • ·         Input & Output Management
  • ·         Resource Management
  • ·         Data Management
  • ·         Process Management
  • ·      User interface WINDOWS AS GUI

Windows Microsoft द्वारा विकसित किया गया एक ऑपरेटिंग सिस्टम है। एक ऑपरेटिंग सिस्टम निम्नलिखित कार्य करता है:

इनपुट और आउटपुट प्रबंधन

    संसाधन प्रबंधन

    डेटा प्रबंधन

    प्रक्रिया प्रबंधन

          user इंटरफ़ेस विंडोज़ as GUI

 

Windows is a Graphical User Interface (GUI) Operating System. GUI means a platform where items are represented by an icon (picture) on the screen which is easier to remember. You need not to remember lengthy and complex syntax                                     for performing different operations as you do it in DOS. GUI gives you a ready-made on screen menu system that helps you finding suitable option for your task. Just select the job you wish to do and all the internal processing will be done by the OS itself without asking you about typical commands.

विंडोज़ एक ग्राफ़िकल यूज़र इंटरफ़ेस (GUI) ऑपरेटिंग सिस्टम है। जीयूआई का मतलब एक ऐसा मंच है जहां वस्तुओं को स्क्रीन पर एक आइकन (चित्र) द्वारा दर्शाया जाता है जिसे याद रखना आसान होता है। आपको अलग-अलग ऑपरेशन करने के लिए लंबे और जटिल सिंटैक्स को याद रखने की ज़रूरत नहीं है जैसा कि आप DOS में करते हैं। जीयूआई आपको एक रेडीमेड ऑन स्क्रीन मेनू सिस्टम देता है जो आपके कार्य के लिए उपयुक्त विकल्प ढूंढने में आपकी मदद करता है। बस उस कार्य का चयन करें जिसे आप करना चाहते हैं और सभी आंतरिक प्रसंस्करण ओएस द्वारा ही किया जाएगा, बिना आपसे विशिष्ट कमांड के बारे में पूछे।

 

GUI also gives you a multitasking, multithreading environment. It means that if you are working in an OS that supports GUI, you will be able to open more than one task at a time. Besides this, you will be able to transfer one kind of data to a different application e.g. A cartoon can be inserted in a Letter or vice versa.

 

आप ऐसे OS में काम कर रहे हैं जो GUI को सपोर्ट करता है, आप एक समय में एक से अधिक कार्य खोल पाएंगे। इसके अलावा, आप एक तरह के डेटा को अलग-अलग एप्लिकेशन में ट्रांसफर कर पाएंगे। किसी पत्र में कार्टून डाला जा सकता है या इसके विपरीत।

 

GUI gives you the description of the tasks currently running. In DOS it was not possible to see what processes are running but in Windows 95 it is possible to see all the applications that are currently active either in foreground or in background. GUI gives you most user friendly environment where you can get on-line help for each and every step you are performing.

 

GUI आपको वर्तमान में चल रहे कार्यों का विवरण देता है। डॉस में यह देखना संभव नहीं था कि कौन सी प्रक्रियाएँ चल रही हैं लेकिन विंडोज 95 में उन सभी एप्लिकेशन को देखना संभव है जो वर्तमान में अग्रभूमि या पृष्ठभूमि में सक्रिय हैं। जीयूआई आपको सर्वाधिक उपयोगकर्ता अनुकूल वातावरण प्रदान करता है जहां आप अपने प्रत्येक चरण के लिए ऑनलाइन सहायता प्राप्त कर सकते हैं।


WINDOWS : SALIENT FEATURES

 

  • ·         Graphical User Interface (GUI) Items represented by pictures, which are easier to remember.
  • ·         User friendly Easier to learn and use.
  • ·         Multitasking Facility to run more than one application at a time. For

e.g. You can type a letter while printing another one.

  • ·         Multithreading Facility to transfer data between different applications. For

 

e.g. A cartoon can be inserted in a Letter or vice versa.

 

  • ·         Common Menus. For e.g. Same commands for printing in all software’s.
  • ·         Runs in protected mode The protected mode ensures that the failure of any  programme does not halt the computer.

·         Faster processing (called 32 Bit processing) enhances system efficiency.

·         Support for –LAN, Multimedia and Internet.

·         On-Line Help facility.

·         Windowing capability.

 

Windows के : प्रमुख विशेषताएँ

 

ग्राफ़िकल यूज़र इंटरफ़ेस (जीयूआई) - चित्रों द्वारा दर्शाए गए आइटम, जिन्हें याद रखना आसान होता है।

उपयोगकर्ता के अनुकूल - सीखने और उपयोग करने में आसान।

मल्टीटास्किंग - एक समय में एक से अधिक एप्लिकेशन चलाने की सुविधा। के लिए

जैसे आप एक पत्र टाइप करते समय दूसरा पत्र टाइप कर सकते हैं।

मल्टीथ्रेडिंग - विभिन्न अनुप्रयोगों के बीच डेटा स्थानांतरित करने की सुविधा। के लिए

 

जैसे किसी पत्र में कार्टून डाला जा सकता है या इसके विपरीत।

 

सामान्य मेनू. उदाहरण के लिए सभी सॉफ़्टवेयर में मुद्रण के लिए समान आदेश।

संरक्षित मोड में चलता है - संरक्षित मोड यह सुनिश्चित करता है कि किसी एक प्रोग्राम की विफलता से कंप्यूटर बंद नहीं होता है।

तेज़ प्रोसेसिंग (जिसे 32 बिट प्रोसेसिंग कहा जाता है) सिस्टम दक्षता को बढ़ाती है।

• -LAN, मल्टीमीडिया और इंटरनेट के लिए समर्थन।

ऑन-लाइन सहायता सुविधा।

विंडोइंग क्षमता.

WINDOWS SCREEN

 

On starting Windows , the initial Windows screen is displayed. Parts of Windows Screen are as follows:

 

·         The Desktop

·         The Desktop Icons

·         The Task Bar

·         The Start Button

·      System Tray DESKTOP

 

When you start Windows, the entire screen area that you see, is called the desktop. The desktop is Windows user interface. You can customize the desktop by adding shortcuts to your favorite programs, documents, and printers, and by changing its look to fit your mood and personality.

 

 

Windows Screen

 

विंडोज़ प्रारंभ करने पर, प्रारंभिक विंडोज़ स्क्रीन प्रदर्शित होती है। विंडोज़ स्क्रीन के भाग इस प्रकार हैं:

 

डेस्कटॉप

डेस्कटॉप चिह्न

टास्क बार

प्रारंभ बटन

सिस्टम ट्रे डेस्कटॉप

 

जब आप विंडोज़ शुरू करते हैं, तो आपको जो संपूर्ण स्क्रीन क्षेत्र दिखाई देता है, उसे डेस्कटॉप कहा जाता है। डेस्कटॉप विंडोज़ यूजर इंटरफ़ेस है। आप अपने पसंदीदा प्रोग्राम, दस्तावेज़ और प्रिंटर में शॉर्टकट जोड़कर और अपने मूड और व्यक्तित्व के अनुरूप इसके स्वरूप को बदलकर डेस्कटॉप को अनुकूलित कर सकते हैं।


DESKTOP ICONS

 

An icon is a picture. Windows uses small video icons that represent objects  

folders, files, documents, applications and devices.

 

Icons on the Desktop:

 

·         My computer

·         Recycle Bin

·         Internet Explorer

·         Network Neighborhood

डेस्कटॉप चिह्न

 

एक चिह्न एक चित्र है. विंडोज़ छोटे वीडियो आइकन का उपयोग करता है जो वस्तुओं का प्रतिनिधित्व करते हैं -

फ़ोल्डर, फ़ाइलें, दस्तावेज़, एप्लिकेशन और डिवाइस।

 

डेस्कटॉप पर चिह्न:

 

    मेरा कंप्यूटर

    रीसायकल बिन

    इंटरनेट एक्सप्लोरर

नेटवर्क पड़ोस

 

 

 

TASKBAR

 

The long horizontal bar at the bottom of the desktop is the Taskbar. The taskbar contains three elements:

 

·         Start Button (extreme left) allows access to all applications

·         System Tray (extreme right) shows status and time indicator

·         Task status (middle section) shows buttons for all open windows on the desktop.

 

टास्कबार

 

डेस्कटॉप के नीचे स्थित लंबी क्षैतिज पट्टी टास्कबार है। टास्कबार में तीन तत्व होते हैं:

 

स्टार्ट बटन (सबसे बाएं) - सभी एप्लिकेशन तक पहुंच की अनुमति देता है

सिस्टम ट्रे (सबसे दाएँ) - स्थिति और समय संकेतक दिखाता है

कार्य स्थिति (मध्य भाग) - डेस्कटॉप पर सभी खुली हुई विंडो के लिए बटन दिखाता है।


START BUTTON

 

The Start Button opens the Start Menu. All applications are accessible through the Start Button. Click the Start button. The Start Menu pops up. Options on the Start Menu and their functions are as follows:

 

 

 

Programs:    Provides the primary means of starting an application.

 

Documents: Provides a list of the last 15 documents that you have opened directly from Windows (not from the application).

 

Settings:       Provides the means to adjust many aspects of your system through special control panel windows.

 

Find:              Allows you to locate files and folders on your network by their name and location.

 

Help:             Opens the Windows 95 Help system.

 

Run:               Provides a command line in which you type a path and program or folder same to run the Program or open the folder.

 

Shut Down: Allows you to leave Windows 95 and either shut down or restart your computer.

 

स्टार्ट बटन स्टार्ट मेनू खोलता है। सभी एप्लिकेशन स्टार्ट बटन के माध्यम से पहुंच योग्य हैं। स्टार्ट बटन पर क्लिक करें. स्टार्ट मेनू पॉप अप हो जाता है। स्टार्ट मेनू पर विकल्प और उनके कार्य इस प्रकार हैं:

 

 

 

कार्यक्रम: किसी एप्लिकेशन को शुरू करने का प्राथमिक साधन प्रदान करता है।

 

दस्तावेज़: पिछले 15 दस्तावेज़ों की एक सूची प्रदान करता है जिन्हें आपने सीधे विंडोज़ से खोला है (एप्लिकेशन से नहीं)।

 

सेटिंग्स: विशेष नियंत्रण कक्ष विंडो के माध्यम से आपके सिस्टम के कई पहलुओं को समायोजित करने का साधन प्रदान करता है।

 

ढूँढें: आपको अपने नेटवर्क पर फ़ाइलों और फ़ोल्डरों को उनके नाम और स्थान के आधार पर ढूंढने की अनुमति देता है।

 

सहायता: Windows 95 सहायता प्रणाली खोलता है।

 

चलाएँ: एक कमांड लाइन प्रदान करता है जिसमें आप प्रोग्राम चलाने या फ़ोल्डर खोलने के लिए एक पथ और प्रोग्राम या फ़ोल्डर टाइप करते हैं।

 

शट डाउन: आपको विंडोज 95 छोड़ने और अपने कंप्यूटर को बंद करने या पुनरारंभ करने की अनुमति देता है।

SYSTEM TRAY

 

Displays the current date & time indicator and provides other status information about system, like print status.

वर्तमान दिनांक और समय संकेतक प्रदर्शित करता है और सिस्टम के बारे में अन्य स्थिति जानकारी, जैसे प्रिंट स्थिति, प्रदान करता है।

Read More

Post Top Ad

Your Ad Spot