Top 10 Microsoft Windows XP Professional Questions & Answers

Microsoft Windows XP Professional Logo

Question

  • 13,390 People Helped

Java project (core and advanced)

Sir I m a TYBSC(Computer Science) student from pune.I have to submit project based on java and as I m a beginner in java I cant get perfect project for me.I m looking for a good project based on swings and servlets.As every year students are making lots of projects based on library system,hotel management system and reservation system I want some freash and new topic for my project so i would like to know some of the topics from you Considering me as a java beginner my email id is [email protected] sir as i am the student of computer science and engineering and as the part of curriculm i have to submit the minor project,i have decided to make the project in core java because in august i have done one month training in core java,as my teacher clearly told us to ake the live project not on any kind of management system.as i am fresher and i don't have much knowledge about the language please suggest me some solution for this problem.with some examplary projects.my email id is [email protected]

thankyou
sir

Posted by on

Answer

  • Most Helpful of 2 Answers

Hi I am Nitin Daharwal .. If you want make project in Java using Swing only. You may opt for these options 1. Java Image Viwer 2. Exam Simulator 3. Bulk E mail 4. Snake Game 5. Chatting Client 6.Inventory Mangement System you can mail at [email protected] for any help ..

Happy Programming!!!

Posted on Jul 27, 2009

Question

  • 10,684 People Helped

This copy of Windows did not pass genuine validation

I faced this problem in my system..... This copy of Windows did not pass genuine validation. what means this sentence obove? and what meas too by this sentence.down The product key found on this computer is a Volume License Key (VLK) that has been blocked.... hlep me please to get the solve...thank u to much... yes

Posted by on

Answer

  • Most Helpful of 8 Answers

If you have the original CD you should be able to reinsert it into CD player and pass validation. If you don't have the CD, then you license key for your copy of Windows was tagged as invalid for some reason in their databases. You will have to contact microsoft.com to get it corrected.

Posted on Oct 31, 2008

Question

  • 8,999 People Helped

microsoft office word requires the file msointl.dll to run

I have got sooo many important word files and I've had loads of problems today.
Earlier a pop-up ket on appearing saying that I was running out of disk space and needed to delete some files. deleted files that I didn't think i needed. However, since then, Word 2007 won't open. It says "Microsoft Office Word requires the file msointl.dll to run"

Can anyone suggest a way of fixing this. I have all my work files, partner's business files and uni files on it!!
Please?

Thanks!

Posted by on

Answer

  • Most Helpful of 1 Answers

HI Ishan,

It seems that while you were deleting a file that was needed got tossed as well. You will need to reinstall Word for that program to run again.

If you dont have access to a microsoft office program disk or dont want to buy it dont worry too much theres a free open office program (not microsoft) that works just as good if not better (cause its free).

I use it and its great you can find it here

Posted on Nov 13, 2008

Question

  • 13,309 People Helped

check who is appearing offline in msn messenger

i want to check who is appearing offline on msn messenger, so is there any trick or site or software to check who is just appearing offline but not really offline.....please help me.

Posted by on

Answer

  • Most Helpful of 1 Answers

Some websites claim to be able to do it, but I cannot confirm whether they work or not.

Try it yourself:
http://www.blockstatus.com/msn/stchecker
http://msn.blocked.nl/
http://www.msnblockchecker.net/

Posted on May 02, 2009

Question

  • 14,170 People Helped

Facebook not responding

Everytime I try to navigate through facebook, I get an error that it is not responding. I don't have this problem with any other websites. I've gotten to step 4 of 4 setting up my account and I can go no further.

Posted by on

Answer

  • Most Helpful of 3 Answers

Are you using internet explorer?

Delete cookies or reset your browser settings.

How to delete cookies. Click on Tools found at the top of your Internet Explorer browser then click on Internet Options. Look for browsing history and then clear or delete your cookies.

If this will not work, you may have to consider resetting your Internet Explorer settings.

How to reset Internet Explorer. Click on Tools found at the top of your Internet Explorer browser then click on Internet Options. Click on the Advanced Tab and click on restore advance settings and then click reset.

Try to open internet explore and try facebook again.

Posted on Feb 10, 2009

Question

  • 15,987 People Helped

msvcrt.dll error message("the procedure entry except handler4 common could not be located dinamic link library msvcrt.dll")

error message("the procedure entry except handler4 common could not be located dinamic link library msvcrt.dll")

Posted by on

Answer

  • Most Helpful of 3 Answers

to produce entry point _except_handler4_common could not be located in the dynamic link library msvcrt.dill

Posted on Dec 18, 2012

Question

  • 13,122 People Helped

how to be solve banker algorithm?example

how to be solve banker algorithm?example

Posted by on

Answer

  • Most Helpful of 2 Answers

I m providing you this from my college notes

Banker's Algorithm


* multiple instances of resource types IMPLIES cannot use resource-allocation graph

* banks do not allocate cash unless they can satisfy customer needs when a new process enters the system

* declare in advance maximum need for each resource type

* cannot exceed the total resources of that type

* later, processes make actual request for some resources

* if the the allocation leaves system in safe state grant the resources

* otherwise, suspend process until other processes release enough resources



Banker: Data Structures define MAXN 10 /* maximum number of processes */
#define MAXM 10 /* maximum number of resource types */
int Available[MAXM]; /* Available[j] = current # of unused resource j */
int Max[MAXN][MAXM]; /* Max[i][j] = max demand of i for resource j */
int Allocation[MAXN][MAXM]; /* Allocation[i][j] = i's current allocation of j*/
int Need[MAXN][MAXM]; /* Need[i][j] = i's potential for more j */
/* Need[i][j] = Max[i][j] - Allocation[i][j] */

Notation:

X <= Y iff X[i] <= Y[i] for all i

(0,3,2,1) is less than (1,7,3,2)

(1,7,3,2) is NOT less than (0,8,2,1)

Each row of Allocation and Need are vectors: Allocation_i and Need_i



Banker: Example

Initially:

Available
A B C
10 5 7

Later Snapshot:

Max - Allocation = Need Available
A B C A B C A B C A B C
P0 7 5 3 0 1 0 7 4 3 3 3 2
P1 3 2 2 2 0 0 1 2 2
P2 9 0 2 3 0 2 6 0 0
P3 2 2 2 2 1 1 0 1 1
P4 4 3 3 0 0 2 4 3 1



Banker: Safety Algorithm

* consider some sequence of processes

* if the first process has Need less than Available

* it can run until done

* then release all of its allocated resources

* allocation is increased for next process

* if the second process has Need less than Available

* ...

* then all of the processes will be able to run eventually

* IMPLIES system is in a safe state



Banker: Safety Algorithm

STEP 1: initialize
Work := Available;
for i = 1,2,...,n
Finish[i] = false
STEP 2: find i such that both
a. Finish[i] is false
b. Need_i <= Work
if no such i, goto STEP 4
STEP 3:
Work := Work + Allocation_i
Finish[i] = true
goto STEP 2
STEP 4:
if Finish[i] = true for all i, system is in safe state



Banker: Safety Example

Using the previous example, P1,P3,P4,P2,P0 satisfies criteria.

Max - Allocation = Need <= Work Available
A B C A B C A B C A B C
P1 3 2 2 2 0 0 1 2 2 3 3 2 3 3 2
P3 2 2 2 2 1 1 0 1 1 5 3 2
P4 4 3 3 0 0 2 4 3 1 7 4 3
P2 9 0 2 3 0 2 6 0 0 7 4 5
P0 7 5 3 0 1 0 7 4 3 10 4 7
10 5 7<<< initial system



Banker: Resource-Request Algorithm

STEP 0: P_i makes Request_i for resources, say (1,0,2)
STEP 1: if Request_i <= Need_i
goto STEP 2
else ERROR
STEP 2: if Request_i <= Available
goto STEP 3
else suspend P_i
STEP 3: pretend to allocate requested resources
Available := Available - Request_i
Allocation_i := Allocation_i + Request_i;
Need_i := Need_i - Request_i
STEP 4: if pretend state is SAFE
then do a real allocation and P_i proceeds
else
restore the original state and suspend P_i



Banker: Resource-Request Algorithm [129]

Say P1 requests (1,0,2)

Compare to Need_1: (1,0,2) <= (1,2,2)

Compare to Available: (1,0,2) <= (3 3 2)

Pretend to allocate resources:

Max - Allocation = Need Available
A B C A B C A B C A B C
P0 7 5 3 0 1 0 7 4 3 2 3 0<<<
P1 3 2 2 3 0 2<<< 0 2 0<<<
P2 9 0 2 3 0 2 6 0 0
P3 2 2 2 2 1 1 0 1 1
P4 4 3 3 0 0 2 4 3 1

Is this safe? Yes: P1, P3, P4, P0, P2

Can P4 get (3,3,0)? No, (3,3,0) > (2,3,0) Available

Can P0 get (0,2,0)? (0,2,0) < (2,3,0) Available

Pretend: Available goes to (2,1,0)

Thanks And Regards

Posted on May 13, 2009

Question

  • 15,020 People Helped

except handler4 common msvcrt.dll WHEN I OPEN

except handler4 common msvcrt.dll WHEN I OPEN MOZILA

Posted by on

Answer

  • Most Helpful of 4 Answers

Except handler4 common msvcrt.dll what will fix this problem???

Posted on Feb 06, 2010

Question

  • 11,084 People Helped

Microsoft Office Standard 2007 referral key

Microsoft Office Standard 2007 referral key

Posted by on

Answer

  • Most Helpful of 3 Answers

HI

Microsoft Office 2007 Professional

XC84W-M642D-2QDWY-YTKMM-RWJQW OR TCCMP-PXGHB-3TR88-6WDCX-2HDBD

OR H36BT-QFYMQ-FCFC3-KYQ69-G67PT

Microsoft Office Professional 2007
T3PVR-XX42X-T49DW-WGBG6-9FT73 OR C3T4B-8MD24-46K4H-6XPPX-VD6YD

OR DM6GQ-HM9CG-HCVY9-T3C74-GVHVW

MS Office(Home and Student) 2007: GHJGD-TWT9Y-G7H42-FWDJK-3G6KW

MS Office(Home and Student) 2007: KRBWK-TVGBX-3KQG4-H7WXG-KQGKM

Microsoft Office Home & Student 2007: JWR9T-HFR92-74RQ7-3FRMB-CY676

Norton Antivirus 2008:VGH96-FY8HM-443GH-F4Y36-PYH98

Microsoft Office Home & Student 2007: TW6JJ-D28JW-B7KRM-44W66-MGVGY

Microsoft Office 2007 Home and Student: B4MKP-KP9YP-7TBQ4-7T4XF-MTGWY

Microsoft Office 2007 Home and Student: DDY79-433JV-2RXGX-MQFQP-PFDH8

Microsoft Office 2007 Home and Student: DDY79-433JV-2RXGX-MQFQP-PFDH8

Microsoft Office Home and Student 2007: DDY79-433JV-2RXGX-MQFQP-PFDH8

Microsoft Office Home and Student 2007: B4MKP-KP9YP-7TBQ4-7T4XF-MTGWY

Microsoft Office Home and Student 2007: KGFVY-7733B-8WCK9-KTG64-BC7D8


Microsoft Office Small Business 2007: S/N: CKMPB-6B4QT-MG4C6-2VH4C-RDD43 Or HTPWX-FR6J8-2WBCQ-T63JR-3M8PD

A Few Activation Keys for Office 2007 Home and Student.
More on the Way for different MS Products
Visit us at thedeadlyghost dot com.
before visit this site try the following key.
1-HBC66-D6YR7-CRP7H-T8VP4-99PMW
2-QXMDH-CRYFM-QFR87-HB783-T7RFQ
3-P37JV-FYJ32-YHH3T-KX7GX-7BJY3
4-HRMGX-K8WKJ-7FBGW-FTBCY-DWCM3
5-RCFMT-WFT7M-R779R-BJQMB-M2KWD
6-T9HJX-4C3BM-MG2R6-WC933-RCBRT
7-BTT7P-9HBFP-6QHM7-RFHDV-X8XWG
8-HWMMV-7H4DT-J2PJ6-YB8X4-VQCM6
9-JM2QC-KMVTP-VR8GV-HJRKQ-YWXWG
10-BHD34-K6BT7-T6PXP-BXKT4-X3G8D
11-DDH8T-C2JGD-G6MWW-6CYBV-BDTB6

***
for safe use, I suggest you use the O.E.M software***

RATE THIS SOLUTION ACCORDINGLY

Posted on Dec 09, 2010

Question

  • 18,997 People Helped

except handler 4 common msvcrt.dll free download

except handler 4 common msvcrt.dll free download

Posted by on

Answer

  • Most Helpful of 2 Answers

assassin creed 3 eror

Posted on Dec 29, 2012

4,747 questions posted

Ask a Question

Usually answered in minutes!

Top Microsoft Computers & Internet Experts

Grand Canyon Tech
Grand Canyon Tech

Level 3 Expert

3867 Answers

k24674

Level 3 Expert

8093 Answers

Brad Brown

Level 3 Expert

19187 Answers

Are you a Microsoft Computer and Internet Expert? Answer questions, earn points and help others

Answer questions

Manuals & User Guides

View Most Popular

Windows XP Professional XP

  • Windows XP Professional XP

Most Popular Question

login icloud email

  • Computers & Internet
Loading...