Web Designing Test Result 21 June 2020 Name Marks Rank Rajkumar Gupta 37 1 Govil Singla 35 2 Manu Choudhary 35 2 Poonam Kashyap 33 4 Nitin Sharma 33 4 Kirti 31 6 Poonam Yadav 30 7 Gaurav Kumar 30 7 Lovely 30 7 Nancy 28 10 Yamini Choudhary 28 10 Garima Batra 27 12 Shubham 27 12 Meera Yadav 27 12 Aarti 27 12 Aman Singh 27 12 Sheetal Tanwar 27 12 Preeti 27 12 Sachin 27 12 Sandhya 26 20 Sonam 26 20 Priyanka Soni 26 20 Sonika 25 23 Jyoti Malik 25 23 Vaishali 25 23 Surya 25 23 Manoj Kumar 24 27 Priya Chaurasia 24 27 Suman 22 29 Ankur Bhardwaj 21 30 Vibhakar 21 30 Manasi Adhikary 21 30 Sushmita 20 33 Shivani 20 33 Salvi 19 35 Sandeep Chauhan 19 35 Sonia 19 35 Sana 18 38 Mittu Sharma 17 39 Kalyani 17 39 Rashmika Kataria 16 41 Naveen Mittal 15 42 Harish Singh 15 42 Umesh Kumar 14 44 Sweety 12 45 Hemant Kumar Singh 12 45 Khushbu Sharma 12 45
Sunday, 21 June 2020
Web Designing Test Result 21 June 2020
Subscribe to:
Post Comments (Atom)
-
'''Practical No: 9: WAP in Python to create a binary file with roll_no, name and marks of the students and update the marks of...
-
List of Python with CS practical for class 12 Part – 1 Python with CS 1) WAP in Python to find the factorial of a number using fun...
-
''' Practical No: 7: WAP in Python to create a binary file with name and roll number of the students. Search for a given roll ...
Which of the following Visual Basic statement will assign the value "QUICK" from the variable y to the string variable x? Y= "The QUICK RED FOX JUMPED OVER THE DOG"
ReplyDeletex= Middle (y, 5, 5)
x= left (Y,5)
x= Mid (Y,5,5)
x= Instr (5,y, "QUICK")
the answer is x=Mid(Y,5,5) kindly explain
Delete
ReplyDeleteWhat is the correct statement when declaring and assigning the value of 100 to an integer variable called numPeople in Visual Basic?
1/1
Dim numPeople =100
Dim numPeople = Int (100)
numPeople = 100
Dim numPeople As Integer = 100
answer-answer is d how explain
Which statement will send the value generated by a function procedure, called CalculateTax, back to the calling code in Visual Basic?
ReplyDelete0/1
Return Sales*O.O8
CalculateTax = Sales*O.O8
Return CalculateTax (Sales*O.O8)
Both A and B
answer is d both a and b are correct how plz explain