Java Development
Відкрити в Telegram
Learn something new in quality Instagram Link Java_Quizs https://instagram.com/java_quizs?utm_medium=copy_link
Показати більшеКраїна не вказанаТехнології та додатки34 716
2 283
Підписники
Немає даних24 години
Немає даних7 днів
Немає даних30 день
Архів дописів
2 283
I request all members to join in
" Java_quizs discussion " group
Search for --> Java_quizs discussion
Note :- If U Are Not Able To Join In The Group. Please Watch The Video In comment's Section
💫 Thank You 💫
2 283
------------ 💫 Java_quizs 💫 ------------
⚡⚡For More Updates Follow⚡⚡
#java_quizs_java_materials
💫 Complete Notes 💫
https://drive.google.com/folderview?id=0B826HWiL9i8dMUtjYlFTd2dDQ2M&resourcekey=0-8IrtWVR1-PZ5FLGPK6YTbg
🚨
💫 Head First Java Book 💫
File Available In
" Comment Section "
🚨
💛 Hope U Loved It 💛
2 283
https://www.instagram.com/java_quizs/guide/oops-concepts/17914054250003519/?utm_medium=copy_link
Oop's Concepts Real World Examples
2 283
/* Question - 06
C program to convert fahrenheit to celsius
*/
#include <stdio.h>
int main()
{
float celsius, fahrenheit;
printf("Enter temperature in Fahrenheit: ");
scanf("%f", &fahrenheit);
//fahrenheit to celsius conversion formula
celsius = (fahrenheit-32)/1.8;
printf("Fahrenheit of %.2f In celsius Is %.2f", fahrenheit, celsius);
return 0;
}
2 283
#Quiz_Python (Question -65)
What is the maximum possible length of an identifier in Python?
2 283
#Quiz_Java (Question - 64)
In standalone Java applications, which method is mandatory?
2 283
Infytq python and dbms Syllabus 🤯
Click here 👇🏻
https://www.instagram.com/p/CZZPza7FSyx/?utm_medium=copy_link
2 283
/* Question - 05
C program to convert celsius to fahrenheit
*/
#include <stdio.h>
int main()
{
float celsius, fahrenheit;
printf("Enter temperature in Celsius: ");
scanf("%f", &celsius);
//celsius to fahrenheit conversion formula
fahrenheit = (celsius * 9 / 5) + 32;
printf("Celsius of %.2f In Fahrenheit Is %.2f", celsius, fahrenheit);
return 0;
}
2 283
#Quiz_Python (Question - 61)
What arithmetic operators cannot be used with strings in Python?
