answersLogoWhite

0


Best Answer

I am concerned that this question [ J plus 16-148 plus 4? ] was typed wrong, but I will try to answer it.

This appears to be asking: "Simplify J plus 16-148 plus 4."

To simplify...

J + 16 - 148 + 4

... it would be J plus the addition of the three numbers 16, (-148), and 4.

16 + (-148) + 4 = ( - 128 )

so the answer is...

J - 128

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: J plus 16-148 plus 4
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the value of j in the equation j plus j plus 14 equals 3j plus 10?

4


What is j plus 16 - 148 plus 4?

It's an algebraic expression that can be simplified to: j-128


What is the missing number in brackets j plus 4 and then timed by 2 equal to 4 times j and then add 5?

There are no brackets!


What is the factor of j to the power of 9 plus 27k to the power of 12?

(j^3 + 3k^4)(j^6 - 3j^3k^4 + 9k^8)


How do you factorise 8x plus 6?

j


How do you solve 2j plus 1 divided by j plus 5 equals 1?

2j+1/j+5 = 1 Multiply all terms by j+5 to eliminate the fraction: 2j+1 = j+5 2j-j = 5-1 j = 4


What the answer -33 plus j plus 14?

-19+j


What is code of 1 2 3 4n2 3 4 5n 3 4 5 6n 4 5 6 7 n 5 6 7 8 in c plus plus?

#include <iostream> int main() { int i,j; for(i=1;i<6;i++) // Change 6 to a higher number to get more lines of output { for(j=i;j<i+4;j++) // Change 4 to a higher number to get more numbers in each line cout<<j; cout<<"\n"; } return 0; }


What is equivalent to - 4 times the sum 9j plus 5?

-4 (9j+5) = -36 j - 20 or - (36j + 20)


What is Ctrl plus j in keyboard shortcut?

Ctrl plus J is used to justify text or a paragraph.


If J plus E equals J what is E and J?

e must be 0, j can be anything


Write a program in C to multiply matrix?

//to multiply two matrices... #include<stdio.h> main() { int a[4][4]; int b[4][4]; int c[4][4]; int i,j,k; printf("\n Enter elements into the first matix....\n"); for(i=0;i<4;i++) { for(j=0;j>4;j++) { scanf("%d",&a[i][j]); } } printf("\n Enter elements into the second matrix.....\n"); for(i=0;i<4;i++) { for(j=0;j<4;j++) { scanf("%d",&b[i][j]); } } printf("\n 1st Matrix.....\n"); for(i=0;i<4;i++) { for(j=0;j<4;j++) { printf("\t%d",a[i][j]); } printf("\n"); } printf("\n 2nd Matrix......\n); for(i=0;i<4;i++) { for(j=0;j<4;j++) { printf("\t%d",b[i][j]); } printf("\n"); } for(i=0;i<4;i++) { for(j=0;j<4;j++) { for(k=0;k<4;k++) { c[i][j]+=(a[i][k]*b[k][j]); } } } printf("\n Resultant Matrix...\n"); for(i=0;i<4;i++) { for(j=0;j<4;j++) { printf("\t%d",c[i][j]); } printf("\n"); } }