Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

~7K People Reached
Favorite Tags
Member Avatar for shopnobhumi

Hi, i want to convert a .jsp file to .java file. I read various forums and they said to use tomcat to convert .jsp to .java.I have ran tomcat but it is not doing anything(i cannot write anything). Through command prompt i ran it and it just opens a new …

Member Avatar for stultuske
0
4K
Member Avatar for shopnobhumi

Hi i have just started my c++ class and really having hard time with that.i was assigned to draw a graph which should look like dis : ***** ***** ***** ***** ***** This is what i am trying but getting only this result : ***** * * * * Please …

Member Avatar for kavita_gunaji
0
807
Member Avatar for shopnobhumi

what would be the recursive implementation of the following c program: int fact(int n) { if (n == 0) return (1); else return(n*fact(n – 1)); }

Member Avatar for eng.ehsan07
0
126
Member Avatar for shopnobhumi

I am trying to convert some instruction to MIPS code. But have no idea how to do that.. i know c language so i can decode it to C but dont know how to convert it to MIPS. 1.I need to write a main 2. create an array of 10 …

0
61
Member Avatar for shopnobhumi

This is not running in Eclipse but ran in other jvm. Not sure if there is anything missing :( [CODE]import javax.swing.JOptionPane; import java.io.*; public class file1 { static int[][] number=new int[1000][1000];; static int row,column; public static void main(String[] args) { readFile(); /*for(int i=0;i<row;i++) for(int j=0;j<column;j++) System.out.println(number[i][j]); */ String result=""; for(int …

Member Avatar for shopnobhumi
0
89
Member Avatar for shopnobhumi

I need to write a program where it will ask the user to write a sentence and count the upper case and lower case alphabet 'e'. I.E- number of lower case e is say 4 and number of upper case E is 3. Every tree is not an Elm,Emile. and …

Member Avatar for mvmalderen
0
180
Member Avatar for shopnobhumi

I need to find the IPC(instructions per cycle) for each processor, the clock rate for p2 that reduces its execution time to that of p1 and the numbers of instructions for p2 that reduces its execution time to that of p3. processor ____ clock rate__ no. inst._____time p1_____________2ghz____20*10^9 _____7s p2____________1.5 …

Member Avatar for wildgoose
0
74
Member Avatar for shopnobhumi

i am trying to compile it (ms visual c++) but it is not compiling, i guess there is some errors but visual c++ is only saying fatal error which i have no idea what it is.Any idea? [code]#include "stdafx.h" #include <iostream> using namespace std; int nbs=0; void Queens(int nn, int …

Member Avatar for NathanOliver
0
112
Member Avatar for shopnobhumi

.txt .globl main main: # f= (g+h)-(i+j); li $s0,0 li $t1,0 li $t2,0 li $s1,4 li $s2,5 li $s3,6 li $s4,7 add $t1, $s1, $s2 # sum of s1,s2 is stored in t1 or temporary variable t1 contains g+h add $t2, $s3, $s4 # sum of s3,s4 is stored in …

Member Avatar for wildgoose
0
151
Member Avatar for shopnobhumi

What could be the possible explanation of this program output? I am trying to learn c++ so please help [code]#include <iostream> using namespace std; int main( ) {int b[3][2]; cout<<sizeof(b)<<endl; cout<<sizeof(b+0)<<endl; cout<<sizeof(*(b+0))<<endl; // the next line prints 0012FF68 cout<<"The address of b is: "<<b<<endl; cout<<"The address of b+1 is: "<<b+1<<endl; …

Member Avatar for Ancient Dragon
0
173
Member Avatar for shopnobhumi

everytime i open my browser(both firefox,ie) another website opens with that such as [url]http://online-securityscanner.com/2009/1/en/_freescan.php?nu=770522170802[/url] and so on after saying my computer has virus which obviously is a spyware.. i tried using spybot, ad-aware and so on but did not work. here is the log file from hijack this. Please help …

Member Avatar for jholland1964
0
97
Member Avatar for shopnobhumi

I have a DELL INSPIRON 6000 notebook. It has RAM memory of 504mb. I would like to upgrade it to 1 gb or 2 gb. But my question is if i buy a 1gb RAM,can i still keep my 504mb one.ex-Will both the 1gb and 504mb RAM work together?making it …

Member Avatar for jbennet
0
146
Member Avatar for shopnobhumi

I have 3 instructions- 1- Use rand() to generate a number less then 100 and greater than 1 2- Call the prime() function to test the result 3- Print out the result So far i have found how to get a prime number but don't know how to fill up …

Member Avatar for skatamatic
0
819
Member Avatar for shopnobhumi

This is the code: #include <iostream> using namespace std; int main() { int x; cout << "Enter a positive integer: "; cin >> x; if (x <= 0) { cout << "Illegal" << endl; exit(1); } if (x <= 100) { cout << x; } else { cout << x/100 …

Member Avatar for skatamatic
0
73
Member Avatar for shopnobhumi

I need to write a program where it would ask the user to enter a positive even number,when entered if wrong then it would say value is illegal and will terminate the program. If it is even then program prints out the square of the number. I have just started …

Member Avatar for shopnobhumi
0
93