Computer Science, asked by Anonymous, 6 months ago

Please tell the value of a, when a= K

This is of Java.....

Please do it using ASCII value....

Don't spam......

use \: ascii \: value \: only
please​

Answers

Answered by Nirnay488
3

Answer:

The k in Coulomb's law is the most important term in the equation. Yes it is the proportionality constant; and, yes the cgs unit system sets it ...

12 वोट

Explanation:

bhai brothe bro app jo bhi ho

google par doond lo

Answered by jatinsharma1674
1

Answer:

Input : a Output : 97 Input : D Output : 68

Here are few methods in different programming languages to print ASCII value of a given character :

Python code using ord function :

ord() : It coverts the given string of length one, return an integer representing the unicode code point of the character. For example, ord(‘a’) returns the integer 97.

# Python program to print 

# ASCII Value of Character

  

# In c we can assign different

# characters of which we want ASCII value 

  

c = 'g'

# print the ASCII value of assigned character in c

print("The ASCII value of '" + c + "' is", ord(c))

Output:

The ASCII value of g is 103

Explanation:

hope it's help u

Similar questions