I have a problem wtih a program. The program logic is like this.......... from a class which extends midlet class i create object of a class(say canobj(word)) which extends canvas class by passing a string. the next statement is display.setCurrent(canobj); Everything is fine but the paint(Graphics g) method is not executed. What may the problem. please suggest me the answer.
2 5273write a program to swap bits in a character and return the value prototype of function char fun (char a, charb flag c) where fun returns a char, char a is a the value char b is the bit to be changed and flag c is the bit value for eg: x=fun(45,7,0) since 45 is 0010 0101 and ow x should contain the value 65 (0110 0101)
1 7313Write a program for the problem: the array of inetegers indicating the marks of the students is given, U have to calculate the percentile of the students aaccording to this rule: the percentile of a student is the %of no of student having marks less then him. For eg: suppose Student Marks A 12 B 60 C 80 D 71 E 30 F 45 percentile of C = 5/5 *100 = 100 (out of 5 students 5 are having marks less then him) percentile of B = 3/5*100 = 60% (out of 5, 3 have markses less then him) percentile of A = 0/5*100 = 0%.
2175Write a program that read 2o numbers in and array and output the second largest number. Can anybody help??
7 10868write the a cl program with the following specification A. Accept 2 parameters-date and date type B. if date type is J then convert date to *MDY format C. if date type is M convert date to *JUL format 4.send a program message with the value of converted date Please explain for each with coding?
2627Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
3534write a c program whether the given number is power of 2 or not using the bitwise operators?
HCL,
2 7986what is the program to find out the smallest word in a sentence? like if the sentence is : this is my room. then out put will be : is
TCS,
1771i developed a Stateless Session bean program.And created a client by a common java class as class m {p s v m(String s[]){....}} And i called the bean deployed in weblogic.from cmd prompt And that run. mind it i have to set setenv,seting classpath for that bean jar file before compile and run it. ok when i do a servlet programme deployed in tomcat and call that bean then it give classdefnotfoundException and NoInitialContext like this.So how i sucessfully do this? Ok when i call that bean from java class from the console like i previously told, if i don't set setenv i found the same error on the cmd prompt. pls help to get out of it
2 6143
How will you make .NET programs work in Linux ?
Discuss your Reward/Recognition programs?
we have 10 concurrent programs under one request group out of 10 ccps all users submitting only 9 programs from srs window remaining one ccp for specific user how can it possible send me answer asap.
What are the key issues that should be addressed in the design, conduct, and evaluation of training programs?
What are the key isssues that should be addressed in the design, conduct, and evaluation of training programs?
What are the key issues that should be addressed in the design, conduct and evaluation of training programs?
I have to write Shells (Linux + Unix)for publishing packages and reports. Is it possible ? What are the differents executable programs ineed to call ?
name poneno dept sun 9894433467 computer This is the xls sheet a programs written to transfer this data into database write test cases and test scenario?
WHAT ARE 19 MODELS OF EDUCATIONAL COUNSELLING? What is the most essentila thing that you consider while formulating any HR policy? In any consulting firm, the time devoted doesn't matter. all that matters is the productivity. What kind of HR and leave policy will you formulate to ensure discipline and time line working along with the increased productivity what is databank in recruitment process why u choose MBA after sicence bacground in graduation what is patent rights and copy rights what is the difference between direct investment and FDI what is the difference between direct investment and FDI what is the difference between patent rights and copy rights what is quality of work life What is KRA and KPI? Wat is recruitment & How is the Recruitment Scenario in todays global market? what is meant by managerial grid why did u select HR as your carrier what is sensex and nifty,what is the difference between those two what is the difference between CEO,MD,PRESIDENT,CHAIRMAN why do u select to do MBA in HR after doing B.Sc in physics? what is the performance management and what are the methods to use in evaluating performance? What is Learning? Please do make a reply to this question: I am bored taking interviews. Please motivate me in taking interview of yours. Trade Unions? what is sensex and nifty,what is the difference between those two What are Incentives? What is Fringe Benefits? What is Employee Morale? what are your positives and negatives as a HR? What is the best way to develop pay systems that are understandable, workable, and acceptable to employees at all levels? What is Coordination? What is the Difference between salary and wage? what is ur great weekness what is the importance of hr in the life of business? What is wages? What are the key issues that should be addressed in the design, conduct, and evaluation of training programs? where u see yourself after 10 years As jobs become more team-oriented, assessment centers will be used more often for non-management jobs. Do you agree or disagree? What is HRD? What did you like in your previous job? What is Fringe Benefits? What are the latest employee evalution trends? What is the Difference between salary and wage? why do u select to do MBA in HR after doing B.Sc in physics? What is HCN?s? what is the importance of hr in the life of business? How much do you think we should pay you?Do you know how much other companies are paying? What is the best way to develop pay systems that are understandable, Workable, and acceptable to employees at all levels? Difference between Training and Development? What is Different between Recruitment and Selection What is "mutual gains negotiation"? Selection means? Trade Unions? what is 360 degree performance appraisal? what is meant by an organisation,explain me differently What is On the Job Training? Management Guru,Professor Lallus Rail , a book was written by? What is Workers Compensation? why should i select you? Roles and Responsibilities of a HR ? How much do you think we should pay you?Do you know how much other companies are paying? In a room there are 3bulbs, and in the net room there are 3 switches. one can not see through the rooms, then how can you know that which switch is for which bulb with out taking any one's help? Define Motivation? What are the key issues that should be addressed in the design, conduct, and evaluation of training programs? What is "mutual gains negotiation"? what is Persoanl Management? What is HRM? What are Incentives?
The OS is a program that uses various data structures. Like
all programs in execution, you can determine the
performance and other behavior of the OS by inspecting its
state - the values stored in its data structures. In this
part of the assignment, we study some aspects of the
organization and behavior of a Linux system by observing
values of kernel data structures exposed through the /proc
virtual file system.
The /proc virtual file system:
Linux uses the /proc file system to collect information
from kernel data structures. The /proc implementation
provided with Linux can read many different kernel data
structures. If you cd to /proc on a Linux machine, you will
see a number of files and directories at that location.
Files in this directory subtree each corresponds to some
kernel data structure. The subdirectories with numeric
names contain virtual files with information about the
process whose process ID is the same as the directory name.
Files in /proc can be read like ordinary ASCII files. You
can open each file and read it using library routines such
as fgets() or fscanf(). The proc (5) manual page explains
the virtual files and their content available through
the /proc file system.
Requirements in detail:
In this part, you are asked to write a program to report
the behavior of the Linux kernel. Your program should run
in two different versions. The default version should print
the following values on stdout:
• Processor type
• Kernel version
• The amount of memory configured into this computer
• Amount of time since the system was last booted
A second version of the program should run continuously and
print lists of the following dynamic values (each value in
the lists is the average over a specified interval):
• The percentage of time the processor(s) spend in
user mode, system mode, and the percentage of time the
processor(s) are idle
• The amount and percentage of available (or free)
memory
• The rate (number of sectors per second) of disk
read/write in the system
• The rate (number per second) of context switches in
the kernel
• The rate (number per second) of process creations
in the system
If your program (compiled executable) is called proc_parse,
running it without any parameter should print out
information required for the first version. Running it with
two parameters "proc_parse
Hey this is venkatesh.Please can any body tell me what is SFLNXTCHG?where we use this keyword?what perpuse we use this?Can you tell me in real time senario with example? And in 7 specification(RPG/400)what is the mandatory specification using programs?
What is the technical flow associated with P2P or Procure to Pay cycle like the tables, APIs, concurrent programs involved in this cycle. Only technical please.
How to draw the flowchart for structure programs?
As per interoperatbility programs written in one language can be used by other language. How can we restrict the features of one language (say C#) in the programmer written in another language (say VB)..for example we have some features like operator overloading which is possible C#.NET (not in VB.NET), how can we restrict that when we are using this code in VB.NET.
What if you are not accepted in the schools you are applying for? ifyou didn't get into any programs?