#Question1
Explore tagged Tumblr posts
donutfrosting · 2 months ago
Note
Hi again I made more art (sorry if it's getting annoying or smth) but I also got a question1! Since the thing I made isn't cannon and is my creation is it possible for me to ask for face noobs opinion?
Also the drawing:
Tumblr media
Face Noob and I think it's amazing! They'll definitely be using this for inspiration...
21 notes · View notes
alienfromthedeepsea · 7 months ago
Note
QUESTION1!1!1 have u considered maybe
yk..
making a rp blog for ur ramshackle oc…
perhaps…
I have! I just don’t know enough about him to properly rp as him just yet…😔
3 notes · View notes
astral-disastral-catastral · 4 months ago
Note
do you like le sserafim !?
🤗 (you probably know who i am)
I in fact do not like le sserafim!!
Who could have asked me this strange and peculiar question1?1!1?1?1
2 notes · View notes
spicymambaae · 1 year ago
Note
Now with the important question1
best b-side from the album?
'Mine' is that shit!
The fucking bridge??? sends me to another dimension
Tumblr media
12 notes · View notes
dulldoll-0 · 7 months ago
Text
Q in TikTok by navadarling4:
Question1: Can I draw a tiny noncan timeline/AU of my OC RF Makayla being like an older sibling to weather
Question 2:What was the deal that Ms.Isabella made with Home/Harold? and
question 3:Does Ms.Isabella mom or ex husband try to see her in the factory or do they think she’s just dead?
Ans:
1. Yes, you can. 👍✨
2. It wasn’t more of a deal, but more like an invitation to join the factory. Isabella’s just “serving” him because Harold favours her for some reason.
3. Nope. They thought she was long dead. Gurl got shot on the back and fell in the ocean, so like. . . yeah 😬😬😬
5 notes · View notes
palaceofpassion · 10 months ago
Note
I am doing fantastic. How are you holding up?
Now that feels like a loaded question1
Better, better than last week at least.
6 notes · View notes
nogenderbee · 1 year ago
Note
SO SORRY FOR NOT ASKING QUESTIONS LATELY, EXAMS ARE COMING LIKE MAYBE NEXT WEEK? AND SCHOOL HAS BEEN MESSING UP MY SCHEDULE😭😭 LUCKILY I STILL HAVE TIME LEFT!! >:3
(since i didnt send you more questions, i'll give you two)
Question1: what pjsk character first made you interested?? Like first favorite!!. Second is, what is your first fanfiction you ever wrote?? Do you look back at it and say "damn thats cringe" i do that too when seeing my old posts😭😭
-Daily! Question anon
Don't worry about it!! Like I said, mental health comes first <3 So don't be afraid to focus on school, I figure it has something to do with that and generally private life since you mentioned it before as well!
As for questions... I'm gonna be predictable here but it was An ^^ An was my first pjsk favorite and it just stayed!
But I remember having Mafuyu as my favorite from niigo instead of Ena for a really long time! So that actually changed!
As for fic, YES. It's wattpad story that I wrote... 5 years ago? In short, it was Ayato Aishi (yandere sim) x reader fic and omg ToT
I can't even being myself to read it BUT I STILL GET NOTIFS FROM THAT BOOK
Like I dunno if it's that bad or people just feel nostalgia... Anyway, I'm not admitting to it. There's a reason why I'm not telling name of it and let it stay like that for a little while more-
So don't worry, it's normal to feel your stomach then upside down when you look at your old posts... I think I deleted some if my old worka from Tumblr too honestly- keyword being I think.
Tumblr media
3 notes · View notes
codewithrandomartical · 1 year ago
Text
How To Make Multiple Choice Quiz In Html Code
Tumblr media Tumblr media
first, you play Multiple Choice Questions (MCQ) Quiz and then click on View results The results page will then be shown. This Multiple Choice Questions (MCQ) Quiz will be finished using JavaScript Code, a powerful language that allows for anything.
100+ JavaScript Projects For Beginners With Source Code
Live Preview Of Multiple Choice Questions Source Code and Preview:-
As you are looking in the project preview how the thing is organized.
Following is the feature of our project:-
We have arranged the Questions and options in the list format using the tag.
Then we set the option using span and defining the radio button and giving the appropriate value.
Multiple Choice Quiz Html Code:-
Now I’ll be telling you to define the structure using HTML. Not from scratch, just the code which is under the body tag.
We have the following part in the HTML section:
Portfolio Website Using HTML CSS And JavaScript ( Source Code)
First, we call the ul class which we have defined the class as a quiz.
Then using the tag we have set our question in the tag.
Then we used a label tag and called the radio button given the value and using span we have given the answer.
Similarly, we have done this for all the options and for all the questions.
Go through the code below and run it in our IDLE before CSS Styling.
<ul class="quiz"> <li> <h4>How many letters are there in "JS"?</h4> <ul class="choices"> <li> <label ><input type="radio" name="question0" value="A" /><span >2</span ></label > </li> <li> <label ><input type="radio" name="question0" value="B" /><span >1</span ></label > </li> <li> <label ><input type="radio" name="question0" value="C" /><span >3</span ></label > </li> <li> <label ><input type="radio" name="question0" value="D" /><span >4</span ></label > </li> </ul> </li> <li> <h4>How many letters are there in "BMX"?</h4> <ul class="choices"> <li> <label ><input type="radio" name="question1" value="A" /><span >2</span ></label > </li> <li> <label ><input type="radio" name="question1" value="B" /><span >1</span ></label > </li> <li> <label ><input type="radio" name="question1" value="C" /><span >3</span ></label > </li> <li> <label ><input type="radio" name="question1" value="D" /><span >4</span ></label > </li> </ul> </li> <li> <h4>How many letters are there in "A"?</h4> <ul class="choices"> <li> <label ><input type="radio" name="question2" value="A" /><span >2</span ></label > </li> <li> <label ><input type="radio" name="question2" value="B" /><span >1</span ></label > </li> <li> <label ><input type="radio" name="question2" value="C" /><span >3</span ></label > </li> <li> <label ><input type="radio" name="question2" value="D" /><span >4</span ></label > </li> </ul> </li> </ul> <button class="view-results" onclick="returnScore()">View Results</button> <span id="myresults" class="my-results">My results will appear here</span>
Tumblr media
CSS Code For Styling Multiple Choice Quiz:-
By CSS design we will design our whole page here it is just a quiz so we’ll just add a background color, color to the button, and font family for the whole body.
And set the padding of the questions and options so that it doesn’t get messy and looks in a systematic order.
10+ Javascript Project Ideas For Beginners( Project Source Code)
The analysis will be aided by the CSS code below. After adding this file to your link rel-tag, wait for the results. We will add some of the basic styling to our quiz app using the default selector, and we will add styling to various quiz app elements using the class selector.
this is simple css code. we do not add any heavy css code because our main aim is to create Multiple Choice Questions (MCQ) functionality. if you need more Better Ui you can add more css code in this css section.
Tumblr media
JavaScript Multiple Choice Quiz Code:-
In the JavaScript Code of Multiple Choice Quiz section, we will add logic for initializing our page. The logic must know what is correct and incorrect, So we’ll define there the correct option and then we’ll set that when the user clicks on the button the logic will generate and tell the user about his/her score.
Restaurant Website Using HTML and CSS
Through this blog, we have learned how to design Multiple Choice Quizzes using HTML, CSS & JavaScript.
Final Output Of Multiple Choice Quiz in HTML and JS Code:
Tumblr media
Now I’m looking for some positive reviews from your side.
So, How was the blog Learners,
If you want a more interesting blog like this then please check our Blog sites. Stay tuned because every day you will learn something new here.
I hope that I’m able to make you understand this topic and that you have learned something new from this blog. If you faced any difficulty feel free to reach out to us with the help of the comment box and if you liked it, please show your love in the comment section. This fills bloggers’ hearts with enthusiasm for writing more new blogs.
Ecommerce Website Using Html Css And Javascript Source Code
Happy Coding
click and get full article and get complete source code
That’s it, folks. In this article, we shared 10+ Portfolio Website templates with cool and different designs.
Hope you liked this article. Share this with your fellow developers. Comment down below your thoughts and suggestions, we would love to hear from you.
See our other articles on codewithrandom and gain knowledge in Front-End Development.
Thank you and keep learning!!
follow us on Instagram: Ashutosh Mishra
2 notes · View notes
mgarmagedon · 1 year ago
Note
What would you change in rid15 If you could?
DAMN IT'S A TRAP QUESTION1!!11!1
Because I would change a lot of things! But not like "disney making live action of their old movies" kind of change, but more like "i love the concept and characters so much that I will give more info about them also fix story"
And for the sake of your time and my mental health, I won't start talking about EVERY ITTY BITTY TINY THING THAT MAKES ME MAD ANGRY Soo... I'm just gonna tell you about main things and focus mainly on 1 season :D AND THAT GONNA BE JUST MY PERSONAL OPINION WHAT WOULD AT LEAST A LITTLE FIXT THE SHOW, YOU CAN DISAGREE WITH ME
Firstly I would change OP by deleting him from the show, like let this old fart rest! I would show more of Primes heaven-Azgard, when he struggles with being a god (ofc I would change his design for more god looking, which he couldn't transformer anymore) and if it didn't work out, I would alternatively put Nemesis which could somehow got his own consciousness or just do another demantoid stuff (which could solve most problems with characters like fucking Soundwave), but I'm more focusing on just making OP a ghost who could just watch actions of Bee and try contact with him. As a bonus I would at the fact that OP could say only few words, because how hard for him is contacting with his son, and mainly show what he want to say! (maybe in sign language, after all canonically Bumblebee knows this language, because he could talk)
Add finally Drift as a main character, because at this point it's pissing me of when I see Windblade and OP in opening, WHEN DIRFT IS LONGER ON SCREEN THEN THEM BOTH. Also delete that bitch too, and as a replacement I would add Chromia or Arcee (but I'm more into Chromia idea)
FINALLY do some character development, because we practically know NOTHING about past of characters, besides of little part that was said in their dialogues (WHICH ARE CHANGING IN EVERY LANGUAGE, SO IN ENGLISH WE HAVE SMALL REFERENCE TO SUNNY, WHEN IN POLISH WE DON'T HAVE ANY). That's why i would delete few episodes to just put character development or just change those ep to just make them develop those idiots. I heard from my friend which read a fucking rid15 book about drift, where was just a little part of his past, but... IT SHOULD BE IN FUCKING SHOW, NOT IN A BOOK WHICH READ MY FRIEND AND 5 OTHER CHILDREN.
Ik (kinda out of topic, but hear me out) I'm aware that this show was made because Hasbro had big struggles with money at this time and that's why they chosen to just make so much money that they could and they made it more safe option (which failed sooooooooo hard XDDD) but like bro, VAs were writing episodes at some point!!! And they lost so much potential which I fell in love in this 2015... OK THAT WAS MY FULL RANT, LETS BACK TO THE LIST :DDDDDD
I'm aware too, that they had problems with licencing, that is why drift isn't bunny Drift and Sides is the best version of him ever. But for god sake those designs... I beg you change them, for something other IK you didn't have any money then, but PLS they look bad... Specially after you find out that they faces are 2D and backgrounds too (they tried do the same that is ind earth spark which is mix of 2D and 3D, but it looks weird.) And it's not only Drift and Sides problem, that's everyone problem!!! Like why Bee is so futuristic?! Isn't he should be old timer for them, and in first ep theoretically he should be still in his earth alt model... SO WHY HE HAS SO MUCH LEDS, LIKE FR, IK they wanted to make him adult, but it could be make better! Did you were even aware that Sides could be blue, and has more Sunny character because of licencing??? But his alt model sucks
Tumblr media Tumblr media
I would also give a reason why human do LITTERALLY nothing with those dumb bitches! Like at this point should be like whole war army chasing for them? XDDD In my opinion after Optimus died and Ratchet came back to earth and grave after his dead husband, he was kicked back to Cybertron after few years, because government chosen that ALL cybertronians are threat... so yeah... And because of that Bee can't exit Crown city (Królewiec) and near by area of it, just because Alchemor, which is stack underwater of the city river, jams their signal. AND THAT'S WHY THEY NEED USE HUMAN HUMAN COMMUNICERS LIKE RADIO! AND THAT IS WHY THOSE STUPID AS BITCHES FROM CYBRTRON DIDN'T FOUND ANY OF THEM JUST LIKE THAT----- Yk it's just my stupid idea uwu
I think also making less episodic plot could make it better! Like more pokemon-like format it's cool, but... in this case it's not fitting at all.
FOR GOT SAKE WHY DID THEY USED MEGATRONUS?! BECAUSE THEY COULD HAVE MEGATRON??? It's for me a joke which is stupid as hell, Imo it should be Liege Maximo!!! After all he is in this continuity literally a Loki from MCU, why not use something new and leave Megatron dead.
For today I think that will be all, but there is still one more thing that pisses me of to te state that I'm asking like a crazy mad dog. Which is this scene:
It's so... so unemotional! Isn't Optimus be he his dearest friend and husband since ever??!?! And Bee isn't your little baby anymore?! I hate it so much like i can't breath!!! (sorry that i edited it a little bit, but i needed that) And to just end it nicely, I LOVE many many many things about rid15 too, but that doesn't mean that this show is just waste potential mainly and it makes me sad deeply when I see Earth Spark where is worse version of rid15 Bee having the similar relation with kids and everyone cares more about this, then the show that created it (and no i'm not talking about comics at all/srs)
Still love and hate rid15 😘😘😘
4 notes · View notes
codingprolab · 6 days ago
Text
Introduction to Web Technology Lab Programming Exercise (Week 10)
Question 1. This is the content of a JSON file which contains several errors. { “firstName”: “John”, “lastName”: “Smith”, [ { “code”: “MATH101”, “title”:”Algebra” }, { “code”:”CSIT122″, “title”:”C programming” } ], age: 23 } Your task is to identify these errors and correct them. Save your correct JSON code into a file called Question1.json. Question 2. Write a JSON document called Question2.json…
0 notes
jonathandoe25 · 20 days ago
Text
[🐄] hi everyone.. im finally back after doing my final project!! im gonna continue replying to your question1! thank you for waiting :))
0 notes
literaturereviewhelp · 3 months ago
Text
Question1. Describe the information management issues raised by this case. A number of information management issues were identified in the case study. One was imperfect and insufficient user role-play in the system development process. At the time of the designing of the information system, Water Management was in the initial stage. Business processes were quite limited not helping the IT staff to take part with dedication to design for their own processes. The IT people had to learn by practice from manual processes. Issues emerged from organizational and financial perspective coming in the way of an up-to-date and modern information system, as desired by KOBWA. Database management skills of the staff were weak and there were pressures to reduce costs. The system development process was complex and risk-prone. The focus of the new information system was to manage flow and water demand information. Data exchange between different stakeholders of the project was not fully automated as their information systems were not designed for data and information exchange among other stakeholder agencies. The implementation process of KOBWA happened at a time when roles were yet to be assigned to the new staff. The paper and spreadsheet-based processes had to be shifted to computer-based systems gradually for ease of functions in the operations. The deficiency of staff also presented a hurdle in the implementation process. Question 2 KOBWA’s solution for managing water quality information uses many manual processes. How might this affect the quality and usefulness of the information? Manual processes were used for preparing regular reports on the water quality status as the graphical display routines designed for checking flow data could not be leveraged for examining water quality data. Map displays were also documented manually. A close connection between the water quality data and the GIS databases was desired for raising water quality status maps. Getting the data from the field, DWAF, MNRE, and other data suppliers was again a manual process realized through spreadsheets or text export files from different agencies and transferring them into Hydstra™. There was a good scope of committing errors due to non-automation of the processes; it needed many resources on checking data in the database. As manual processes required staff that was deficient, resources had to be employed for comprehending the reactionary change in the water quality with the flow and long & short-term routines. It could affect the standard and utility of the information as precious time got wasted in database maintenance and preparing status reports manually. Read the full article
0 notes
moumitasposts · 6 months ago
Text
Create a Python Chatbot for Basic Math Tutoring
A Python chatbot can be a fun and engaging way for students to practice basic math skills while learning programming. This project combines math and coding and provides an excellent opportunity for beginners to dive into programming basics while enhancing their understanding of STEM education. In this article, we will create a simple Python chatbot designed to tutor students in basic math operations like addition, subtraction, multiplication, and division.
Tumblr media
Key Features of the Math Chatbot
The chatbot will be able to:
Ask users basic math questions.
Validate the user’s response.
Provide feedback based on the answer (correct or incorrect).
Offer a simple conversational interface for learners.
Python Code for the Math Chatbot
Here's a basic example of a Python chatbot that can help students practice simple math problems:
python
Function to ask math questions and check answers
def math_tutor(): print("Hello! I am your math tutor. Let's start with some basic math problems.")# Example 1: Addition question1 = "What is 5 + 3?" answer1 = 8 user_answer = int(input(question1 + " ")) if user_answer == answer1: print("Correct! Well done.") else: print("Oops! The correct answer is 8.") # Example 2: Subtraction question2 = "What is 10 - 4?" answer2 = 6 user_answer = int(input(question2 + " ")) if user_answer == answer2: print("Correct! Great job.") else: print("Oops! The correct answer is 6.") # Example 3: Multiplication question3 = "What is 7 * 6?" answer3 = 42 user_answer = int(input(question3 + " ")) if user_answer == answer3: print("Correct! You're on fire.") else: print("Oops! The correct answer is 42.") # Example 4: Division question4 = "What is 20 / 4?" answer4 = 5 user_answer = int(input(question4 + " ")) if user_answer == answer4: print("Correct! Excellent.") else: print("Oops! The correct answer is 5.")
Run the chatbot
math_tutor()
Explanation of the Code
Function Definition: The math_tutor() function contains several simple math questions.
User Input: The input() function collects answers from the user.
Validation: Each answer is checked against the correct one, and the chatbot provides feedback on whether the answer is correct or incorrect.
Enhancing the Chatbot
This basic chatbot can be expanded to cover a wider range of math topics, such as fractions or algebra. Additionally, it can be made interactive by allowing the user to choose difficulty levels or types of questions (e.g., multiplication, division). This type of project is ideal for coding for kids and interactive learning.
Students can also enhance their coding skills by incorporating error handling and random question generation, making the chatbot more engaging and versatile. This project offers a great introduction to Python for beginners while reinforcing core math concepts in a fun, interactive way.
0 notes
codeshive · 7 months ago
Text
Solved CS 576 – Assignment 2 Theory Part (40 points) Question1: Color Theory – 10 points  A Rubik’s cube is a cube-shaped puzzle
Theory Part (40 points) Question1: Color Theory – 10 points A Rubik’s cube is a cube-shaped puzzle with 6 different 3×3 colored tiled sides: white, green, red, blue, orange, and yellow. The goal of the puzzle is to rotate sides and make each face have 3×3 tiles of the same color. When held under different colored lights (white, red, green, blue) the cube looks very interesting and vivid, see…
0 notes
innerspiritglow · 8 months ago
Text
Colours That Suit Neutral Brown Skin: 7 Gorgeous Must Have Shades
IntroductionUnderstanding Neutral Brown SkinCharacteristics of Neutral Brown SkinThe 7 Must-Have Shades for Neutral Brown Skin Tips for Wearing These ShadesConclusionFrequently Asked Question1. What are the best colors for Neutral Brown skin? 2. How can I determine my undertone?3. Can I wear bright colors if I have Neutral Brown skin?4. Are there colours I should have avoided with Neutral Brown…
0 notes
odishagovtjobss · 9 months ago
Text
HURL Recruitment 2024 Apply Now For 212 Engineering Trainee Posts
HURL recruitment has released a recruitment for graduate and diploma engineer trainee for 212 vacancies. The Hindustan Urvarak and Rasayan limited HURL has released an online application for young qualified Indian candidates for recruitment of graduate engineer trainee and diploma engineer trainee. The last date for the online registration for these post is 21 October 2024 Breif Details About HURL Recruitment 2024: Education Qualification: Vacancy Details: Age Limit: Selection Process: Salary: How to Apply HURL Recruitment 2024?Important Links FAQ (Frequently Asked Questions) Breif Details About HURL Recruitment 2024: OrganizationHindustan Urvarak and Rasayan Limited (HURL)Post NameGraduate Engineer Trainee (GET), Diploma Engineer Trainee (DET)Total Vacancies212Age LimitMinimum 18 years - Maximum 30 yearsOnline Registration Last Date21st October 2024Selection ProcessComputer Based Test (CBT), Documents VerificationOfficial Websitehurl.net.in Education Qualification: Name of the PostEducational QualificationGraduate Engineer Trainee (GET)Full-time Regular Engineering Degree or AMIE in the respective engineering discipline.Diploma Engineer Trainee (DET)3 years Full-Time Diploma in Instrumentation, Electronics, or relevant discipline. For Chemical Discipline: Diploma in Chemical Engineering or relevant OR B.Sc. (PCM). Vacancy Details: Name of the PostNo of VacanciesDiscipline Wise PostsGraduate Engineer Trainee (GET)67Chemical – 40, Instrumentation – 15, Electrical – 06, Mechanical – 06Diploma Engineer Trainee (DET)145Chemical – 130, Instrumentation – 15 Age Limit: Name of the PostAge LimitGraduate Engineer Trainee (GET)Minimum 18 years and Maximum 30 yearsDiploma Engineer Trainee (DET)Minimum 18 years and Maximum 27 years Selection Process: StageDetailsComputer Based TestWritten examination conducted online to assess knowledge in the relevant discipline.Documents VerificationVerification of all educational, experience, and identity documents to confirm eligibility. Exam Format: Test ComponentDetailsPartsTwo parts: Discipline-related and Aptitude-relatedLanguagesHindi and EnglishDuration2 hours (120 minutes)Total Questions150 questionsMarks per Question1 mark per question Salary: Name of the PostStipendPay Scales / CTCGraduate Engineer Trainee (GET)₹ 40,000 + HRA or accommodation₹ 40,000 – 1,40,000 + benefits. CTC - ₹ 13.92 Lakhs (Approx.)Diploma Engineer Trainee (DET)₹ 23,000 + HRA or accommodation₹ 23,000 – 76,200 + benefits. CTC - ₹ 7.7 Lakhs (Approx.) How to Apply HURL Recruitment 2024? Eligible candidates should apply through the HURL Careers Page starting from 1st October 2024.Fill out the Online Application Form, providing your personal details, permanent address, and qualification information.Upload the following documents: - Recent photograph - Signature - Proof of Date of Birth - Essential qualification certificates and relevant documents The last date for submitting the online application is 21st October 2024. Important Links - Notification PDF - Online Application Link - For More Job Information FAQ (Frequently Asked Questions) QuestionAnswerWhat is the last date to apply for the HURL GET and DET positions?The last date to apply for these positions is 21st October 2024.What is the selection process for HURL GET and DET posts?The selection process involves a Computer Based Test (CBT) followed by Documents Verification.What are the educational qualifications required for these posts?For GET, a full-time Regular Engineering Degree or AMIE in the relevant discipline is required. For DET, a 3-year full-time Diploma or B.Sc. degree in PCM. Read the full article
0 notes