ArcMedia JavaScript Source Code 3000 Pro (gar448) for PC - Answered Questions & Fixed issues

0helpful
1answer

Annhen33 or email address annhen7@hotmail.com

Uninstall Java and reinstall with the newest version. In the future, do not update Java, just uninstall and install newest version.
8/29/2017 9:15:40 PM • ArcMedia... • Answered on Aug 29, 2017 • 232 views
0helpful
1answer

Answer to turn javascript back on is too confusing. Is there an easier method and how do I get there?

https://www.whatismybrowser.com/is-javascript-enabled If it says YES then you have javascript enabled if NO then not
2/20/2015 8:29:26 PM • ArcMedia... • Answered on Feb 20, 2015 • 423 views
0helpful
1answer

Want miniproject using javascript & msaccess

HiI need the mini project in html & java script with back-endMs AccessKindly help me
11/9/2013 5:51:56 AM • ArcMedia... • Answered on Nov 09, 2013 • 376 views
0helpful
1answer

Cant install java new version

it is java just right click on your task-bar near your clock and choose task manager look for jqs.exe right click it and choose end process.
11/9/2013 3:53:03 AM • ArcMedia... • Answered on Nov 09, 2013 • 88 views
0helpful
1answer

Error message from IG when I try to launch advanced charts. I have one saying Java Virtual Machine Launcher, Error:Could not create the Java Virtual Machine, Error:A fatal exception occured, Program w

If you have backed up your system recently...just flash back to the last backup and undo the java update and re-install Java. Let us know how it goes.
4/13/2013 10:55:28 PM • ArcMedia... • Answered on Apr 13, 2013 • 185 views
0helpful
1answer

Which version of java is installed on my computer ?

You can view the currently installed version of java by clicking on the link below:http://java.com/en/download/installed.jspOnce at the website, click Verify Java Version.
2/14/2013 2:40:40 AM • ArcMedia... • Answered on Feb 14, 2013 • 200 views
0helpful
1answer

Java isn't running

check on the bottom of your browser for an exclaimation mark..double-click it and the location of the errors in your code will be mentioned in the resulting window. Fix it-& try again!
1/29/2013 6:42:37 AM • ArcMedia... • Answered on Jan 29, 2013 • 72 views
0helpful
2answers

C++ programs

An array is a series of elements of the same type placed in contiguous memory locations that can be individually referenced by adding an index to a unique identifier
Initializing arrays. When declaring a regular array of local scope (within a function, for example), if we do not specify otherwise, its elements will not be initialized to any value by default, so their content will be undetermined until we store some value in them. The elements of global and static arrays, on the other hand, are automatically initialized with their default values, which for all fundamental types this means they are filled with zeros
include <iostream>
using namespace std;

int billy [] = {16, 2, 77, 40, 12071};
int n, result=0;

int main ()
{
for ( n=0 ; n<5 ; n++ )
{
result += billy[n];
}
cout << result;
return 0;
}
multidimensional array pseudo-multidimensional array #define WIDTH 5 #define HEIGHT 3 int jimmy [HEIGHT][WIDTH]; int n,m; int main () { for (n=0;n<HEIGHT;n++) for (m=0;m<WIDTH;m++) { jimmy[n][m]=(n+1)*(m+1); } return 0; } #define WIDTH 5 #define HEIGHT 3 int jimmy [HEIGHT * WIDTH]; int n,m; int main () { for (n=0;n<HEIGHT;n++) for (m=0;m<WIDTH;m++) { jimmy[n*WIDTH+m]=(n+1)*(m+1); } return 0; }
and now for trignometry
#include<iostream>
#include<cmath>
using namespace std;

int main()
{
int factorial(int);
int n = 3, i = 1;
double x, x2, b, PI, r;
char choice;
//r = x * (PI / 180)

cout<<"Please enter an angle value => ";
cin>>x;
cout<<"Is the angle value in Degree or Radian?"<<endl;
cout<<"Type D if its in degree "<<endl;
cout<<"Type R if its in radian "<<endl;
cin>>choice;


if((choice = 'R')||(choice = 'r'))
do{
i++; n = 3; x2 = 0; b = x2;
{
if(i == 1)
x2 = x - (pow(x,n) /factorial(n));
n = n + 2;
};
else
{
x2 = (x2 + ((pow(x,n)) /(factorial(n))) - (pow(x,n+2)) / (factorial(n+2)));
n = n + 4;
}


}while(abs(b - x2) > 0.000001);
else
//convert it to r

r = x * PI /180;

//cout<<"error occured/n";
cout<<"sin(x) = "<<x2<<endl;

return 0;
}
1/26/2013 10:59:56 AM • ArcMedia... • Answered on Jan 26, 2013 • 218 views
0helpful
1answer

Codes of BufferedReader and FileInputStream in one

class base{ int a,b; void display(int x,int y ){ a=x; b=y;} void dismax() { display(); if(a>b) System.out.println("first Value is greater"+a); else { } }} class dervd extends base{void dismin(){ display(); if(b>a) System.out.println("second value is greater"+b); else { }} public static void main(String args[])throws IOException { BufferedReader in= new BufferedReader (new InputStreamReader(System.in)); System.out.println(" Enter 1st value"); String s=in.readLine(); int m=Integer.parseInt(s); System.out.println(" Enter 2nd value"); String s1=in.readLine(); int n=Integer.parseInt(s1); base b1=new base();b1.display(m,n);b1.dismax();dervd d1=new dervd();d1.dismin();}}
10/31/2011 3:15:37 AM • ArcMedia... • Answered on Oct 31, 2011 • 118 views
0helpful
1answer

Lorraineleach@yahoo.com fatal error msg

reset ip address turn computer turn your router off turn your cable box off wait 15 min. then turn every thing back on.
3/20/2011 1:37:52 PM • ArcMedia... • Answered on Mar 20, 2011 • 76 views
0helpful
1answer

Need to download javscrip

go to java.com and that will do the trick
2/11/2011 2:42:50 PM • ArcMedia... • Answered on Feb 11, 2011 • 55 views
0helpful
1answer

I want to uninstall java but fatal error comes

hi
you can turn your system back as it was
from windows files
get windows in previous date when java was not intalled
1/13/2011 12:29:50 PM • ArcMedia... • Answered on Jan 13, 2011 • 98 views
0helpful
1answer

I have developed a website

Try reversing the load commands, so the other one is loaded first.
11/9/2010 6:10:22 PM • ArcMedia... • Answered on Nov 09, 2010 • 185 views
0helpful
2answers

I want mini project coding using java

Download free IT mini project for MSC & MCA student....... absolutely freeeeeeeeeee

watch & download ... enjoy.......

http://www.youtube.com/watch?v=cTWXDG6nK_8

thank u
7/1/2011 12:18:38 PM • ArcMedia... • Answered on Jul 01, 2011 • 517 views
0helpful
1answer

What is the codes to unlocked java games?

Buy the java games and you get the codes.
7/21/2010 12:41:20 PM • ArcMedia... • Answered on Jul 21, 2010 • 535 views
0helpful
1answer

My game in facebook is not working.so it was

DOWNLOAD JAVA FOR FREE FROM THIS LINK
www.java.com/fr/
DONT FORGET TO RATE
6/19/2010 5:11:37 PM • ArcMedia... • Answered on Jun 19, 2010 • 138 views
0helpful
1answer

How to add in javascript?

var a=promt(“Enter first value to be added”);
a= parseInt(a);

var b=promt(“Enter second value to be added”);
b= parseInt(b);
var c = a+b;
alert (“Result is” +c);
6/17/2010 7:53:33 AM • ArcMedia... • Answered on Jun 17, 2010 • 132 views
0helpful
1answer

How do I change my browser settings to run

For Java & Javascript Tools>Options>Content.

Firefox does not internally support active X.
Visit the Firefox Mozilla website to locate the Esker Active X Plug-In
5/31/2010 9:11:14 PM • ArcMedia... • Answered on May 31, 2010 • 158 views
0helpful
1answer

How do I stop javascript.clickRefresh() opening in IP7

restore ur window
5/9/2010 7:47:55 AM • ArcMedia... • Answered on May 09, 2010 • 1,246 views
0helpful
1answer

Why showing fatal errors during uninstalling java

go into Control Panel\Add/Remove Programs and scroll down to remove Java from my system. I click remove and it comes up with the window "Add or Remove Programs: Are you sure you want to remove Java(TM) 6 Update 13 from your computer".
I click yes and it says "Preparing to remove"
then configuring java.. and then come up with the window:"Fatal Error During Installation"

I've tried enabling logging.. it didn't work.. so that's all the info I can give, I have two HD's mounted.. if that helps.. I don't know. I tried using the install again.. it didn't work believe it or not s9.gif. Anyway please help
5/7/2010 5:56:12 AM • ArcMedia... • Answered on May 07, 2010 • 222 views
Not finding what you are looking for?
ArcMedia JavaScript Source Code 3000 Pro (gar448) for PC Logo

129 questions posted

Ask a Question

Usually answered in minutes!

Top ArcMedia Computers & Internet Experts

Rob Hill
Rob Hill

Level 3 Expert

1483 Answers

Anonymous

Level 2 Expert

214 Answers

Dax Estorioso
Dax Estorioso

Level 2 Expert

162 Answers

Are you an ArcMedia Computer and Internet Expert? Answer questions, earn points and help others

Answer questions

Manuals & User Guides

Loading...