Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
11
Posts with Downvotes
5
Downvoting Members
6
2 Commented Posts
0 Endorsements
~5K People Reached
Favorite Tags
Member Avatar for willjohanz

1.A________ statement consists of a valid identifier 2.A__________ statement is used only in case of nested loops 3.The port number 555 describes ***port 555 ***all ports greater than or equal to 555 4.The ____ method of the signature class updates data by a byte 5.The _______ constructor creates a horinzontal …

Member Avatar for stultuske
-3
150
Member Avatar for willjohanz

1.JDBC is an acronym of JavaDatabase Connectivity true/false 2.which of the following are advantages of JDBC -continued usage of esting data -vendor dependent 3.The ______ method of the string tokenizer class returns true if theres at least one token in the string aftre the current position -lastidexof -tostring -substring 4.Adavantages …

Member Avatar for JamesCherrill
-1
174
Member Avatar for willjohanz

<html> <head> </head> <body> <img src="blue hills.jpg" name="slide" width="350" height="300"/> <script type="text/javascript"> var image1=new Image() image1.src="Sunset.jpg" var image2=new Image() image2.src="Winter.jpg" var image3=new Image() image3.src="Blue hills.jpg" var image4=new Image() image4.src="turf.jpg" var image5=new Image() image5.src="white.jpg" var step=1 function slideit() { <!--if browser does not support the image object,exit.--> if(!document.images) return document.images.slide.src=eval("image"+step+".src") if(step<5) …

Member Avatar for Troy III
0
359
Member Avatar for willjohanz

a class of 20 students. The information of each student contains ID, Name, Sex,exam Scores (3 quizzes per semester), mid-term score, final score, and total score #include<stdio.h> #include<conio.h> void main() { struct student { int id; char name[20]; char sex; int mid; int final; int total=mid+final }; int i struct …

Member Avatar for Vish0203
0
2K
Member Avatar for willjohanz

#include<stdio.h> #include<conio.h> void main() { struct student { int id; char name[20]; char sex; int mid; int final; int total=mid+final }; int i struct student b [19]; for(i=0;i<20;i++); { printf("student %d enter your details\n\n",i+1); printf("enter your id"); scanf("%d",&b.id); printf("enter your name\n"); fflush(stdin); scanf("%s",&b.name); printf("enter your sex\n"); fflush(stdin); scanf("%c",&b.sex"); printf("enter mid …

Member Avatar for Vish0203
0
2K
Member Avatar for willjohanz

.Write a C program to keep records and perform statistical analysis for a class of 20 students. The information of each student contains ID, Name, Sex,exam Scores (3 quizzes per semester), mid-term score, final score, and total score. after entering them write them to a file called Student.txt

Member Avatar for Ancient Dragon
-1
87
Member Avatar for willjohanz

Write an ATM machine programme that will prompt a user to enter a password "DEF" and username "ABC" after which it should ask the user what they want to do and depending on what they choose ,perform necessary actions from depositing to check balance...in your programme include writing and reading …

Member Avatar for TrustyTony
0
60